commit c0c7bfb161c41a6c1c61efd626d63c4e9e0a7974 Author: Nasir Hossain Date: Fri Dec 19 20:13:55 2025 +0600 Initial commit diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..4f78b95 --- /dev/null +++ b/.htaccess @@ -0,0 +1,9 @@ +Options -Indexes + +ErrorDocument 404 /404.php +ErrorDocument 403 / + + + order deny,allow + deny from all + diff --git a/404.php b/404.php new file mode 100644 index 0000000..1c16983 --- /dev/null +++ b/404.php @@ -0,0 +1,27 @@ + + +

+ +

+


+

+ + + \ No newline at end of file diff --git a/Note.txt b/Note.txt new file mode 100644 index 0000000..4fe2b54 --- /dev/null +++ b/Note.txt @@ -0,0 +1,2 @@ +user: admin +pass: admin1234 \ No newline at end of file diff --git a/aboutus.php b/aboutus.php new file mode 100644 index 0000000..530bf9c --- /dev/null +++ b/aboutus.php @@ -0,0 +1,27 @@ + + +

+

+ + \ No newline at end of file diff --git a/activate.php b/activate.php new file mode 100644 index 0000000..544a6d0 --- /dev/null +++ b/activate.php @@ -0,0 +1,70 @@ + 0) + { + $check_row = mysqli_fetch_array($check_result); + + if ($check_row['status'] == "active") + { + header ("Location: activate.php?msg=3"); + exit(); + } + elseif ($check_row['status'] == "inactive") + { + smart_mysql_query("UPDATE exchangerix_users SET status='active', activation_key='' WHERE activation_key='$activation_key' AND login_count='0' LIMIT 1"); + + header ("Location: activate.php?msg=2"); + exit(); + } + } + else + { + header ("Location: index.php"); + exit(); + } + } + + /////////////// Page config /////////////// + $PAGE_TITLE = CBE1_ACTIVATION_TITLE; + + require_once ("inc/header.inc.php"); + +?> + + + +

+

+

+ + +

+

+ + +

+

+ + + + \ No newline at end of file diff --git a/activation_email.php b/activation_email.php new file mode 100644 index 0000000..7ffc5b5 --- /dev/null +++ b/activation_email.php @@ -0,0 +1,107 @@ + 0) + { + $row = mysqli_fetch_array($result); + + $etemplate = GetEmailTemplate('activate2'); + $esubject = $etemplate['email_subject']; + $emessage = $etemplate['email_message']; + + $activate_link = SITE_URL."activate.php?key=".$row['activation_key']; + + $emessage = str_replace("{first_name}", $row['fname'], $emessage); + $emessage = str_replace("{activate_link}", $activate_link, $emessage); + $to_email = $row['fname'].' '.$row['lname'].' <'.$email.'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1); + + header("Location: activation_email.php?msg=4"); + exit(); + } + else + { + header("Location: activation_email.php?msg=3"); + exit(); + } + } + + /////////////// Page config /////////////// + $PAGE_TITLE = CBE1_ACTIVATIONEMAIL_TITLE; + + require_once "inc/header.inc.php"; + +?> + +

+ +

+

+ +
+
+ + +
+ + + +
+ +
+ + + +
+
+
+ + +
+ + +
+
+ + +
+
+ + \ No newline at end of file diff --git a/admin/.DS_Store b/admin/.DS_Store new file mode 100644 index 0000000..5d62d50 Binary files /dev/null and b/admin/.DS_Store differ diff --git a/admin/_payments.php b/admin/_payments.php new file mode 100644 index 0000000..b4e9e10 --- /dev/null +++ b/admin/_payments.php @@ -0,0 +1,493 @@ + 0) + $results_per_page = (int)$_GET['show']; + else + $results_per_page = 20; + + + // Confirm payments // + if (isset($_POST['confirm']) && $_POST['confirm'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $pid = (int)$v; + ConfirmPayment($pid); + } + + header("Location: payments.php?".$params."msg=confirmed"); + exit(); + } + } + + + // Decline payments // + if (isset($_POST['confirm']) && $_POST['confirm'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $pid = (int)$v; + DeclinePayment($pid); //dev + } + + header("Location: payments.php?".$params."msg=declined"); + exit(); + } + } + + + // Delete payments // + if (isset($_POST['delete']) && $_POST['delete'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $pid = (int)$v; + DeletePayment($pid); + } + + header("Location: payments.php?".$params."msg=deleted"); + exit(); + } + } + + ////////////////// filter ////////////////////// + if (isset($_GET['column']) && $_GET['column'] != "") + { + switch ($_GET['column']) + { + case "username": $rrorder = "user_id"; break; + case "email": $rrorder = "client_email"; break; + //case "ptype": $rrorder = "payment_type"; break; + case "from_currency": $rrorder = "from_currency"; break; + case "from_amount": $rrorder = "from_amount"; break; //dev + case "to_amount": $rrorder = "to_amount"; //dev + case "to_currency": $rrorder = "to_currency"; break; + case "amount": $rrorder = "amount"; break; + case "status": $rrorder = "status"; break; + case "ids": $rrorder = "transaction_id"; break; + default: $rrorder = "transaction_id"; break; + } + } + else + { + $rrorder = "transaction_id"; + } + + if (isset($_GET['order']) && $_GET['order'] != "") + { + switch ($_GET['order']) + { + case "asc": $rorder = "asc"; break; + case "desc": $rorder = "desc"; break; + default: $rorder = "asc"; break; + } + } + else + { + $rorder = "desc"; + } + + if (isset($_GET['action']) && $_GET['action'] == "filter") + { + $action = "filter"; + $filter_by = ""; + $filter = mysqli_real_escape_string($conn, trim(getGetParameter('filter'))); + $start_date = mysqli_real_escape_string($conn, getGetParameter('start_date')); + $start_date = substr($start_date, 0, 16); + $end_date = mysqli_real_escape_string($conn, getGetParameter('end_date')); + $end_date = substr($end_date, 0, 16); + + switch ($filter) + { + case PAYMENT_TYPE_CASHBACK: $filter = "cashback"; break; + case PAYMENT_TYPE_WITHDRAWAL: $filter = "withdrawal"; break; + case PAYMENT_TYPE_FBONUS: $filter = "friend_bonus"; break; + case PAYMENT_TYPE_SBONUS: $filter = "signup_bonus"; break; + case PAYMENT_TYPE_RCOMMISSION: $filter = "referral_commission"; break; + } + + if ($filter != "") + { + $search_by = " (reference_id='$filter' OR payment_type='$filter')"; + + switch ($_GET['search_type']) + { + case "reference_id": $search_by = "reference_id='".$filter."'"; break; + case "member": $search_by = "user_id='".$filter."'"; break; + case "email": $search_by = "client_email LIKE '%".$filter."%'"; break; + case "send_account": $search_by = "send_account='".$filter."'"; break; + case "receive_account": $search_by = "receive_account='".$filter."'"; break; + //case "amount": $filter = preg_replace("/[^0-9.]/", "", $filter); $search_by = "amount='".$filter."'"; break; + case "send_amount": $filter = preg_replace("/[^0-9.]/", "", $filter); $search_by = "send_amount='".$filter."'"; break; + case "receive_amount": $filter = preg_replace("/[^0-9.]/", "", $filter); $search_by = "receive_amount='".$filter."'"; break; + case "payment_type": $search_by = "payment_type='".$filter."'"; break; + } + + $filter_by .= " AND ".$search_by; + } + + if ($start_date != "") $filter_by .= " AND created>='$start_date 00:00:00'"; + if ($end_date != "") $filter_by .= " AND created<='$end_date 23:59:59'"; + $totitle = " - Search Results"; + } + /////////////////////////////////////////////////////// + + if (isset($_GET['period']) && $_GET['period'] != "") + { + $today = date("Y-m-d"); + + if ($_GET['period'] == "today") $filter_by .= " AND date(created)='$today' "; + + $totitle2 = "Today's"; + } + + if (isset($_GET['from_filter']) && is_numeric($_GET['from_filter'])) + { + $from_filter = (int)$_GET['from_filter']; + //$filter_by .= " AND from_currency='$from_filter' "; //dev + //$title2 = GetCurrencyName($store); + } + + if (isset($_GET['to_filter']) && is_numeric($_GET['to_filter'])) + { + $to_filter = (int)$_GET['to_filter']; + //$filter_by .= " AND to_currency='$to_filter' "; //dev + //$title2 = GetCurrencyName($store); + } + + if (isset($_GET['status_filter']) && $_GET['status_filter'] != "") + { + $status_filter = mysqli_real_escape_string($conn, trim(getGetParameter('status_filter'))); + $status_filter = substr($status_filter, 0, 16); + $filter_by .= " AND status='$status_filter' "; + //$title2 = GetCurrencyName($store); + } + + if (isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] > 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + + //smart_mysql_query("UPDATE exchangerix_transactions SET status='timeout' WHERE created != '0000-00-00 00:00:00' AND created <= NOW()"); + + + $query = "SELECT *, DATE_FORMAT(created, '".DATE_FORMAT." %h:%i %p') AS payment_date FROM exchangerix_transactions WHERE status!='request' $filter_by ORDER BY $rrorder $rorder LIMIT $from, $results_per_page"; + $result = smart_mysql_query($query); + $total_on_page = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_transactions WHERE status!='request'".$filter_by; + $result2 = smart_mysql_query($query2); + $total = mysqli_num_rows($result2); + + // delete all calcelled payments // + if (isset($_GET['act']) && $_GET['act'] == "delete_cancelled") + { + smart_mysql_query("DELETE FROM exchangerix_transactions WHERE status='expired' OR status='timeout' OR status='cancelled'"); + header("Location: payments.php?msg=exp_deleted"); + exit(); + } + + $cc = 0; + + $title = "Exchanges"; + require_once ("inc/header.inc.php"); + +?> + +
+ 0) { ?> Delete cancelled exchanges    + Search + 0) { ?> + Export + +
+ +

Exchanges

+ + +
+ +
+ + +
+ + + + + + + + + +
+
+ Search for: + in +   + Date: - +
+ Send Direction: +   Receive Direction: + + + + Cancel Search +
+
+ Sort by: + + +   Results: + + +
+ Status: + + Delete Filter +
+
+ 0) { ?>Showing - of +
+
+ + + 0) { $total_amount = 0; ?> + +
+ + + + + + + + + + + + + + + + + "> + + + + + + + + + + + + + + + + + + + + + + + +
IDReference IDDateExchange Details UserStatusActions
+ +
+
(Rate: = ) +
+
+   0) { ?> Visitor +
+
+ confirmed"; break; + case "pending": echo "payment confirmation"; break; + case "waiting": echo "waiting for payment"; break; + case "declined": echo "declined"; break; + case "failed": echo "failed"; break; + case "timeout": echo "timeout"; break; + case "request": echo "awaiting approval"; break; + case "paid": echo "paid"; break; + default: echo "".$row['status'].""; break; + } + ?> + + + View + Edit + Delete +
TOTAL:
+ + + +
+ + + +
+ + + +
Sorry, no exchanges found for your search criteria.
+ +
There are currently no exchanges.
+ + + + \ No newline at end of file diff --git a/admin/cashout_requests.php b/admin/cashout_requests.php new file mode 100644 index 0000000..3048a2e --- /dev/null +++ b/admin/cashout_requests.php @@ -0,0 +1,213 @@ + 0) + $results_per_page = (int)$_GET['show']; + else + $results_per_page = 15; + + + // Delete payments // + if (isset($_POST['delete']) && $_POST['delete'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $pid = (int)$v; + DeletePayment($pid); + } + + header("Location: cashout_requests.php?msg=deleted"); + exit(); + } + } + + ////////////////// filter ////////////////////// + if (isset($_GET['column']) && $_GET['column'] != "") + { + switch ($_GET['column']) + { + case "username": $rrorder = "u.username"; break; + case "amount": $rrorder = "t.amount"; break; + case "ids": $rrorder = "t.transaction_id"; break; + case "payment_method": $rrorder = "t.payment_method"; break; + default: $rrorder = "t.transaction_id"; break; + } + } + else + { + $rrorder = "t.transaction_id"; + } + + if (isset($_GET['order']) && $_GET['order'] != "") + { + switch ($_GET['order']) + { + case "asc": $rorder = "asc"; break; + case "desc": $rorder = "desc"; break; + default: $rorder = "asc"; break; + } + } + else + { + $rorder = "desc"; + } + /////////////////////////////////////////////////////// + + if (isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] > 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + $query = "SELECT t.*, DATE_FORMAT(t.created, '".DATE_FORMAT."') AS date_created, u.username, u.email FROM exchangerix_transactions t, exchangerix_users u WHERE t.status='request' AND t.user_id=u.user_id ORDER BY $rrorder $rorder LIMIT $from, $results_per_page"; + $result = smart_mysql_query($query); + $total_on_page = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_transactions WHERE status='request'"; + $result2 = smart_mysql_query($query2); + $total = mysqli_num_rows($result2); + + $cc = 0; + + + $title = "Withdrawal Requests"; + require_once ("inc/header.inc.php"); + +?> + +
+ 0) { ?> + Export + +
+ +

Withdrawal Requests

+ + +
+ +
+ + + 0) { ?> + +
+ + + + + +
+ Sort by: + + +   Results: + + + + Showing - of +
+ + +
+ + + + + + + + + + + + + + "> + + + + + + + + + + + + + + +
Reference IDMemberUser BalanceAmountCommissionPayment MethodRequest DateActions
+   + + + + Proceed + Delete +
+ +
+
+ + + + +
There are no cash out requests at this time.
+ + + \ No newline at end of file diff --git a/admin/content.php b/admin/content.php new file mode 100644 index 0000000..90a16f5 --- /dev/null +++ b/admin/content.php @@ -0,0 +1,107 @@ + 7 && $_GET['action'] == "delete") + { + $content_id = (int)$_GET['id']; + smart_mysql_query("DELETE FROM exchangerix_content WHERE content_id='$content_id'"); + header("Location: content.php?msg=deleted"); + exit(); + } + + $query = "SELECT * FROM exchangerix_content ORDER BY name, language"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + $cc = 0; + + $title = "Content"; + require_once ("inc/header.inc.php"); + +?> + +
+ New Page +
+ +

Content

+ + 0) { ?> + + +
+ +
+ + + + + + + + + + + + "> + + + + + + + +
 Page TitleName LanguageActions
    + + + View + Edit + + Delete + +
+ + +
There are no pages at this time.
+ + + \ No newline at end of file diff --git a/admin/content_add.php b/admin/content_add.php new file mode 100644 index 0000000..6c25156 --- /dev/null +++ b/admin/content_add.php @@ -0,0 +1,181 @@ +"; + } + } + } + + + $title = "Create Page"; + require_once ("inc/header.inc.php"); + +?> + +

Create Page

+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
* Page Title:
  + + + +
Language: + +
Link Title:
Meta Description:
Meta Keywords:
Add link to: + +
Status: + +
  + + + +
+
+ + \ No newline at end of file diff --git a/admin/content_details.php b/admin/content_details.php new file mode 100644 index 0000000..00adebe --- /dev/null +++ b/admin/content_details.php @@ -0,0 +1,101 @@ + + + 0) { $row = mysqli_fetch_array($result); ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+
Meta Description:
Meta Keywords:
+ Language: | + Last modified: | + Status: inactive" : "active"; ?>  +
+ + Page location: +
+ + Link title:
+ Page URL: +
+ +

+ + +

+ + +
Sorry, no page found.
+

+ + + \ No newline at end of file diff --git a/admin/content_edit.php b/admin/content_edit.php new file mode 100644 index 0000000..34c0e0c --- /dev/null +++ b/admin/content_edit.php @@ -0,0 +1,157 @@ +"; + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) { $cid = (int)$_GET['id']; } else { $cid = (int)$_POST['cid']; } + + $query = "SELECT * FROM exchangerix_content WHERE content_id='$cid' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + + $title = "Edit Content"; + require_once ("inc/header.inc.php"); + +?> + + 0) { $row = mysqli_fetch_array($result); ?> + +

Edit Content

+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 7) { ?> + + + + + + + + + + + + + +
* Page Title:
  + + + +
Meta Description:
Meta Keywords:
Language:
Link Title:
Page Name:
Add link to: + +
Status: + +
  + + + + +
+
+ + +
Sorry, no page found.
+

+ + + \ No newline at end of file diff --git a/admin/countries.php b/admin/countries.php new file mode 100644 index 0000000..aedfa90 --- /dev/null +++ b/admin/countries.php @@ -0,0 +1,291 @@ + 0) + { + foreach ($ids_arr as $v) + { + $countryid = (int)$v; + DeleteCountry($countryid); + } + + header("Location: countries.php?msg=deleted"); + exit(); + } + } + + + // add //////////////////////////////////////// + if (isset($_POST['action']) && $_POST['action'] == "add") + { + $country_name = mysqli_real_escape_string($conn, getPostParameter('country_name')); + $signup = (int)getPostParameter('signup'); + + if (!$country_name) + { + $errormsg = "Please enter country name"; + } + else + { + $check_query = smart_mysql_query("SELECT * FROM exchangerix_countries WHERE name='$country_name'"); + if (mysqli_num_rows($check_query) == 0) + { + $sql = "INSERT INTO exchangerix_countries SET name='$country_name', signup='$signup', status='active'"; + + if (smart_mysql_query($sql)) + { + header("Location: countries.php?msg=added"); + exit(); + } + } + else + { + header("Location: countries.php?msg=exists"); + exit(); + } + } + } + + + // edit //////////////////////////////////////// + if (isset($_GET['id']) && is_numeric($_GET['id'])) + { + $id = (int)$_GET['id']; + + $iquery = "SELECT * FROM exchangerix_countries WHERE country_id='$id' LIMIT 1"; + $irs = smart_mysql_query($iquery); + $itotal = mysqli_num_rows($irs); + + if ($itotal > 0) + { + $irow = mysqli_fetch_array($irs); + } + } + if (isset($_POST["action"]) && $_POST["action"] == "edit") + { + unset($errors); + $errors = array(); + + $country_id = (int)getPostParameter('country_id'); + $country_name = mysqli_real_escape_string($conn, getPostParameter('country_name')); + $signup = (int)getPostParameter('signup'); + $status = mysqli_real_escape_string($conn, getPostParameter('status')); + $sort_order = (int)getPostParameter('sort_order'); + + if (!$country_name) + { + $errormsg = "Please fill in all required fields"; + } + else + { + smart_mysql_query("UPDATE exchangerix_countries SET name='$country_name', signup='$signup', sort_order='$sort_order', status='$status' WHERE country_id='$country_id' LIMIT 1"); + + header("Location: countries.php?msg=updated"); + exit(); + } + } + + + if (isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] > 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + $query = "SELECT * FROM exchangerix_countries ORDER BY sort_order, name LIMIT $from, $results_per_page"; + $result = smart_mysql_query($query); + + $total_result = smart_mysql_query("SELECT * FROM exchangerix_countries ORDER BY sort_order, name"); + $total = mysqli_num_rows($total_result); + + $cc = 0; + + $title = "Countries"; + require_once ("inc/header.inc.php"); + +?> + +
"> +

Add Country

+ +
+ +
+ + + + + + + + + + + + + +
Name:
 
  + + + +
+
+
+ + +
"> +

Edit Country

+ +
+ + 0) { ?> +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Country Code:
Country Name: + + + +
Signup Page
Sort Order:
Status: + +
  + + + + +
+
+ +
Sorry, no country found.
+ +
+ + +
"> + + + +

Countries 0) { ?>

+ + 0) { ?> + +
+
+ + + + + + + + + + + + + + "> + + + + + + + + + + + +
+ 15) { ?> + +
+ +
+ +
 Country NameSignup Page ?StatusActions
" : ""; ?> + active"; break; + case "inactive": echo "inactive"; break; + default: echo "".$row['status'].""; break; + } + ?> + + Edit +
+ + +
+
+
+ + + + +
There are no countries at this time.
+ + +
+ + + \ No newline at end of file diff --git a/admin/css/bootstrap-datetimepicker.min.css b/admin/css/bootstrap-datetimepicker.min.css new file mode 100644 index 0000000..2ee13b0 --- /dev/null +++ b/admin/css/bootstrap-datetimepicker.min.css @@ -0,0 +1,5 @@ +/*! + * Datetimepicker for Bootstrap 3 + * version : 4.17.42 + * https://github.com/Eonasdan/bootstrap-datetimepicker/ + */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:before,.bootstrap-datetimepicker-widget.dropdown-menu:after{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:bold;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action="today"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.old,.bootstrap-datetimepicker-widget table td.new{color:#777}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,0.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget table td span:hover{background:#eee}.bootstrap-datetimepicker-widget table td span.active{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em !important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0} \ No newline at end of file diff --git a/admin/css/bootstrap-select.min.css b/admin/css/bootstrap-select.min.css new file mode 100644 index 0000000..6cdc93b --- /dev/null +++ b/admin/css/bootstrap-select.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap-select v1.11.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2016 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\9}.bootstrap-select>.dropdown-toggle{width:100%;padding-right:25px;z-index:1}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2}.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{z-index:auto}.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn{border-radius:0}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.bootstrap-select.btn-group.disabled,.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group.disabled:focus,.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group.bs-container{position:absolute;height:0!important;padding:0!important}.bootstrap-select.btn-group.bs-container .dropdown-menu{z-index:1060}.bootstrap-select.btn-group .dropdown-toggle .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li.active small{color:#fff}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option{position:static}.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none} \ No newline at end of file diff --git a/admin/css/bootstrap.min.css b/admin/css/bootstrap.min.css new file mode 100644 index 0000000..a9558eb --- /dev/null +++ b/admin/css/bootstrap.min.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} \ No newline at end of file diff --git a/admin/css/exchangerix.css b/admin/css/exchangerix.css new file mode 100644 index 0000000..2dc4d62 --- /dev/null +++ b/admin/css/exchangerix.css @@ -0,0 +1,946 @@ +/*---------------------------------------- + Exchangerix + http://www.exchangerix.com +----------------------------------------*/ + +.navbar { + background: #FFF; + margin-bottom: 0; + box-shadow: none; + border-bottom: 0 none; + border-bottom: 1px solid #EEE; + height: 65px; +} +.navbar.ontop-now { + border-bottom: 1px solid #EEE; + /*box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);*/ +} + +.navbar .navbar-brand img { + margin-top: -5px; +} + +.navbar-header { width: 100% } +#rightmenu { width: 30%; padding: 10px; float: right; text-align: right } +#rightmenu a { color: #777; text-decoration: none } +#rightmenu a:hover { color: #000; } + + +.note + .tooltip > .tooltip-inner {background-color: #ecf3f7; color: #555;} + +.note + .tooltip > .tooltip-inner { + /*border: 1px solid #c9deea;*/ + padding: 10px; + min-width: 220px; + text-align: left; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.11); +} + +/* + * Off Canvas + * -------------------------------------------------- + */ +@media screen and (max-width: 767px) { + .row-offcanvas { + position: relative; + -webkit-transition: all .25s ease-out; + -o-transition: all .25s ease-out; + transition: all .25s ease-out; + } + + .row-offcanvas-right { + right: 0; + } + + .row-offcanvas-left { + left: 0; + } + + .row-offcanvas-right + .sidebar-offcanvas { + right: -50%; /* 6 columns */ + } + + .row-offcanvas-left + .sidebar-offcanvas { + left: -50%; /* 6 columns */ + } + + .row-offcanvas-right.active { + right: 50%; /* 6 columns */ + } + + .row-offcanvas-left.active { + left: 50%; /* 6 columns */ + } + + .sidebar-offcanvas { + position: absolute; + top: 0; + width: 50%; /* 6 columns */ + } + + .navbar .navbar-brand img { + width: 100px; + } + .navbar .navbar-brand { float: left; } + #rightmenu {width: 50%; white-space: nowrap; padding: 10px; font-size: 12px; } + #rightmenu a {color: #777 } + #rightmenu a:hover {color: #67b664 } + +} + + +body { + background: #FFFFFF url('../images/bg.png') repeat-x; + font-family: Helvetica, Arial, Tahoma, Verdana, sans-serif; + font-size: 14px; + color: #000000; + margin: 0 auto; + padding: 0; + overflow-x: hidden; +} + +/* Source Sans Pro */ + + +/* +table { + border-collapse:separate; + border-spacing:0 5px; +} +*/ + + +.checkbox { + margin-left: 20px; +} + +#right_header { + width: 280px; + white-space: nowrap; + float: right; + text-align: center; + color: #5F5F5F; + padding: 7px; + margin-right: 5px; + background: #F7F7F7; + border-radius: 0 0 5px 5px; +} + +#right_header a { + color: #333333; + text-decoration: underline; + margin: 0 2px 0 2px; +} + +#right_header a:hover { + color: #000000; + text-decoration: none; +} + +#right_header a.logout { + background: url('../images/icons/logout.png') no-repeat left; + padding-left: 20px; +} + +.form-control { + min-width: 0; + width: auto; + display: inline; + margin: 3px 0; + padding-left: 6px; +} + +/* +.form-control { + min-width: 0; + width: auto; + display: inline; + height: 28px; + margin: 3px 0; + padding: 4px 6px; + font-size: 12px; +} + +select.form-control { + min-width: 0; + width: auto; + display: inline; + height: 28px; + margin: 3px 0; + padding: 2px 4px; + font-size: 12px; +} +*/ + +select optgroup { + background:#000; + color:#fff; + font-weight:bold; +} + + +/* Menu +----------------------------------------------- */ +#sidebar { + background: #FFF; +} + +#sidebar ul { + padding: 0px; + margin: 10px 0; + list-style-type: none; + width: 165px; + float: left; +} + +#sidebar ul li { + float: left; + width: 165px; + white-space: nowrap; + line-height: 20px; +} + +#sidebar ul li a { + display: block; + background: url('../images/arrow_right.gif') 3px 5px no-repeat; + color: #000; + padding: 4px 15px; + border-bottom: 1px solid #F5F5F5; + text-decoration: none; +} + +#sidebar ul li a:hover { + color: #FFFFFF; + background: #A2D1F9 url('../images/arrow_right_white.gif') 3px 5px no-repeat; +} + +#sidebar ul li.selected { + color: #FFFFFF; + font-weight: bold; + background: #F5F5F5 url('../images/arrow_right_white.gif') 3px 5px no-repeat; +} + +#sidebar ul li a.last { + border-bottom: 1px solid #FFFFFF;; +} + + +#footer { + height: 50px; + background: #727475; + padding: 15px 0 0 0; + border-top: 1px solid #333; + font-size: 13px; + color: #B7B7B7; + text-align: center; + margin-top: 40px; +} + +#footer a { + color: #B7B7B7; + text-decoration: none; +} + + +/* Tables +----------------------------------------------- */ +th { + background: #EFF6F7; + height: 33px; + text-align: center; + vertical-align: middle; + color: #333; + font-weight: bold; + border-right: 1px solid #FFFFFF; + white-space: nowrap; +} + +th.noborder { + border: 0; +} + +.tb1 { + color: #000; + font-weight: normal; + font-size: 14px; + white-space: nowrap; + padding: 5px 8px; +} + +.tb2 { + color: #000000; + font-weight: normal; + font-size: 14px; +} + +.row_title { + font-weight: normal; + font-size: 14px; +} + +tr.odd { + height: 32px; + background: #FFFFFF; + border-bottom: 1px solid #FFF; +} +tr.odd:hover { + background: #F7F7F7; +} + +tr.even { + height: 32px; + background: #F9F9F9; + border-bottom: 1px solid #FFF; +} +tr.even:hover { + background: #F7F7F7; +} + +.tbl { + border-bottom: 1px solid #F5F5F5; +} + +tr.wrow { + height: 22px; +} + + +/* Links +----------------------------------------------- */ +a { + color: #369DDB; + text-decoration: none; +} + +a:hover { + color: #78b50e; + text-decoration: none; +} + +a.goback { + background: url('../images/back.gif') no-repeat center left; + padding: 20px; +} + +#addnew { + float: right; + margin-top: 2px; + padding-top: 15px; +} + +#addnew a { + color: #777; + text-decoration: none; +} + +#addnew a:hover { + color: #000; + text-decoration: none; +} + +a.addnew { + background: url('../images/icons/add.png') no-repeat left; + text-align: right; + padding: 4px 5px 5px 18px; +} + +a.search { + background: url('../images/icons/search.png') no-repeat left; + text-align: right; + padding: 4px 5px 5px 20px; + margin-left: 15px; +} + +a:hover.search { + color: #000; + text-decoration: none; +} + +a.import { + color: #46ADD9; + background: url('../images/import.png') no-repeat left; + text-align: right; + padding: 4px 5px 5px 20px; + margin-right: 15px; + text-decoration: none; +} + +a:hover.import { + color: #96E706; + text-decoration: none; +} + +a.export { + color: #81C601; + background: url('../images/export.png') no-repeat left; + text-align: right; + padding: 4px 5px 5px 20px; + margin-left: 15px; + text-decoration: none; +} + +a:hover.export { + color: #000; + text-decoration: none; +} + +a.sendmessage { + background: url('../images/icons/send_message.gif') no-repeat center left; + padding: 35px; + color: #FBBC00; + text-decoration: none; +} + +a.sendmessage:hover { + color: #000; +} + +a.blockit { + background: url('../images/icons/block_user.gif') no-repeat center left; + padding: 30px 15px 30px 35px; + color: #FB3232; + text-decoration: none; +} + +a.blockit:hover { + color: #000; +} + +a.unblockit { + background: url('../images/icons/unblock_user.gif') no-repeat center left; + padding: 30px 15px 30px 35px; + color: #CD952A; + text-decoration: none; +} + +a.unblockit:hover { + color: #000; +} + +a.emailit { + background: url('../images/icons/email_user.png') no-repeat center left; + padding: 30px 10px 30px 35px; + color: #777777; + text-decoration: none; +} + +a.emailit:hover { + color: #000; +} + +a.moneyit { + background: url('../images/icons/money_user.png') no-repeat center left; + padding: 30px 10px 30px 35px; + color: #777777; + text-decoration: none; +} + +a.moneyit:hover { + color: #000; +} + + +/* TEXT +----------------------------------------------- */ +p { + margin: 0; + padding: 5px 0 5px 0; +} + +h1 { + font-family: 'Oswald', Times, Arial, Verdana, sans-serif; + font-size: 30px; + color: #000000; + padding: 0px 0px 0px 6px; + margin-top: 14; +} + +h2 { + font-family: 'Oswald', Times, Arial, Verdana, sans-serif; + font-size: 28px; + color: #000000; + border-bottom: 2px solid #D1E8FC; + padding: 0px 0px 0px 2px; + margin-top: 10px; + margin-bottom: 7px; +} + +h3 { + font-family: 'Oswald', Times, Arial, Verdana, sans-serif; + font-size: 26px; + color: #555555; + padding: 0; + margin-top: 5px; + margin-bottom: 5px; +} + +h4 { + font-family: 'Oswald', Times, Arial, Verdana, sans-serif; + font-size: 20px; + color: #555555; + padding: 0; + margin-top: 5px; + margin-bottom: 5px; +} + +.lg { + font-family: 'Oswald', Times, Arial, Verdana, sans-serif; + font-size: 15px; + color: #555555; + padding: 0; + margin-top: 5px; + margin-bottom: 5px; +} + +.req { + color: red; +} + +.note { + color: #9B9B9B; + font-size: 13px; + font-weight: normal; + background: url('../images/note.png') no-repeat center left; + padding: 2px 0 2px 20px; + margin-left: 5px; + cursor: pointer; +} + +.sline { + background: #EEEEEE url('../images/px.gif') no-repeat center bottom; + margin: 2px auto; + height: 1px; +} + +.help { + color: #777777; + font-size: 13px; + font-weight: normal; +} + +.active_s { + background: #59d810; + color: #FFFFFF; + /*background: url('../images/active.png') no-repeat center left;*/ + padding: 2px 5px; + border-radius: 3px; +} + +.inactive_s { + background: #BBBBBB; + color: #FFFFFF; + /*background: url('../images/inactive.png') no-repeat center left;*/ + padding: 2px 5px; + border-radius: 3px; +} + +.stat { + color: #4F4E4E; + font-weight: normal; + font-size: 18px; +} + +.stat_s { + color: #333333; + background: #F7F7F7; + text-align: center; +} + +.stats_total { + color: #777777; + font-size: 33px; + font-weight: bold; + font-family: 'Oswald', Times, Arial, Verdana, sans-serif; +} + +.todays_total { + font-weight: bold; + color: #FFFFFF; + background: #92d2e8; + padding: 2px 4px; + border-radius: 5px; +} + +.featured { + color: #BB6CAA; + background: url('../images/icons/featured.png') no-repeat right; + padding: 5px 15px 5px 2px; +} + +.deal_of_week { + color: #0099D9; + background: url('../images/icons/deal_of_week.png') no-repeat right; + padding: 7px 8px 5px 2px; +} + +.old_cashback { + color: #BBBBBB; + text-decoration: line-through; +} + +.cashback { + color: #F8A51B; + font-weight: bold; +} + + +/* Forms +----------------------------------------------- */ +/* + .bootstrap-select > .btn { + height: 28px; + padding: 2px 4px; + font-size: 12px; +} + +.btn { + font-size: 12px; +} +*/ + +.checkbox { + margin: 0 2px; + padding: 0; +} + +.imgs { + border: 1px solid #EFEFEF; + margin-right: 3px; + padding: 3px; + background: #FFFFFF; +} + +a:hover .imgs { + border-color: #F3F3F3; +} + + +/* Statuses +----------------------------------------------- */ +.confirmed_status, .pending_status, .declined_status, .failed_status, .request_status, .paid_status, .expired_status, .payment_status { + float: left; + padding: 2px 5px; + margin: 0; + border-radius: 3px; + min-width: 47px; +} + +.confirmed_status { + background: #59d80f; + color: #FFFFFF; + /*color: #A6D220; + background: url('../images/icons/status-confirmed.png') no-repeat center left;*/ +} + +.pending_status { + background: #F7B400; + color: #FFFFFF; + /* background: url('../images/icons/status-pending.png') no-repeat center left;*/ +} + +.declined_status { + background: #E27677; + color: #FFFFFF; + /*color: #E27677; + background: url('../images/icons/status-declined.png') no-repeat center left;*/ +} + +.failed_status { + color: #FF000A; + background: url('../images/icons/status-failed.png') no-repeat center left; +} + +.expired_status { + background: #f2bfab; + color: #FFFFFF; + min-width: 37px; + /*color: #939393; + background: url('../images/icons/status-expired.png') no-repeat center left;*/ +} + +.request_status { + background: #F7B400; + color: #FFFFFF; + /*color: #FF9D00; + background: url('../images/icons/status-request.png') no-repeat center left;*/ +} + +.paid_status { + background: #94D710; + color: #FFFFFF; + /*color: #86C125; + background: url('../images/icons/status-paid.png') no-repeat center left;*/ + +} + +.payment_status { + color: #535352; + /*background: url('../images/icons/status-default.png') no-repeat center left;*/ +} + + +/* Scroll Box +----------------------------------------------- */ +.scrollbox { + border: 1px solid #CCCCCC; + width: 335px; + height: 110px; + background: #FFFFFF; + overflow-y: scroll; +} + +.scrollbox div { + padding: 4px 3px; +} + +.scrollbox div input { + margin: 0px; + padding: 0px; + margin-right: 3px; +} + +.scrollbox div.even { + background: #FFFFFF; +} + +.scrollbox div.odd { + background: #F5F5F5; +} + + +/* Pagination +----------------------------------------------- */ +div.pagination { + width: 100%; + font-size: 14px; + margin: 15px 0 5px 0; + text-align: center; + padding: 2px 0; +} + +div.pagination a { + padding: 2px 6px; + text-decoration:none; + margin: 1px; + color: #8E8E8E; +} + +div.pagination a:hover { + padding: 2px 6px; + color: #000; +} + +div.pagination span.disabled { + padding: 2px 6px; + margin: 2px; + color: #DDDDDD; +} + +div.pagination span.curPage { + background: #8CC5FA; + border: 1px solid #8CC5FA; + padding: 2px 6px; + color: #FFFFFF; + margin: 1px; + border-radius:3px; + -webkit-border-radius:3px; + -moz-border-radius:3px; +} + + + +.date { + color: #3D3D3D; + font-weight: normal; + background: url('../images/icons/date.png') no-repeat center left; + padding: 2px 0 2px 18px; +} + +.user { + color: #777777; + font-weight: normal; + background: url('../images/icons/user.png') no-repeat center left; + padding: 4px 0 2px 20px; +} + +.amount { + color: #FFFFFF; + background: #84D304; + padding: 3px 8px; + border-radius: 3px; +} + +.abalance { + float: right; + width: 140px; + background: #fafafa; + color: #333333; + padding: 8px 5px; + margin: 3px; + text-align: center; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +.abalance .total_balance { + font-family: 'Oswald', Times, Arial, Verdana, sans-serif; + font-size: 25px; + font-weight: bold; + color: #91d608; +} + +.count { + font-size: 16px; + padding: 4px 8px; + color: #FFF; + border-radius: 3px; +} + +.count a { + color: #FFF; + text-decoration: none; +} + +.sletter { + font-size: 13px; + font-weight: bold; + color: #567F03; + background: #D7F993;; +} + + +/* Rating +----------------------------------------------- */ +.exchangerix_rating { + display: inline-block; + position: relative; + width: 50px; + height: 10px; +} +.exchangerix_rating .cover { + position: absolute; + background: transparent url('../images/rating_stars.png') top left no-repeat; + top: 0px; + left: 0px; + width: 50px; + height: 10px; + z-index: 101; +} +.exchangerix_rating .progress { + position: absolute; + background: transparent url('../images/rating_stars_full.png') top left no-repeat; + top: 0px; + left: 0px; + height: 10px; + z-index: 102; +} + +.subscribers { + position: absolute; + right: 0; + text-align: left; + padding-top: 10px; + padding-left: 37px; + margin-right: 70px; + background: url('../images/icons/subscribers.png') no-repeat center left; +} + + +/* TABS +----------------------------------------------- */ +.nav-tabs { + border-bottom: 1px solid #EEE; +} + +.nav-tabs li a { + font-size: 13px; + color: #777; + border: 1px solid #EEE; + padding: 6px 10px; + margin-right: 5px; + text-decoration: none; + background-color: #F7F7F7; + border-bottom: none; + outline: none; + border-radius: 5px 5px 0 0; + -moz-border-radius: 5px 5px 0 0; + -webkit-border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; +} +.nav-tabs li a:hover { + color: #FFF; + background-color: #8ADFEA; + padding: 6px 10px; + border-color: #8ADFEA; +} + +.tab_content, .tab-pane { + margin-top: 2px; + background: #FFF; + padding: 10px; + border-left: 1px solid #EEE; + border-right: 1px solid #EEE; + border-bottom: 1px solid #EEE; + border-radius: 0 0 10px 10px; +} + + + +/* Chart +----------------------------------------------- */ +.morris-hover{position:absolute;z-index:1000} +.morris-hover.morris-default-style {border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family: Tahoma, Arial, sans-serif; font-size:11px;text-align:center} +.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} +.morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} + + +.alert { + margin: 0 auto; + padding: 10px; +} + +.alert-success { + color: #FFF; + background: #66b210; + border: 1px solid #66b210; +} + +/* +.alert-danger { + color: #FFF; + background: #db6767; + border: 1px solid #db6767; +} +*/ + +.alert-info { + color: #000; + background: #F7F7F7; + border: 1px solid #EEE; + text-align: center; +} + +.label {font-size: 12px; font-weight: normal; /*text-transform: uppercase;*/} +#itooltip {cursor: pointer} + + + +[data-letters]:before { + content:attr(data-letters); + display:inline-block; + font-size:1em; + width:2.5em; + height:2.5em; + line-height:2.5em; + text-align:center; + border-radius:50%; + background:#72b437; + vertical-align:middle; + margin-right:1em; + color:white; +} + + .imgrs { border-radius: 50%; margin-right: 7px; } \ No newline at end of file diff --git a/admin/css/font-awesome.min.css b/admin/css/font-awesome.min.css new file mode 100644 index 0000000..540440c --- /dev/null +++ b/admin/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/admin/css/lightbox.css b/admin/css/lightbox.css new file mode 100644 index 0000000..a95d45a --- /dev/null +++ b/admin/css/lightbox.css @@ -0,0 +1,207 @@ +html.lb-disable-scrolling { + overflow: hidden; + /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */ + position: fixed; + height: 100vh; + width: 100vw; +} + +.lightboxOverlay { + position: absolute; + top: 0; + left: 0; + z-index: 9999; + background-color: black; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + opacity: 0.8; + display: none; +} + +.lightbox { + position: absolute; + left: 0; + width: 100%; + z-index: 10000; + text-align: center; + line-height: 0; + font-weight: normal; +} + +.lightbox .lb-image { + display: block; + height: auto; + max-width: inherit; + max-height: none; + border-radius: 3px; + + /* Image border */ + border: 4px solid white; +} + +.lightbox a img { + border: none; +} + +.lb-outerContainer { + position: relative; + *zoom: 1; + width: 250px; + height: 250px; + margin: 0 auto; + border-radius: 4px; + + /* Background color behind image. + This is visible during transitions. */ + background-color: white; +} + +.lb-outerContainer:after { + content: ""; + display: table; + clear: both; +} + +.lb-loader { + position: absolute; + top: 43%; + left: 0; + height: 25%; + width: 100%; + text-align: center; + line-height: 0; +} + +.lb-cancel { + display: block; + width: 32px; + height: 32px; + margin: 0 auto; + background: url(../images/loading.gif) no-repeat; +} + +.lb-nav { + position: absolute; + top: 0; + left: 0; + height: 100%; + width: 100%; + z-index: 10; +} + +.lb-container > .nav { + left: 0; +} + +.lb-nav a { + outline: none; + background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='); +} + +.lb-prev, .lb-next { + height: 100%; + cursor: pointer; + display: block; +} + +.lb-nav a.lb-prev { + width: 34%; + left: 0; + float: left; + background: url(../images/prev.png) left 48% no-repeat; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + -webkit-transition: opacity 0.6s; + -moz-transition: opacity 0.6s; + -o-transition: opacity 0.6s; + transition: opacity 0.6s; +} + +.lb-nav a.lb-prev:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +.lb-nav a.lb-next { + width: 64%; + right: 0; + float: right; + background: url(../images/next.png) right 48% no-repeat; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + -webkit-transition: opacity 0.6s; + -moz-transition: opacity 0.6s; + -o-transition: opacity 0.6s; + transition: opacity 0.6s; +} + +.lb-nav a.lb-next:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +.lb-dataContainer { + margin: 0 auto; + padding-top: 5px; + *zoom: 1; + width: 100%; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +.lb-dataContainer:after { + content: ""; + display: table; + clear: both; +} + +.lb-data { + padding: 0 4px; + color: #ccc; +} + +.lb-data .lb-details { + width: 85%; + float: left; + text-align: left; + line-height: 1.1em; +} + +.lb-data .lb-caption { + font-size: 13px; + font-weight: bold; + line-height: 1em; +} + +.lb-data .lb-caption a { + color: #4ae; +} + +.lb-data .lb-number { + display: block; + clear: left; + padding-bottom: 1em; + font-size: 12px; + color: #999999; +} + +.lb-data .lb-close { + display: block; + float: right; + width: 30px; + height: 30px; + background: url(../images/close.png) top right no-repeat; + text-align: right; + outline: none; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; + -webkit-transition: opacity 0.2s; + -moz-transition: opacity 0.2s; + -o-transition: opacity 0.2s; + transition: opacity 0.2s; +} + +.lb-data .lb-close:hover { + cursor: pointer; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} diff --git a/admin/css/login.css b/admin/css/login.css new file mode 100644 index 0000000..39dac0c --- /dev/null +++ b/admin/css/login.css @@ -0,0 +1,86 @@ +/*---------------------------------------- + Exchangerix + http://www.exchangerix.com +----------------------------------------*/ + +body { + font-family: Helvetica, Arial, Tahoma, Verdana, sans-serif; + margin: 0 auto; + padding: 0; + font-size: 14px; + color: #000000; +} + +a { + color: #369DDB; + text-decoration: none; +} + +a:hover { + color: #96E706; + text-decoration: none; +} + +h1 { + font-family: 'Oswald', Tahoma, Verdana, Arial, Helvetica, sans-serif; + font-size: 22px; + color: #777; + padding: 0; + margin: 0; +} + +.page-signin { + /*background: #1c2a42 url(../images/bg_header.jpg) no-repeat; + background-size: cover; + background-attachment: fixed;*/ + background: #F7F7F7; +} +@media (max-width: 480px) { + .page-signin { + padding-top: 20px; + } +} +.section-signin { + position: absolute; + top: 50%; + left: 50%; + margin: -225px 0 0 -180px; + width: 340px; + height: 450px; +} +@media (max-width: 480px) { + .section-signin { + position: inherit; + top: inherit; + left: inherit; + margin: 0 auto; + width: 90%; + height: auto; + } +} + +.login_box { + background: #FFF; + padding: 10px; + margin-top: 5px; + border: 1px solid #ccc; + box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1); + border-radius: 8px; +} + +.btn { + border: 1px solid #64C3EF; + background: #64C3EF; + border: 1px solid #64C3EF;; + color: #FFFFFF; +} + +.btn:hover, .btn:active { + color: #FFF; + background: #8DCE25; + border: 1px solid #8DCE25; +} + +.btn:focus { + outline: 0; +} diff --git a/admin/currencies.php b/admin/currencies.php new file mode 100644 index 0000000..3dd5645 --- /dev/null +++ b/admin/currencies.php @@ -0,0 +1,349 @@ + 0) + $results_per_page = (int)$_GET['show']; + else + $results_per_page = 20; //10 + + + // Update // + if (isset($_POST['update']) && $_POST['update'] != "") + { + $sorts_arr = array(); + $sorts_arr = $_POST['sort_arr']; + + if (count($sorts_arr) > 0) + { + foreach ($sorts_arr as $k=>$v) + { + smart_mysql_query("UPDATE exchangerix_currencies SET sort_order='".(int)$v."' WHERE currency_id='".(int)$k."'"); + } + + header("Location: currencies.php?msg=updated"); + exit(); + } + } + + // Delete // + if (isset($_POST['delete']) && $_POST['delete'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $did = (int)$v; + smart_mysql_query("DELETE FROM exchangerix_currencies WHERE currency_id='$did'"); + smart_mysql_query("DELETE FROM exchangerix_exdirections WHERE from_currency='$did' OR to_currency='$did'"); + // delete from exchanges + } + + header("Location: currencies.php?msg=deleted"); + exit(); + } + } + + $where = "1=1"; + + ////////////////// filter ////////////////////// + if (isset($_GET['column']) && $_GET['column'] != "") + { + switch ($_GET['column']) + { + case "sort_order": $rrorder = "sort_order"; break; + case "currency_name": $rrorder = "currency_name"; break; + case "currency_code": $rrorder = "currency_code"; break; + case "added": $rrorder = "added"; break; + case "reserve": $rrorder = "convert(reserve, decimal)"; break; + case "status": $rrorder = "status"; break; + default: $rrorder = "sort_order"; break; + } + } + else + { + $rrorder = "sort_order"; + } + + if (isset($_GET['order']) && $_GET['order'] != "") + { + switch ($_GET['order']) + { + case "asc": $rorder = "asc"; break; + case "desc": $rorder = "desc"; break; + default: $rorder = "asc"; break; + } + } + else + { + $rorder = "asc"; + } + if (isset($_GET['filter']) && $_GET['filter'] != "") + { + $filter = mysqli_real_escape_string($conn, trim(getGetParameter('filter'))); + $where .= " AND (title LIKE '%$filter%' OR code LIKE '%$filter%') "; + $totitle = " - Search Results"; + } + /////////////////////////////////////////////////////// + + if (isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] > 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + if (isset($_GET['store']) && $_GET['store'] != "") + { + $store = substr(trim(getGetParameter('store')), 0, 10); + $store = mysqli_real_escape_string($conn, $store); //dev + $where .= " AND currency_code='$store' "; + $title2 = $store; + } + + if (isset($_GET['direction']) && is_numeric($_GET['direction'])) + { + $direction = (int)$_GET['direction']; + if ($direction == 1) { $where .= " AND allow_send='1' "; $title2 .= " Send"; } + if ($direction == 2) { $where .= " AND allow_receive='1' "; $title2 .= " Receive"; } + } + + $query = "SELECT * FROM exchangerix_currencies WHERE $where ORDER BY $rrorder $rorder, currency_id ASC LIMIT $from, $results_per_page"; //currency_name + $result = smart_mysql_query($query); + $total_on_page = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_currencies WHERE ".$where; + $result2 = smart_mysql_query($query2); + $total = mysqli_num_rows($result2); + + $cc = 0; + + $title = $title2." Currencies"; + require_once ("inc/header.inc.php"); + +?> + + + +

Currencies 0) { ?>

+ + +
+ +
+ + +
+
+
+ Sort by: + + + + + + +
+
+ Show: + + + Delete Filter +
+
+ 0) { ?>Showing - of +
+
+
+ + + +
+
+ + + + + + + + + + + + + + + + + 0) { ?> + + "> + + + + + + + + + + + + + + + + + + + + + + + +
Sort Order CurrencyTypeFor ReserveFeeSent Received Exchanges
all time / today
StatusActions
+ + + + + + + + + + +

+ default for sending
+ default for receiving
+
+ + + '; $strike2 = ''; } ?> + unlimited"; ; ?> + 0) ? $row['fee']."%" : "---"; ?> + ".$row['status'].""; break; + case "inactive": echo "".$row['status'].""; break; + case "expired": echo "".$row['status'].""; break; + default: echo "".$row['status'].""; break; + } + ?> + + View + Edit + Delete +
+ + + + + +
+ +
No currencies found for your search criteria. See all ›
+ +
There are no currencies at this time. See all ›
+ +

+ + +
+
+
+ + + + + + \ No newline at end of file diff --git a/admin/currency_add.php b/admin/currency_add.php new file mode 100644 index 0000000..ca1c82d --- /dev/null +++ b/admin/currency_add.php @@ -0,0 +1,560 @@ + 0 //dev + $errs[] = "Please enter correct reserve value"; + + if (isset($min_reserve) && $min_reserve != "" && !is_numeric($min_reserve)) // > 0 //dev + $errs[] = "Please enter correct minimum reserve value"; + + if (isset($fee) && $fee != "" && !is_numeric($fee)) + $errs[] = "Please enter correct fee value"; + + if (isset($min_reserve) && $min_reserve > 0 && $min_reserve >= $reserve) + $errs[] = "Min reserve value cant be less than reserve amount"; + + $check_query = smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_name='$currency_name' AND currency_code='$currency_code' AND status='active'"); + if (mysqli_num_rows($check_query) > 0) + { + $errs[] = "Sorry, currency with same name and code is exists"; + } + + if ($default_send == 1 && $default_receive == 1) + $errs[] = "Sorry, one currency can't be default for send and receive payments"; + + if ($default_send == 1) + { + $check_query2 = smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE default_send='1' AND status='active'"); + if (mysqli_num_rows($check_query2) > 0) + { + $errs[] = "Sorry, only one currency can be default for sending"; + } + } + + if ($default_receive == 1) + { + $check_query3 = smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE default_receive='1' AND status='active'"); + if (mysqli_num_rows($check_query3) > 0) + { + $errs[] = "Sorry, only one currency can be default for receiving"; + } + } + + if (isset($site_code) && $site_code != "") + { + $check_query4 = smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE site_code='$site_code'"); + if (mysqli_num_rows($check_query4) > 0) + { + $errs[] = "Sorry, currency with same 'Site code' is exists"; + } + } + + if (isset($xml_code) && $xml_code != "") + { + $check_query5 = smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE xml_code='$xml_code'"); + if (mysqli_num_rows($check_query5) > 0) + { + $errs[] = "Sorry, currency with same 'Xml code' is exists"; + } + } + } + + + if (count($errs) == 0) + { + if ($_FILES['logo_file']['tmp_name']) + { + if (is_uploaded_file($_FILES['logo_file']['tmp_name'])) + { + list($width, $height, $type) = getimagesize($_FILES['logo_file']['tmp_name']); + + $check = getimagesize($_FILES["logo_file"]["tmp_name"]); + if ($check === false) $errs[] = "File is not an image"; + + if ($_FILES['logo_file']['size'] > 2097152) + { + $errs[] = "The image file size is too big. It exceeds 2Mb"; + } + elseif (preg_match('/\\.(gif|jpg|png|jpeg)$/i', $_FILES['logo_file']['name']) != 1) + { + $errs[] = "Please upload PNG, JPG, GIF file only"; + //$errs[] = "Please upload ".strtoupper(str_replace("|", ", .", PROOF_ALLOWED_FILES))." file only"; //PROOF_ALLOWED_FILES = dd|ddd + unlink($_FILES['logo_file']['tmp_name']); + } + else + { + $ext = substr(strrchr($_FILES['logo_file']['name'], "."), 1); + $upload_file_name = "logo_".mt_rand(1,100).time().".".$ext; //md5(substr($ip, 0, -5).mt_rand(1,10000).time()).".".$ext; + + $img = $upload_file_name; + $upload_path = PUBLIC_HTML_PATH.'/images/currencies/'.$upload_file_name; + $resized_path = $upload_path; //PUBLIC_HTML_PATH.'/images/currencies/'.$upload_file_name_resized; + + // upload file + move_uploaded_file($_FILES['logo_file']['tmp_name'], $upload_path); + + $imgData = resize_image($resized_path, 48, 48); + imagepng($imgData, $upload_path); + } + } + } + else + { + $img = "no_image.png"; + } + } + else + { + $errormsg = ""; + foreach ($errs as $errorname) + $errormsg .= $errorname."
"; + } + + + if (count($errs) == 0) + { + $insert_sql = "INSERT INTO exchangerix_currencies SET currency_name='$cname', currency_code='$currency', gateway_id='$gateway_id', image='$img', instructions='$instructions', website='$website', is_crypto='$is_crypto', reserve='$reserve', fee='$fee', min_reserve='$min_reserve', site_code='$site_code', xml_code='$xml_code', allow_send='$allow_send', allow_receive='$allow_receive', allow_affiliate='$allow_affiliate', default_send='$default_send', default_receive='$default_receive', sort_order='$sort_order', is_new_currency='$is_new_currency', hide_code='$hide_code', status='$status', added=NOW()"; + $result = smart_mysql_query($insert_sql); + $new_insert_id = mysqli_insert_id($conn); + + header("Location: currencies.php?msg=added"); + exit(); + } + else + { + $errormsg = ""; + foreach ($errs as $errorname) + $errormsg .= $errorname."
"; + } + } + + $title = "Add Currency"; + require_once ("inc/header.inc.php"); + +?> + +

Currencies Add Currency

+ + +
+ +
Currency has been successfully added
+ + +
+ + + + + + + + + + style="display: none;" style="display: ;"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
* Title:
* Currency Code: + +
* Other Currency Code:
 
Gateway:
(manage)
+ + +
Logo:
Reserve: + +
Fee: + % +
Site Code: + e.g. BTCUSD +
XML Code: + e.g. BTCUSD +
Min Reserve Alert: + +
Instructions for user:
Website:
Cryptocurrency?: + +
 
 
 
 
 
Sort Order:" size="5" />
Status: + +
  + + + +
+
+ + \ No newline at end of file diff --git a/admin/currency_details.php b/admin/currency_details.php new file mode 100644 index 0000000..1f59eac --- /dev/null +++ b/admin/currency_details.php @@ -0,0 +1,250 @@ + + + 0) { $row = mysqli_fetch_array($result); ?> + +

+ +
+ + + + + + +
+

Allow to Send Payments

+

+ + + + + +

+ default gateway +
+

Allow to Receive Payments

+

+ + + + + +

+ default gateway +
+
+ + + 0) { ?> + 0) $grow = mysqli_fetch_array($gresult); + ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Gateway:
Account:" : "not filled"; ?> change
Account:not filled on gateways page
Gateway Code:
Currency Code:
Hide Currency Code: + + + + + +
Cryptocurrency: + + + + + +
Reserve: + +
Fee: 0) ? $row['fee']."%" : "no fee"; ?>
Allow Affiliate Withdrawals: + + + + + +
Min Reserve:
Instructions for user:
Website:
Site Code:
XML Code:
Status: + ".$row['status'].""; break; + case "inactive": echo "".$row['status'].""; break; + default: echo "".$row['status'].""; break; + } + ?> +
+ +
+

Stats

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

+ exchanges today +

+
+
+

+ total exchanges +

+
+
+

+ sent +

+
+
+

+ received +

+
+
+

".$row['currency_code']."" : "unlimited"; ?>

+ current reserve +

+
+
+ +
+ +

+ Edit Settings + Go Back + Delete +

+ + +

Currency not found

+
Sorry, no currency found.
+

Go Back

+ + + \ No newline at end of file diff --git a/admin/currency_edit.php b/admin/currency_edit.php new file mode 100644 index 0000000..7dad575 --- /dev/null +++ b/admin/currency_edit.php @@ -0,0 +1,540 @@ + 0 //dev + $errs[] = "Please enter correct reserve value"; + + if (isset($min_reserve) && $min_reserve != "" && !is_numeric($min_reserve)) // > 0 //dev + $errs[] = "Please enter correct minimum reserve value"; + + if (isset($fee) && $fee != "" && !is_numeric($fee)) + $errs[] = "Please enter correct fee value"; + + if (isset($min_reserve) && $min_reserve > 0 && $min_reserve >= $reserve) + $errs[] = "Min reserve value cant be less than reserve amount"; + + $check_query = smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id!='".(int)$currency_id."' AND currency_name='$currency_name' AND currency_code='$currency_code' AND status='active'"); + if (mysqli_num_rows($check_query) > 0) + { + $errs[] = "Sorry, currency with same name and code is exists"; + } + + if ($default_send == 1 && $default_receive == 1) + $errs[] = "Sorry, one currency can't be default for send and receive payments"; + + if ($default_send == 1) + { + $check_query2 = smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id!='".(int)$currency_id."' AND default_send='1' AND status='active'"); + if (mysqli_num_rows($check_query2) > 0) + { + $errs[] = "Sorry, only one currency can be default for sending"; + } + } + + if ($default_receive == 1) + { + $check_query3 = smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id!='".(int)$currency_id."' AND default_receive='1' AND status='active'"); + if (mysqli_num_rows($check_query3) > 0) + { + $errs[] = "Sorry, only one currency can be default for receiving"; + } + } + + if (isset($site_code) && $site_code != "") + { + $check_query4 = smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id!='".(int)$currency_id."' AND site_code='$site_code'"); + if (mysqli_num_rows($check_query4) > 0) + { + $errs[] = "Sorry, currency with same 'Site code' is exists"; + } + } + + if (isset($xml_code) && $xml_code != "") + { + $check_query5 = smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id!='".(int)$currency_id."' AND xml_code='$xml_code'"); + if (mysqli_num_rows($check_query5) > 0) + { + $errs[] = "Sorry, currency with same 'Xml code' is exists"; + } + } + } + + + if (count($errs) == 0) + { + //if ($reserve == "") $reserve = "999999999999999999"; + + // check reserve notification // and send email is needed + + smart_mysql_query("UPDATE exchangerix_currencies SET currency_name='$cname', currency_code='$currency', gateway_id='$gateway_id', instructions='$instructions', is_crypto='$is_crypto', website='$website', reserve='$reserve', fee='$fee', min_reserve='$min_reserve', site_code='$site_code', xml_code='$xml_code', allow_send='$allow_send', allow_receive='$allow_receive', allow_affiliate='$allow_affiliate', default_send='$default_send', default_receive='$default_receive', sort_order='$sort_order', is_new_currency='$is_new_currency', hide_code='$hide_code', status='$status' WHERE currency_id='$currency_id' LIMIT 1"); //image='$img' + + header("Location: currencies.php?msg=updated"); + exit(); + } + else + { + $errormsg = ""; + foreach ($errs as $errorname) + $errormsg .= " ".$errorname."
"; + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) + { + $id = (int)$_GET['id']; + + $query = "SELECT * FROM exchangerix_currencies WHERE currency_id='$id' LIMIT 1"; + $rs = smart_mysql_query($query); + $total = mysqli_num_rows($rs); + } + + + $title = "Edit Currency"; + require_once ("inc/header.inc.php"); + +?> + +

Currencies Edit Currency

+ + 0) { $row = mysqli_fetch_array($rs); ?> + + +
+ + +
+ +
+ +
+ + + + + + + + + + style="display: none;" style="display: ;" > + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
* Title: />
* Currency Code: + + + +
Other Currency Code:" size="26" class="form-control" />
 
Gateway:
(manage)
+ + +
Reserve: + +
Fee: + % +
Site Code: + e.g. BTCUSD +
XML Code: + e.g. BTCUSD +
Currency Exchange code: + /> +
Min Reserve Alert: + +
Instructions for users:
Website:
Cryptocurrency?: + +
 
 
 
 
 
Sort Order:
Status: + +
  + + + +

+
+
+ + +
Sorry, no currency found.
+

+ + + + \ No newline at end of file diff --git a/admin/email2users.php b/admin/email2users.php new file mode 100644 index 0000000..727f358 --- /dev/null +++ b/admin/email2users.php @@ -0,0 +1,241 @@ +

+

+ --------------------------------------------------------------------------------------------
+ You are receiving this email as you have directly signed up to ".SITE_TITLE.".
If you do not wish to receive these messages in the future, please unsubscribe.

"; + + $query = "SELECT * FROM exchangerix_users WHERE email != '' AND newsletter='1' AND status='active'"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_users WHERE email != ''"; + $result2 = smart_mysql_query($query2); + $total2 = mysqli_num_rows($result2); + + + if (isset($_POST['send']) && $_POST['send'] != "") + { + $etemplate = 0; + $recipients = $_POST['recipients']; + $allmessage = $_POST['allmessage']; + if (!$username) $username = mysqli_real_escape_string($conn, getPostParameter('username')); + + unset($errs); + $errs = array(); + + if (!($_POST['msubject'] && $_POST['allmessage'])) + { + $errs[] = "Please enter subject and message"; + } + else + { + switch ($recipients) + { + case "all": $query = "SELECT * FROM exchangerix_users WHERE email != ''"; break; + case "subscribed": $query = "SELECT * FROM exchangerix_users WHERE email != '' AND newsletter='1' AND status='active'"; break; + case "member": $query = "SELECT * FROM exchangerix_users WHERE user_id='$username' LIMIT 1"; break; + } + + $result = smart_mysql_query($query); + + if (mysqli_num_rows($result) == 0) + { + $errs[] = "Member not found"; + } + } + + if (count($errs) == 0) + { + while ($row = mysqli_fetch_array($result)) + { + $msubject = trim($_POST['msubject']); + $allmessage = $_POST['allmessage']; + + //////////////////////////////// Send Message ////////////////////////////// + $msubject = str_replace("{first_name}", $row['fname'], $msubject); + $allmessage = str_replace("{member_id}", $row['user_id'], $allmessage); + $allmessage = str_replace("{first_name}", $row['fname'], $allmessage); + $allmessage = str_replace("{last_name}", $row['lname'], $allmessage); + $allmessage = str_replace("{unsubscribe_link}", SITE_URL."unsubscribe.php?key=".$row['unsubscribe_key'], $allmessage); + $message = " + + ".$subject." + + ".$allmessage." + "; + $to_email = $row['fname'].' '.$row['lname'].' <'.$row['email'].'>'; + + SendEmail($to_email, $msubject, $message, $noreply_mail = 1); + /////////////////////////////////////////////////////////////////////////////// + } + + header ("Location: email2users.php?msg=1"); + exit(); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
"; + } + } + + + $title = "Send Email"; + require_once ("inc/header.inc.php"); + +?> + + 0) { ?> + +

Send Email

+ + +
Your message has been successfully sent!
+ + + +
+ + + + + +
+  

+   subscribed +
+ + +
+ + + + + + + + + + + + style="display:none;"> + + + + 0) { + ?> + + + + + + + + + + + + + + + + + + + + + +
From: <>   edit
Send To: + +
User ID:To: + + + + <> + +
Template: + +
Subject:
  +

Your message can use the following variables:

+

{member_id} - Member ID, {first_name} - First Name, {last_name} - Last Name, {unsubscribe_link} - Unsubscribe Link


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

Send Email

+
There are no members at this time.
+ + + \ No newline at end of file diff --git a/admin/error_log b/admin/error_log new file mode 100644 index 0000000..8249acf --- /dev/null +++ b/admin/error_log @@ -0,0 +1,19096 @@ +[19-Sep-2020 13:27:26 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 13:27:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:09:26 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:09:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:09:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:09:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:09:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:09:43 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:09:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:09:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:09:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:09:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:09:43 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:09:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:09:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:09:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:09:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:09:48 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:09:48 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:09:48 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:09:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:09:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:09:48 America/New_York] PHP Notice: Undefined variable: lics in /home/eblwlqxu/public_html/admin/settings.php on line 238 +[19-Sep-2020 14:09:48 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/eblwlqxu/public_html/admin/settings.php on line 317 +[19-Sep-2020 14:09:48 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/eblwlqxu/public_html/admin/settings.php on line 850 +[19-Sep-2020 14:09:48 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/eblwlqxu/public_html/admin/settings.php on line 906 +[19-Sep-2020 14:09:48 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/eblwlqxu/public_html/admin/settings.php on line 910 +[19-Sep-2020 14:09:48 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/eblwlqxu/public_html/admin/settings.php on line 918 +[19-Sep-2020 14:10:28 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:10:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:10:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:10:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:10:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:10:34 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:10:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:10:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:10:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:10:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:10:34 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:10:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:10:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:10:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:10:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:10:48 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:10:48 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Undefined variable: lics in /home/eblwlqxu/public_html/admin/settings.php on line 238 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/eblwlqxu/public_html/admin/settings.php on line 317 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/eblwlqxu/public_html/admin/settings.php on line 850 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/eblwlqxu/public_html/admin/settings.php on line 906 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/eblwlqxu/public_html/admin/settings.php on line 910 +[19-Sep-2020 14:10:48 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/eblwlqxu/public_html/admin/settings.php on line 918 +[19-Sep-2020 14:11:24 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:11:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:11:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:11:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:11:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:11:24 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:11:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:11:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:11:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:11:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:13:09 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:13:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:13:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:13:17 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:17 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:17 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:13:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:13:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:13:18 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:18 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:18 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:13:18 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:13:18 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:13:18 America/New_York] PHP Notice: Undefined variable: lics in /home/eblwlqxu/public_html/admin/settings.php on line 238 +[19-Sep-2020 14:13:18 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/eblwlqxu/public_html/admin/settings.php on line 317 +[19-Sep-2020 14:13:18 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/eblwlqxu/public_html/admin/settings.php on line 850 +[19-Sep-2020 14:13:18 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/eblwlqxu/public_html/admin/settings.php on line 906 +[19-Sep-2020 14:13:18 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/eblwlqxu/public_html/admin/settings.php on line 910 +[19-Sep-2020 14:13:18 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/eblwlqxu/public_html/admin/settings.php on line 918 +[19-Sep-2020 14:13:21 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:13:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:13:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:13:26 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:13:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:13:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:13:38 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:13:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:13:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:13:38 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:13:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:13:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:13:43 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:13:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:13:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:13:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[19-Sep-2020 14:14:02 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:14:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/eblwlqxu/public_html/inc/config.inc.php on line 13 +[19-Sep-2020 14:14:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/eblwlqxu/public_html/inc/config.inc.php on line 43 +[19-Sep-2020 14:14:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 200 +[19-Sep-2020 14:14:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/eblwlqxu/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:04:10 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:04:10 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:04:10 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:04:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:04:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:05:12 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:05:12 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:05:12 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:05:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:05:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:05:26 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:05:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:05:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:05:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:05:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:05:26 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:05:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:05:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:05:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:05:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:05:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:05:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:05:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:05:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:05:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:15 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:06:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:06:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:41 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:06:51 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:51 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:06:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:06:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:06:59 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:59 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:06:59 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:06:59 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:06:59 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:00 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:03 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:07:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:07:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:07:11 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:07:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:07:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:19 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:07:29 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:29 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:29 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:07:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:07:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:07:34 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 469 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 470 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/cexcoglr/public_html/admin/currency_add.php on line 511 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/cexcoglr/public_html/admin/currency_add.php on line 512 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/currency_add.php on line 518 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/currency_add.php on line 522 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/currency_add.php on line 544 +[01-Nov-2020 11:07:45 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/currency_add.php on line 545 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: image_url in /home/cexcoglr/public_html/admin/currency_add.php on line 32 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_add.php on line 127 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_add.php on line 178 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:10:15 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:25 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:10:35 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:35 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:35 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:10:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:10:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:10:35 America/New_York] PHP Notice: Undefined index: account_field_3 in /home/cexcoglr/public_html/admin/gateway_edit.php on line 139 +[01-Nov-2020 11:10:35 America/New_York] PHP Notice: Undefined index: account_field_2 in /home/cexcoglr/public_html/admin/gateway_edit.php on line 143 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:10:49 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 469 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 470 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/cexcoglr/public_html/admin/currency_add.php on line 511 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/cexcoglr/public_html/admin/currency_add.php on line 512 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/currency_add.php on line 518 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/currency_add.php on line 522 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/currency_add.php on line 544 +[01-Nov-2020 11:10:54 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/currency_add.php on line 545 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:11:03 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:11:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:11:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:11:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:11:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:11:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:11:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:11:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:11:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:11:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:11:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:11:28 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 469 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 470 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/cexcoglr/public_html/admin/currency_add.php on line 511 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/cexcoglr/public_html/admin/currency_add.php on line 512 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/currency_add.php on line 518 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/currency_add.php on line 522 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/currency_add.php on line 544 +[01-Nov-2020 11:11:35 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/currency_add.php on line 545 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined index: image_url in /home/cexcoglr/public_html/admin/currency_add.php on line 32 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 469 +[01-Nov-2020 11:13:01 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 470 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined index: image_url in /home/cexcoglr/public_html/admin/currency_add.php on line 32 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 469 +[01-Nov-2020 11:14:10 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 470 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: image_url in /home/cexcoglr/public_html/admin/currency_add.php on line 32 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_add.php on line 127 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_add.php on line 178 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:15:16 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:15:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:15:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:15:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:15:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:15:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:15:27 America/New_York] PHP Notice: Undefined index: account_id in /home/cexcoglr/public_html/admin/currency_edit.php on line 422 +[01-Nov-2020 11:15:27 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/cexcoglr/public_html/admin/currency_edit.php on line 437 +[01-Nov-2020 11:15:27 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/cexcoglr/public_html/admin/currency_edit.php on line 438 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_edit.php on line 80 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_edit.php on line 80 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_edit.php on line 127 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:15:51 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:15:52 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/exdirections.php on line 680 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: store in /home/cexcoglr/public_html/admin/exdirections.php on line 681 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: user in /home/cexcoglr/public_html/admin/exdirections.php on line 681 +[01-Nov-2020 11:16:00 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:07 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:15 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:16:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:16:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:16:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:16:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:16:15 America/New_York] PHP Notice: Undefined index: account_field_2 in /home/cexcoglr/public_html/admin/gateway_edit.php on line 110 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:18 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/exdirections.php on line 680 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: store in /home/cexcoglr/public_html/admin/exdirections.php on line 681 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: user in /home/cexcoglr/public_html/admin/exdirections.php on line 681 +[01-Nov-2020 11:16:23 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/exdirections.php on line 680 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: store in /home/cexcoglr/public_html/admin/exdirections.php on line 681 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: user in /home/cexcoglr/public_html/admin/exdirections.php on line 681 +[01-Nov-2020 11:19:52 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:20:02 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:20:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:20:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:20:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:20:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:20:02 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirections.php on line 87 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:20:03 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:20:17 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:20:17 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:20:17 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:20:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:20:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:20:17 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:20:46 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: Undefined variable: lics in /home/cexcoglr/public_html/admin/settings.php on line 238 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/cexcoglr/public_html/admin/settings.php on line 317 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/cexcoglr/public_html/admin/settings.php on line 850 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/cexcoglr/public_html/admin/settings.php on line 906 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/cexcoglr/public_html/admin/settings.php on line 910 +[01-Nov-2020 11:23:05 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/cexcoglr/public_html/admin/settings.php on line 918 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:21 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:23:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:23:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:23:25 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:25 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:25 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:23:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:23:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:32 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:44 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:23:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:23:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:23:53 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:53 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:23:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:23:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:23:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:24:06 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 469 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 470 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/cexcoglr/public_html/admin/currency_add.php on line 511 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/cexcoglr/public_html/admin/currency_add.php on line 512 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/currency_add.php on line 518 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/currency_add.php on line 522 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/currency_add.php on line 544 +[01-Nov-2020 11:24:12 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/currency_add.php on line 545 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined index: image_url in /home/cexcoglr/public_html/admin/currency_add.php on line 32 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 469 +[01-Nov-2020 11:26:09 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 470 +[01-Nov-2020 11:26:48 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:26:48 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:26:48 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:26:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:26:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:26:48 America/New_York] PHP Notice: Undefined index: image_url in /home/cexcoglr/public_html/admin/currency_add.php on line 32 +[01-Nov-2020 11:26:48 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:26:48 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:26:48 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_add.php on line 127 +[01-Nov-2020 11:26:48 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_add.php on line 178 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:26:49 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:14 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:14 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:14 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:27:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:27:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:27:25 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:25 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:25 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:27:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:27:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:26 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:39 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:39 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:39 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:27:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:27:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:27:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:28:00 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/currency_add.php on line 437 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 469 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/cexcoglr/public_html/admin/currency_add.php on line 470 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/cexcoglr/public_html/admin/currency_add.php on line 511 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/cexcoglr/public_html/admin/currency_add.php on line 512 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/currency_add.php on line 518 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/currency_add.php on line 522 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/currency_add.php on line 544 +[01-Nov-2020 11:28:03 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/currency_add.php on line 545 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: image_url in /home/cexcoglr/public_html/admin/currency_add.php on line 32 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_add.php on line 80 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_add.php on line 127 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_add.php on line 178 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[01-Nov-2020 11:29:11 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:29:27 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirections.php on line 87 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:31:15 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:35:02 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:35:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:35:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:35:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:35:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:35:02 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[01-Nov-2020 11:41:45 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[01-Nov-2020 11:41:48 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:41:48 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 11:41:48 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 11:41:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 11:41:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 11:41:48 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[01-Nov-2020 12:17:15 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:17:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:17:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 12:17:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 12:17:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 12:17:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:17:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:17:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 12:17:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 12:17:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 12:18:15 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:18:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:18:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 12:18:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 12:18:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 12:18:15 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:18:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:18:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 12:18:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 12:18:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: Undefined variable: lics in /home/cexcoglr/public_html/admin/settings.php on line 238 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/cexcoglr/public_html/admin/settings.php on line 317 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/cexcoglr/public_html/admin/settings.php on line 850 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/cexcoglr/public_html/admin/settings.php on line 906 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/cexcoglr/public_html/admin/settings.php on line 910 +[01-Nov-2020 12:23:46 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/cexcoglr/public_html/admin/settings.php on line 918 +[01-Nov-2020 12:23:55 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:23:55 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:23:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 12:23:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 12:23:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: Undefined variable: lics in /home/cexcoglr/public_html/admin/settings.php on line 238 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/cexcoglr/public_html/admin/settings.php on line 317 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/cexcoglr/public_html/admin/settings.php on line 850 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/cexcoglr/public_html/admin/settings.php on line 906 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/cexcoglr/public_html/admin/settings.php on line 910 +[01-Nov-2020 12:23:56 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/cexcoglr/public_html/admin/settings.php on line 918 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Undefined variable: lics in /home/cexcoglr/public_html/admin/settings.php on line 238 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/cexcoglr/public_html/admin/settings.php on line 317 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/cexcoglr/public_html/admin/settings.php on line 850 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/cexcoglr/public_html/admin/settings.php on line 906 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/cexcoglr/public_html/admin/settings.php on line 910 +[01-Nov-2020 12:24:22 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/cexcoglr/public_html/admin/settings.php on line 918 +[01-Nov-2020 12:24:26 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:24:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[01-Nov-2020 12:24:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[01-Nov-2020 12:24:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[01-Nov-2020 12:24:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:22:10 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:22:10 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:22:10 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:22:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:22:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:22:19 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:22:19 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:22:19 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:22:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:22:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:22:19 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:22:19 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:22:19 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:22:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:22:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 234 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 238 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: where in /home/cexcoglr/public_html/admin/exchanges.php on line 242 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: filter in /home/cexcoglr/public_html/admin/exchanges.php on line 290 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 293 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 294 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 295 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 296 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 297 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 298 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 299 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 300 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 301 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 343 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 344 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 345 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 346 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 347 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 348 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 349 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 350 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 351 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 354 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 355 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 359 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 360 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 361 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 362 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 369 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 370 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 371 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 372 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 373 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 374 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 482 +[02-Nov-2020 06:22:45 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:22:57 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 06:26:34 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:26:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:26:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:26:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:26:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:26:34 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 06:40:35 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 06:41:43 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:41:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:41:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:41:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:41:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:41:43 America/New_York] PHP Notice: Undefined index: account_id in /home/cexcoglr/public_html/admin/currency_edit.php on line 422 +[02-Nov-2020 06:41:43 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/cexcoglr/public_html/admin/currency_edit.php on line 437 +[02-Nov-2020 06:41:43 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/cexcoglr/public_html/admin/currency_edit.php on line 438 +[02-Nov-2020 06:42:15 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:42:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:42:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:42:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:42:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:42:15 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_edit.php on line 80 +[02-Nov-2020 06:42:15 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_edit.php on line 80 +[02-Nov-2020 06:42:15 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_edit.php on line 127 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 06:42:34 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:42:42 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:42:54 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 06:43:23 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 06:51:30 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 06:51:33 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:51:33 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 06:51:33 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 06:51:33 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 06:51:33 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 06:51:33 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 07:04:07 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:04:07 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:04:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:04:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:04:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:04:07 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 86 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:04:08 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 07:05:44 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:05:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:05:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:05:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:05:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:05:44 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 07:14:31 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:14:31 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:14:31 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:14:31 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:14:31 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:14:31 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 86 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:14:32 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 07:21:21 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:21:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:21:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:21:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:21:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:21:21 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 86 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:21:36 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 07:21:40 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:21:40 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:21:40 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:21:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:21:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:21:40 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 86 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:27:11 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 07:29:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:29:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:29:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:29:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:29:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:29:22 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 86 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:29:42 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 07:29:45 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:29:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:29:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:29:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:29:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:29:45 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 86 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:30:50 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 07:49:52 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:49:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:49:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:49:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:49:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:49:52 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 07:50:01 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:50:01 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:50:01 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:50:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:50:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:50:01 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 86 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:50:02 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 07:50:04 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:50:04 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:50:04 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:50:04 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:50:04 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:50:04 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 07:50:57 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:50:57 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:50:57 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:50:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:50:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:50:57 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 86 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:51:07 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 07:51:19 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:51:19 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:51:19 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:51:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:51:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:51:19 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 86 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 07:58:38 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 07:58:44 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:58:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 07:58:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 07:58:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 07:58:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 07:58:44 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 187 +[02-Nov-2020 08:10:52 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:10:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:10:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:10:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:10:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:10:52 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:11:51 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:11:51 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:11:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:11:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:11:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:11:51 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:11:52 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 08:12:08 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:12:08 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:12:08 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:12:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:12:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:12:08 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:12:30 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:12:30 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:12:30 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:12:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:12:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:12:30 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:12:31 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 08:13:28 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:13:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:13:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:13:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:13:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:13:28 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:15:34 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:15:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:15:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:15:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:15:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:15:34 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:15:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:15:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:15:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:15:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:15:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:15:50 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 08:17:06 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:06 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:06 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:17:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:17:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:17:06 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:17:09 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:17:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:17:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:17:09 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:17:24 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:17:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:17:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:17:24 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 08:17:28 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:17:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:17:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:17:28 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:17:32 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:32 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:32 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:17:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:17:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:17:32 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:17:41 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:41 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:17:41 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:17:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:17:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:17:41 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:18:16 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:18:16 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:18:16 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:18:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:18:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:18:16 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 08:19:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:19:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:19:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:19:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:19:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:19:27 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:19:30 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:19:30 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:19:30 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:19:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:19:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:19:30 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:19:36 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:19:36 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:19:36 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:19:36 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:19:36 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:19:36 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:19:45 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:19:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:19:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:19:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:19:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:19:45 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 08:20:49 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:20:49 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:20:49 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:20:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:20:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:20:49 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:20:50 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 08:21:24 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:21:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:21:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:21:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:21:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:21:24 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:22:21 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:22:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:22:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:22:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:22:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:22:21 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 08:22:37 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 08:22:44 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:22:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 08:22:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 08:22:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 08:22:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 08:22:44 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 09:37:45 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 09:37:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 09:37:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 09:37:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 09:37:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 09:37:46 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 09:37:46 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 09:37:46 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 09:37:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 09:37:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:11:07 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:11:07 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:11:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:11:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:11:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:11:19 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:11:19 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:11:19 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:11:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:11:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:11:19 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:11:19 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:11:19 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:11:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:11:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:13:03 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:13:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:13:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:13:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:13:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:13:54 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:13:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:13:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:13:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:13:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:13:54 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:13:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:13:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:13:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:13:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 234 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 238 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: where in /home/cexcoglr/public_html/admin/exchanges.php on line 242 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: filter in /home/cexcoglr/public_html/admin/exchanges.php on line 290 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 293 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 294 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 295 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 296 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 297 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 298 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 299 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 300 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 301 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 343 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 344 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 345 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 346 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 347 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 348 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 349 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 350 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 351 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 354 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 355 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 359 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 360 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 361 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 362 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 369 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 370 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 371 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 372 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 373 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 374 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 482 +[02-Nov-2020 11:14:50 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:14:53 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:14:53 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:14:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:14:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:14:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:16:35 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:16:35 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:16:35 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:16:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:16:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:18:17 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:18:17 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:18:17 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:18:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:18:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:20:00 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:20:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:20:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:20:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:20:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:21:01 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:21:01 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:21:01 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:21:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:21:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:21:42 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:21:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:21:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:21:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:21:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:23:24 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:23:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:23:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:23:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:23:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:25:06 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:25:06 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:25:06 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:25:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:25:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:26:48 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:26:48 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:26:48 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:26:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:26:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:28:12 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:28:12 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:28:12 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:28:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:28:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:28:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:28:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:28:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:28:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:28:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:28:28 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:28:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:28:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:28:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:28:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:28:30 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:28:30 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:28:30 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:28:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:28:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:28:40 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:30:12 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:30:12 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:30:12 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:30:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:30:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:31:55 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:31:55 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:31:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:31:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:31:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:33:37 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:33:37 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:33:37 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:33:37 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:33:37 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:35:20 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:35:20 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:35:20 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:35:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:35:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:36:35 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:36:42 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:36:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:36:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:36:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:36:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:36:42 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 11:36:55 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:36:55 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:36:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:36:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:36:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:36:55 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:36:56 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:37:00 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:37:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:37:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:37:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:37:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:37:00 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 11:37:02 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:37:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:37:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:37:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:37:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:38:14 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:38:14 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:38:14 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:38:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:38:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:38:44 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:38:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:38:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:38:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:38:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:38:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:38:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:38:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:38:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:38:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:38:51 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:38:51 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:38:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:38:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:38:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:39:57 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:40:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:40:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:40:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:40:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:40:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:41:19 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:41:19 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:41:19 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:41:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:41:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 234 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 238 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: where in /home/cexcoglr/public_html/admin/exchanges.php on line 242 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: filter in /home/cexcoglr/public_html/admin/exchanges.php on line 290 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 293 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 294 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 295 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 296 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 297 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 298 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 299 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 300 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 301 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 343 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 344 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 345 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 346 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 347 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 348 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 349 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 350 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 351 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 354 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 355 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 359 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 360 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 361 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 362 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 369 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 370 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 371 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 372 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 373 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 374 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 482 +[02-Nov-2020 11:41:28 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:42:10 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:42:10 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:42:10 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:42:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:42:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:42:10 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirections.php on line 87 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:13 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:42:52 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:42:59 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:42:59 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:42:59 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:42:59 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:42:59 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:43:00 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:43:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:43:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:43:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:43:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:43:01 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:43:01 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:43:01 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:43:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:43:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:43:01 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:43:01 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:43:01 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:43:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:43:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:43:02 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:43:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:43:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:43:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:43:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:44:21 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:44:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:44:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:44:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:44:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:44:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:44:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:44:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:44:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:44:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 234 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 238 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: where in /home/cexcoglr/public_html/admin/exchanges.php on line 242 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: filter in /home/cexcoglr/public_html/admin/exchanges.php on line 290 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 293 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 294 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 295 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 296 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 297 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 298 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 299 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 300 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 301 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 343 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 344 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 345 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 346 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 347 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 348 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 349 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 350 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 351 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 354 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 355 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 359 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 360 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 361 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 362 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 369 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 370 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 371 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 372 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 373 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 374 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 482 +[02-Nov-2020 11:45:26 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:45:49 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:05 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:46:05 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:46:05 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:46:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:46:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:46:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:46:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:46:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:46:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:46:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:46:28 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 11:48:12 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:48:12 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:48:12 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:48:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:48:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:48:12 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 11:48:22 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:48:25 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:48:25 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:48:25 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:48:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:48:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:48:25 America/New_York] PHP Notice: Undefined index: account_id in /home/cexcoglr/public_html/admin/currency_edit.php on line 422 +[02-Nov-2020 11:48:25 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/cexcoglr/public_html/admin/currency_edit.php on line 437 +[02-Nov-2020 11:48:25 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/cexcoglr/public_html/admin/currency_edit.php on line 438 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_edit.php on line 80 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_edit.php on line 80 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_edit.php on line 127 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 11:49:22 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 11:51:50 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:13 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:05:22 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:17:02 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: Undefined variable: lics in /home/cexcoglr/public_html/admin/settings.php on line 238 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/cexcoglr/public_html/admin/settings.php on line 317 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/cexcoglr/public_html/admin/settings.php on line 850 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/cexcoglr/public_html/admin/settings.php on line 906 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/cexcoglr/public_html/admin/settings.php on line 910 +[02-Nov-2020 12:26:36 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/cexcoglr/public_html/admin/settings.php on line 918 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Undefined variable: lics in /home/cexcoglr/public_html/admin/settings.php on line 238 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/cexcoglr/public_html/admin/settings.php on line 317 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/cexcoglr/public_html/admin/settings.php on line 850 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/cexcoglr/public_html/admin/settings.php on line 906 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/cexcoglr/public_html/admin/settings.php on line 910 +[02-Nov-2020 12:26:48 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/cexcoglr/public_html/admin/settings.php on line 918 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 231 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 232 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 233 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 234 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 235 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 237 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 238 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 239 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 240 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 242 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 243 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 244 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 245 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/users.php on line 248 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/users.php on line 249 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/users.php on line 253 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/users.php on line 254 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/users.php on line 255 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/users.php on line 256 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined variable: filter in /home/cexcoglr/public_html/admin/users.php on line 261 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/users.php on line 263 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/users.php on line 264 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/users.php on line 265 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/users.php on line 266 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined variable: sql in /home/cexcoglr/public_html/inc/functions.inc.php on line 907 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined variable: sql in /home/cexcoglr/public_html/inc/functions.inc.php on line 907 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined variable: sql in /home/cexcoglr/public_html/inc/functions.inc.php on line 907 +[02-Nov-2020 12:28:11 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:33:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:33:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:33:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:33:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:33:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:35:34 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:35:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:35:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:35:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:35:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:37:18 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:37:18 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:37:18 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:37:18 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:37:18 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:38:10 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:38:10 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:38:10 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:38:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:38:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:39:43 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:39:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:39:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:39:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:39:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:39:43 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:39:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:39:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:39:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:39:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:41:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:41:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:41:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:41:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:41:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:41:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:41:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:41:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:41:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:41:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:43:33 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:43:33 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:43:33 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:43:33 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:43:33 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:44:06 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:44:06 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:44:06 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:44:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:44:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:45:49 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:45:49 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:45:49 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:45:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:45:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:47:13 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:47:13 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:47:13 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:47:13 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:47:13 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: Undefined variable: lics in /home/cexcoglr/public_html/admin/settings.php on line 238 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/cexcoglr/public_html/admin/settings.php on line 317 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/cexcoglr/public_html/admin/settings.php on line 850 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/cexcoglr/public_html/admin/settings.php on line 906 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/cexcoglr/public_html/admin/settings.php on line 910 +[02-Nov-2020 12:47:19 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/cexcoglr/public_html/admin/settings.php on line 918 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Undefined variable: lics in /home/cexcoglr/public_html/admin/settings.php on line 238 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/cexcoglr/public_html/admin/settings.php on line 317 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/cexcoglr/public_html/admin/settings.php on line 850 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/cexcoglr/public_html/admin/settings.php on line 906 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/cexcoglr/public_html/admin/settings.php on line 910 +[02-Nov-2020 12:47:40 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/cexcoglr/public_html/admin/settings.php on line 918 +[02-Nov-2020 12:50:24 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:50:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:50:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:50:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:50:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:50:31 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:50:31 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:50:31 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:50:31 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:50:31 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:51:01 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:01 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:01 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:51:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:51:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:51:20 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:20 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:20 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:51:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:51:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:51:20 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:20 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:20 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:51:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:51:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:51:28 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:44 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:51:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:51:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:56 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:51:58 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:58 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:51:58 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:51:58 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:51:58 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:51:58 America/New_York] PHP Notice: Undefined index: account_field_2 in /home/cexcoglr/public_html/admin/gateway_edit.php on line 169 +[02-Nov-2020 12:51:58 America/New_York] PHP Notice: Undefined index: account_field_3 in /home/cexcoglr/public_html/admin/gateway_edit.php on line 174 +[02-Nov-2020 12:51:58 America/New_York] PHP Notice: Undefined index: account_field_4 in /home/cexcoglr/public_html/admin/gateway_edit.php on line 178 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:04 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:08 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:08 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:08 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:52:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:52:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:11 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:14 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:14 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:14 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:52:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:52:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:52:14 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:14 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:14 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:52:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:52:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:52:16 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:53:57 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:53:57 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:53:57 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:53:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:53:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: Undefined variable: lics in /home/cexcoglr/public_html/admin/settings.php on line 238 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/cexcoglr/public_html/admin/settings.php on line 317 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/cexcoglr/public_html/admin/settings.php on line 850 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/cexcoglr/public_html/admin/settings.php on line 906 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/cexcoglr/public_html/admin/settings.php on line 910 +[02-Nov-2020 12:54:42 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/cexcoglr/public_html/admin/settings.php on line 918 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:46 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/reports.php on line 58 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/reports.php on line 71 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/reports.php on line 95 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/reports.php on line 95 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/reports.php on line 99 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/reports.php on line 99 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/reports.php on line 99 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/reports.php on line 107 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/reports.php on line 108 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/reports.php on line 109 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/reports.php on line 110 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/reports.php on line 111 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/reports.php on line 112 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/reports.php on line 115 +[02-Nov-2020 12:54:48 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/reports.php on line 116 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined variable: urow in /home/cexcoglr/public_html/admin/email2users.php on line 162 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined variable: recipients in /home/cexcoglr/public_html/admin/email2users.php on line 167 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined variable: recipients in /home/cexcoglr/public_html/admin/email2users.php on line 169 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined variable: recipients in /home/cexcoglr/public_html/admin/email2users.php on line 171 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/email2users.php on line 171 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/email2users.php on line 176 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined variable: urow in /home/cexcoglr/public_html/admin/email2users.php on line 177 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined variable: urow in /home/cexcoglr/public_html/admin/email2users.php on line 179 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined variable: subject in /home/cexcoglr/public_html/admin/email2users.php on line 205 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined variable: allmessage in /home/cexcoglr/public_html/admin/email2users.php on line 217 +[02-Nov-2020 12:54:50 America/New_York] PHP Notice: Undefined variable: username in /home/cexcoglr/public_html/admin/email2users.php on line 227 +[02-Nov-2020 12:54:52 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:54:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:54:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:54:53 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:53 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:54:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:54:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:54:54 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:54:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:54:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/payment_methods.php on line 183 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Undefined variable: commission_sign in /home/cexcoglr/public_html/admin/payment_methods.php on line 212 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Undefined variable: commission_sign in /home/cexcoglr/public_html/admin/payment_methods.php on line 213 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/payment_methods.php on line 230 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/payment_methods.php on line 231 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Undefined variable: res_total in /home/cexcoglr/public_html/admin/payment_methods.php on line 235 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/payment_methods.php on line 307 +[02-Nov-2020 12:54:56 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/payment_methods.php on line 307 +[02-Nov-2020 12:54:58 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:58 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:54:59 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:54:59 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:54:59 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:54:59 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/reviews.php on line 139 +[02-Nov-2020 12:54:59 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/reviews.php on line 148 +[02-Nov-2020 12:54:59 America/New_York] PHP Notice: Undefined index: store in /home/cexcoglr/public_html/admin/reviews.php on line 279 +[02-Nov-2020 12:54:59 America/New_York] PHP Notice: Undefined index: user in /home/cexcoglr/public_html/admin/reviews.php on line 279 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/countries.php on line 132 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/countries.php on line 160 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined variable: irow in /home/cexcoglr/public_html/admin/countries.php on line 170 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined variable: irow in /home/cexcoglr/public_html/admin/countries.php on line 174 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined variable: irow in /home/cexcoglr/public_html/admin/countries.php on line 175 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined variable: irow in /home/cexcoglr/public_html/admin/countries.php on line 182 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined variable: irow in /home/cexcoglr/public_html/admin/countries.php on line 186 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined variable: irow in /home/cexcoglr/public_html/admin/countries.php on line 192 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined variable: irow in /home/cexcoglr/public_html/admin/countries.php on line 193 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined variable: irow in /home/cexcoglr/public_html/admin/countries.php on line 200 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/countries.php on line 214 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/countries.php on line 214 +[02-Nov-2020 12:55:01 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:55:03 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:55:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:55:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:55:04 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 12:55:08 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 234 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 238 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: where in /home/cexcoglr/public_html/admin/exchanges.php on line 242 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: filter in /home/cexcoglr/public_html/admin/exchanges.php on line 290 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 293 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 294 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 295 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 296 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 297 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 298 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 299 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 300 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 301 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 343 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 344 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 345 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 346 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 347 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 348 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 349 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 350 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 351 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 354 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 355 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 359 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 360 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 361 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 362 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 369 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 370 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 371 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 372 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 373 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 374 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 482 +[02-Nov-2020 12:55:35 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:55:41 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:41 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:41 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:55:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:55:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 231 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 232 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 233 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 234 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 235 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 237 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 238 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 239 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 240 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 242 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 243 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 244 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/users.php on line 245 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/users.php on line 248 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/users.php on line 249 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/users.php on line 253 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/users.php on line 254 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/users.php on line 255 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/users.php on line 256 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined variable: filter in /home/cexcoglr/public_html/admin/users.php on line 261 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/users.php on line 263 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/users.php on line 264 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/users.php on line 265 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/users.php on line 266 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined variable: sql in /home/cexcoglr/public_html/inc/functions.inc.php on line 907 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined variable: sql in /home/cexcoglr/public_html/inc/functions.inc.php on line 907 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined variable: sql in /home/cexcoglr/public_html/inc/functions.inc.php on line 907 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined variable: sql in /home/cexcoglr/public_html/inc/functions.inc.php on line 907 +[02-Nov-2020 12:55:57 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:56:06 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:06 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:06 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:56:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:56:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:56:07 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:07 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:56:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:56:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:24 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:56:25 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:25 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:25 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:56:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:56:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:27 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 12:56:29 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:43 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 12:56:50 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 12:56:54 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:56:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:56:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:56:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:56:54 America/New_York] PHP Notice: Undefined index: account_id in /home/cexcoglr/public_html/admin/currency_edit.php on line 422 +[02-Nov-2020 12:56:54 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/cexcoglr/public_html/admin/currency_edit.php on line 437 +[02-Nov-2020 12:56:54 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/cexcoglr/public_html/admin/currency_edit.php on line 438 +[02-Nov-2020 12:57:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:57:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:57:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:57:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:57:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:57:22 America/New_York] PHP Notice: Undefined variable: currency_name in /home/cexcoglr/public_html/admin/currency_edit.php on line 80 +[02-Nov-2020 12:57:22 America/New_York] PHP Notice: Undefined variable: currency_code in /home/cexcoglr/public_html/admin/currency_edit.php on line 80 +[02-Nov-2020 12:57:22 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/currency_edit.php on line 127 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 12:57:23 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:01:55 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:02:05 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:02:05 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:02:05 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:02:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:02:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:02:05 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:07:28 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:11:58 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined variable: row in /home/cexcoglr/public_html/admin/gateways.php on line 50 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/cexcoglr/public_html/admin/gateways.php on line 341 +[02-Nov-2020 13:12:06 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:12:06 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:12:06 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:12:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:12:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:12:09 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:12:21 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:12:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:12:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:12:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:12:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:12:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:12:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:12:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:12:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:12:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 234 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 238 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: where in /home/cexcoglr/public_html/admin/exchanges.php on line 242 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: filter in /home/cexcoglr/public_html/admin/exchanges.php on line 290 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 293 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 294 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 295 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 296 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 297 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 298 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 299 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 300 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: search_type in /home/cexcoglr/public_html/admin/exchanges.php on line 301 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 304 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 312 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 325 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: start_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: end_date in /home/cexcoglr/public_html/admin/exchanges.php on line 335 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 343 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 344 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 345 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 346 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 347 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 348 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 349 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 350 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exchanges.php on line 351 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 354 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exchanges.php on line 355 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 359 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 360 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 361 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exchanges.php on line 362 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 369 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 370 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 371 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 372 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 373 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: status_filter in /home/cexcoglr/public_html/admin/exchanges.php on line 374 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: amount in /home/cexcoglr/public_html/admin/exchanges.php on line 405 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined variable: filter_by in /home/cexcoglr/public_html/admin/exchanges.php on line 482 +[02-Nov-2020 13:14:51 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:14:56 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:15:02 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:15:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:15:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:15:02 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:15:03 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:15:22 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:15:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:15:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:15:25 America/New_York] PHP Notice: Undefined index: Response in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 81 +[02-Nov-2020 13:15:25 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:26 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:15:33 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:33 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:33 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:15:33 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:15:33 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:15:33 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:41 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:43 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:15:47 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:47 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:47 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:15:47 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:15:47 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:15:47 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:15:52 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:25:52 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:25:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:25:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:25:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:25:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:25:52 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:26:20 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:26:20 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:26:20 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:26:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:26:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:26:20 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:26:21 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:30:44 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:30:45 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:30:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:30:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:30:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:30:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:30:45 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:36:09 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 149 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/currencies.php on line 159 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 179 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 180 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 181 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 182 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 183 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/currencies.php on line 184 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 187 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/currencies.php on line 188 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 192 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 193 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 194 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/currencies.php on line 195 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 197 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 198 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined variable: store in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined variable: direction in /home/cexcoglr/public_html/admin/currencies.php on line 221 +[02-Nov-2020 13:36:10 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:39:40 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirections.php on line 87 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:40:55 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:41:01 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:01 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:01 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:41:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:41:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:41:01 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:41:20 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:20 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:20 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:41:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:41:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:41:21 America/New_York] PHP Notice: Undefined index: Response in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 81 +[02-Nov-2020 13:41:21 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:43 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:41:49 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:49 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:49 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:41:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:41:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:41:49 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:41:54 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:42:38 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:42:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:42:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:42:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:42:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:42:38 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:42:45 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:43:38 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:43:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:43:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:43:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:43:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:43:38 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:43:52 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:43:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:43:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:43:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:43:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:43:53 America/New_York] PHP Notice: Undefined index: Response in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 81 +[02-Nov-2020 13:43:53 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:43:54 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:44:34 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:44:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:44:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:44:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:44:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:44:34 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:44:40 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:44:40 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:44:40 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:44:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:44:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: Response in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 81 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:44:41 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[02-Nov-2020 13:44:44 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:44:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:44:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:44:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:44:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:44:44 America/New_York] PHP Notice: Undefined index: fee2 in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 190 +[02-Nov-2020 13:45:10 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:45:10 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:45:10 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:45:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:45:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:45:11 America/New_York] PHP Notice: Undefined index: Response in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 81 +[02-Nov-2020 13:45:11 America/New_York] PHP Notice: Undefined variable: errs in /home/cexcoglr/public_html/admin/exdirection_edit.php on line 89 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/cexcoglr/public_html/inc/config.inc.php on line 7 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: site_lang in /home/cexcoglr/public_html/inc/config.inc.php on line 37 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/cexcoglr/public_html/language/english.inc.php on line 200 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/cexcoglr/public_html/language/english.inc.php on line 202 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 269 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: qq in /home/cexcoglr/public_html/admin/exdirections.php on line 295 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 296 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_currency in /home/cexcoglr/public_html/admin/exdirections.php on line 387 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 459 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: status in /home/cexcoglr/public_html/admin/exdirections.php on line 460 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: action in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: id in /home/cexcoglr/public_html/admin/exdirections.php on line 488 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: title2 in /home/cexcoglr/public_html/admin/exdirections.php on line 494 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 528 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 529 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 530 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 532 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 533 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 535 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 536 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 537 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 538 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 539 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 540 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: column in /home/cexcoglr/public_html/admin/exdirections.php on line 541 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 544 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: order in /home/cexcoglr/public_html/admin/exdirections.php on line 545 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 549 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 550 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 551 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: show in /home/cexcoglr/public_html/admin/exdirections.php on line 552 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 554 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 555 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 564 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 577 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/cexcoglr/public_html/admin/exdirections.php on line 585 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: start_date in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: time_left in /home/cexcoglr/public_html/admin/exdirections.php on line 656 +[02-Nov-2020 13:45:12 America/New_York] PHP Notice: Undefined index: page in /home/cexcoglr/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:54:13 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:13 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:13 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:54:13 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:54:13 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:54:13 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:54:20 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:20 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:20 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:54:20 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:54:20 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:54:20 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:54:20 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 15:54:20 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:54:21 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:21 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:21 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:54:21 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:54:21 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:54:21 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:54:23 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:23 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:23 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:54:23 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:54:23 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:54:23 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:54:23 Asia/Dhaka] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 15:54:23 Asia/Dhaka] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 15:54:23 Asia/Dhaka] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 15:54:23 Asia/Dhaka] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 15:54:23 Asia/Dhaka] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 15:54:23 Asia/Dhaka] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 09:54:44 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:44 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:44 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:54:44 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:44 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:54:44 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 15:54:44 Asia/Dhaka] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 09:55:37 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:55:37 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:55:37 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:55:37 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:55:37 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:55:37 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:55:37 Asia/Dhaka] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 15:55:37 Asia/Dhaka] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 15:55:37 Asia/Dhaka] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 15:55:37 Asia/Dhaka] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 15:55:37 Asia/Dhaka] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 15:55:37 Asia/Dhaka] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 09:56:56 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:56:56 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:56:56 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:56:56 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:56:56 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:56:56 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:56:56 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 15:56:56 Asia/Dhaka] PHP Notice: Undefined variable: upload_file_name in /home/plandema/public_html/admin/settings.php on line 158 +[19-May-2022 09:56:57 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:56:57 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:56:57 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:56:57 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:56:57 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:56:57 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:56:57 Asia/Dhaka] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 15:56:57 Asia/Dhaka] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 15:56:57 Asia/Dhaka] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 15:56:57 Asia/Dhaka] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 15:56:57 Asia/Dhaka] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 15:56:57 Asia/Dhaka] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 09:56:59 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:56:59 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:56:59 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:56:59 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:56:59 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:56:59 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:57:40 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:40 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:40 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 231 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 232 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 233 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 234 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 235 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 237 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 238 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 239 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 240 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 242 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 243 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 244 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 245 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 248 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 249 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 253 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 254 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 255 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 256 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/users.php on line 261 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 263 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 264 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 265 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 266 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 15:57:40 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:57:41 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:41 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:41 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 482 +[19-May-2022 15:57:41 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:57:43 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:43 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:43 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 269 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: qq in /home/plandema/public_html/admin/exdirections.php on line 295 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 459 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 460 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/exdirections.php on line 494 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 528 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 529 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 530 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 532 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 533 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 535 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 536 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 537 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 538 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 539 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 540 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 541 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 544 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 545 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 549 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 550 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 551 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 552 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 554 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 555 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: start_date in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: time_left in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: start_date in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: time_left in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 15:57:43 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:57:45 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:45 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:45 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 149 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 159 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 179 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 180 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 181 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 182 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 183 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 184 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 187 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 188 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 192 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 193 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 194 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 195 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 197 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 198 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 15:57:45 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:57:53 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:53 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:53 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 231 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 232 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 233 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 234 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 235 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 237 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 238 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 239 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 240 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 242 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 243 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 244 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 245 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 248 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 249 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 253 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 254 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 255 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 256 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/users.php on line 261 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 263 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 264 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 265 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 266 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 15:57:53 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:57:54 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:54 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:54 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 482 +[19-May-2022 15:57:54 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:57:56 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:56 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:56 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 482 +[19-May-2022 15:57:56 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:57:57 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:57 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:57:57 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 149 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 159 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 179 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 180 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 181 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 182 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 183 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 184 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 187 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 188 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 192 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 193 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 194 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 195 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 197 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 198 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 15:57:57 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 15:57:58 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:58:02 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:02 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:02 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:58:02 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:02 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:02 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 149 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 159 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 179 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 180 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 181 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 182 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 183 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 184 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 187 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 188 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 192 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 193 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 194 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 195 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 197 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 198 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 322 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: store in /home/plandema/public_html/admin/currencies.php on line 323 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: user in /home/plandema/public_html/admin/currencies.php on line 323 +[19-May-2022 15:58:02 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:58:04 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:04 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:04 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 269 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 459 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 460 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/exdirections.php on line 494 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 528 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 529 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 530 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 532 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 533 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 535 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 536 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 537 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 538 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 539 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 540 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 541 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 544 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 545 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 549 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 550 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 551 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 552 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 554 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 555 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/exdirections.php on line 680 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: store in /home/plandema/public_html/admin/exdirections.php on line 681 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: user in /home/plandema/public_html/admin/exdirections.php on line 681 +[19-May-2022 15:58:04 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:58:05 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:05 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:05 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:05 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:05 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:05 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:58:06 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:06 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:06 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/countries.php on line 132 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/countries.php on line 160 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined variable: irow in /home/plandema/public_html/admin/countries.php on line 170 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/countries.php on line 170 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined variable: irow in /home/plandema/public_html/admin/countries.php on line 174 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/countries.php on line 174 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined variable: irow in /home/plandema/public_html/admin/countries.php on line 175 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/countries.php on line 175 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined variable: irow in /home/plandema/public_html/admin/countries.php on line 182 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/countries.php on line 182 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined variable: irow in /home/plandema/public_html/admin/countries.php on line 186 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/countries.php on line 186 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined variable: irow in /home/plandema/public_html/admin/countries.php on line 192 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/countries.php on line 192 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined variable: irow in /home/plandema/public_html/admin/countries.php on line 193 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/countries.php on line 193 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined variable: irow in /home/plandema/public_html/admin/countries.php on line 200 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/countries.php on line 200 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/countries.php on line 214 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/countries.php on line 214 +[19-May-2022 15:58:06 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:58:07 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:07 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:07 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:07 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:07 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:07 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:07 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/reviews.php on line 139 +[19-May-2022 15:58:07 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/reviews.php on line 148 +[19-May-2022 15:58:07 Asia/Dhaka] PHP Notice: Undefined index: store in /home/plandema/public_html/admin/reviews.php on line 279 +[19-May-2022 15:58:07 Asia/Dhaka] PHP Notice: Undefined index: user in /home/plandema/public_html/admin/reviews.php on line 279 +[19-May-2022 09:58:08 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:08 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:08 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/payment_methods.php on line 183 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Undefined variable: commission_sign in /home/plandema/public_html/admin/payment_methods.php on line 212 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Undefined variable: commission_sign in /home/plandema/public_html/admin/payment_methods.php on line 213 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/payment_methods.php on line 230 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/payment_methods.php on line 231 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/payment_methods.php on line 231 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Undefined variable: res_total in /home/plandema/public_html/admin/payment_methods.php on line 235 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/payment_methods.php on line 307 +[19-May-2022 15:58:08 Asia/Dhaka] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/payment_methods.php on line 307 +[19-May-2022 09:58:09 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:09 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:09 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:09 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:09 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:09 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:58:10 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:10 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:10 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:10 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:10 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:10 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:58:12 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:12 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:12 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:12 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:12 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:12 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:58:13 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:13 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:13 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined variable: urow in /home/plandema/public_html/admin/email2users.php on line 162 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/email2users.php on line 162 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined variable: recipients in /home/plandema/public_html/admin/email2users.php on line 167 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined variable: recipients in /home/plandema/public_html/admin/email2users.php on line 169 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined variable: recipients in /home/plandema/public_html/admin/email2users.php on line 171 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/email2users.php on line 171 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/email2users.php on line 176 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined variable: urow in /home/plandema/public_html/admin/email2users.php on line 177 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/email2users.php on line 177 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined variable: urow in /home/plandema/public_html/admin/email2users.php on line 179 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/email2users.php on line 179 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined variable: subject in /home/plandema/public_html/admin/email2users.php on line 205 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined variable: allmessage in /home/plandema/public_html/admin/email2users.php on line 217 +[19-May-2022 15:58:13 Asia/Dhaka] PHP Notice: Undefined variable: username in /home/plandema/public_html/admin/email2users.php on line 227 +[19-May-2022 09:58:16 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:16 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:16 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/reports.php on line 95 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/reports.php on line 95 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/reports.php on line 99 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/reports.php on line 99 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/reports.php on line 99 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reports.php on line 107 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reports.php on line 108 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reports.php on line 109 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reports.php on line 110 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reports.php on line 111 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reports.php on line 112 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/reports.php on line 115 +[19-May-2022 15:58:16 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/reports.php on line 116 +[19-May-2022 09:58:19 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:19 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:19 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 15:58:19 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 09:58:24 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:24 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:24 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:24 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:24 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:24 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:24 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:24 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:24 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:24 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:24 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:24 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 09:58:25 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:25 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:25 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 231 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 232 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 233 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 234 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 235 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 237 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 238 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 239 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 240 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 242 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 243 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 244 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 245 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 248 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 249 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 253 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 254 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 255 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 256 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/users.php on line 261 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 263 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 264 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 265 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 266 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 15:58:25 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:58:27 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:27 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:27 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:27 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:27 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:27 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:27 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:27 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:27 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:27 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:27 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:27 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 09:58:35 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:35 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:35 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:35 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:35 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:35 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:58:35 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:35 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:35 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:35 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:35 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:35 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:35 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:35 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:35 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:35 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 09:58:36 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:36 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:36 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/inc/functions.inc.php on line 1127 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 482 +[19-May-2022 15:58:36 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 09:58:40 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:40 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:40 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined variable: params in /home/plandema/public_html/admin/exchanges.php on line 96 +[19-May-2022 09:58:40 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:40 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:40 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 15:58:40 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 09:58:41 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:41 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:41 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:41 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:41 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:41 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:58:43 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:43 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:58:43 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 15:58:43 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 09:59:06 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:59:06 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 09:59:06 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 15:59:06 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 15:59:06 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 15:59:06 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:00:24 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:00:24 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:00:24 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:00:24 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:00:24 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:00:24 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:02:07 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:02:07 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:02:07 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:02:07 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:02:07 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:02:07 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:03:48 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:03:48 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:03:48 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:03:48 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:03:48 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:03:48 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:05:30 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:05:30 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:05:30 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:05:30 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:05:30 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:05:30 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:07:12 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:07:12 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:07:12 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:07:12 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:07:12 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:07:12 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:08:53 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:08:53 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:08:53 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:08:53 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:08:53 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:08:53 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:10:35 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:10:35 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:10:35 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:10:35 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:10:35 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:10:35 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:12:17 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:12:17 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:12:17 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:12:17 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:12:17 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:12:17 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:13:59 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:13:59 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:13:59 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:13:59 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:13:59 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:13:59 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:15:41 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:15:41 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:15:41 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:15:41 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:15:41 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:15:41 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:16:41 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:16:41 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:16:41 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:16:41 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:16:41 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:16:41 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:16:44 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:16:44 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:16:44 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:16:44 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:16:44 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:16:44 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:16:44 Asia/Dhaka] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 16:16:44 Asia/Dhaka] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 16:16:44 Asia/Dhaka] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 16:16:44 Asia/Dhaka] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 16:16:44 Asia/Dhaka] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 16:16:44 Asia/Dhaka] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:18:13 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:13 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:13 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 231 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 232 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 233 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 234 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 235 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 237 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 238 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 239 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 240 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 242 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 243 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 244 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 245 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 248 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 249 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 253 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 254 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 255 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 256 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/users.php on line 261 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 263 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 264 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 265 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 266 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:18:13 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:13 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:13 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:18:13 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:18:30 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:30 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:30 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:30 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:31 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 10:18:37 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:37 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:37 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:18:37 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:18:37 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:18:37 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:18:47 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:47 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:47 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:18:47 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:18:47 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:18:47 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:18:47 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:18:47 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:18:48 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:48 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:48 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:18:48 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 10:18:53 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:53 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:53 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 16:18:53 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 10:18:57 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:57 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:57 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 149 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 159 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 179 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 180 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 181 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 182 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 183 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 184 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 187 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 188 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 192 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 193 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 194 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 195 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 197 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 198 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 322 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: store in /home/plandema/public_html/admin/currencies.php on line 323 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: user in /home/plandema/public_html/admin/currencies.php on line 323 +[19-May-2022 16:18:57 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:18:59 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:59 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:18:59 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: fast_exchange in /home/plandema/public_html/admin/currency_add.php on line 469 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: fast_exchange in /home/plandema/public_html/admin/currency_add.php on line 470 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: is_crypto in /home/plandema/public_html/admin/currency_add.php on line 511 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: is_crypto in /home/plandema/public_html/admin/currency_add.php on line 512 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/currency_add.php on line 518 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/currency_add.php on line 522 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/currency_add.php on line 544 +[19-May-2022 16:18:59 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/currency_add.php on line 545 +[19-May-2022 10:20:09 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:20:09 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:20:09 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Notice: Undefined index: image_url in /home/plandema/public_html/admin/currency_add.php on line 32 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Notice: Undefined variable: currency_name in /home/plandema/public_html/admin/currency_add.php on line 80 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Notice: Undefined variable: currency_code in /home/plandema/public_html/admin/currency_add.php on line 80 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Notice: Undefined variable: errs in /home/plandema/public_html/admin/currency_add.php on line 127 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/plandema/public_html/admin/currency_add.php on line 127 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Notice: Undefined variable: errs in /home/plandema/public_html/admin/currency_add.php on line 178 +[19-May-2022 16:20:09 Asia/Dhaka] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/plandema/public_html/admin/currency_add.php on line 178 +[19-May-2022 10:20:10 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:20:10 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:20:10 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 149 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 159 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 179 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 180 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 181 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 182 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 183 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 184 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 187 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 188 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 192 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 193 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 194 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 195 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 197 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 198 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 16:20:10 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:20:15 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:20:15 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:20:15 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: fast_exchange in /home/plandema/public_html/admin/currency_add.php on line 469 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: fast_exchange in /home/plandema/public_html/admin/currency_add.php on line 470 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: is_crypto in /home/plandema/public_html/admin/currency_add.php on line 511 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: is_crypto in /home/plandema/public_html/admin/currency_add.php on line 512 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/currency_add.php on line 518 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/currency_add.php on line 522 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/currency_add.php on line 544 +[19-May-2022 16:20:15 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/currency_add.php on line 545 +[19-May-2022 10:20:28 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:20:28 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:20:28 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:20:28 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 10:21:17 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:17 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:17 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:21:17 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:21:17 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:21:17 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:21:30 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:30 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:30 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:21:30 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:21:30 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:21:30 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:21:30 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:21:30 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:21:30 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:21:30 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:21:32 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:32 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:32 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:32 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 10:21:38 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:38 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:38 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:21:38 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:21:38 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:21:38 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:21:38 Asia/Dhaka] PHP Notice: Undefined index: account_field_3 in /home/plandema/public_html/admin/gateway_edit.php on line 139 +[19-May-2022 16:21:38 Asia/Dhaka] PHP Notice: Undefined index: account_field_2 in /home/plandema/public_html/admin/gateway_edit.php on line 143 +[19-May-2022 10:21:40 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:40 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:40 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:21:40 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:40 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:40 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:40 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 10:21:44 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:44 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:44 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:21:44 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:21:44 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:21:44 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:21:44 Asia/Dhaka] PHP Notice: Undefined index: account_field_3 in /home/plandema/public_html/admin/gateway_edit.php on line 139 +[19-May-2022 16:21:44 Asia/Dhaka] PHP Notice: Undefined index: account_field_2 in /home/plandema/public_html/admin/gateway_edit.php on line 143 +[19-May-2022 10:21:56 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:56 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:21:56 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:21:56 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 10:22:01 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:01 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:01 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:22:01 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:22:01 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:22:01 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:22:01 Asia/Dhaka] PHP Notice: Undefined index: account_field_3 in /home/plandema/public_html/admin/gateway_edit.php on line 139 +[19-May-2022 16:22:01 Asia/Dhaka] PHP Notice: Undefined index: account_field_2 in /home/plandema/public_html/admin/gateway_edit.php on line 143 +[19-May-2022 10:22:11 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:11 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:11 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:22:11 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:11 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:11 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/gateways.php on line 50 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 16:22:11 Asia/Dhaka] PHP Notice: Undefined index: last_used_date in /home/plandema/public_html/admin/gateways.php on line 341 +[19-May-2022 10:22:17 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:17 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:17 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 231 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 232 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 233 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 234 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 235 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 237 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 238 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 239 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 240 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 242 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 243 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 244 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 245 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 248 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 249 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 253 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 254 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 255 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 256 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/users.php on line 261 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 263 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 264 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 265 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 266 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:22:17 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:22:18 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:18 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:18 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 149 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 159 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 179 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 180 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 181 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 182 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 183 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 184 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 187 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 188 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 192 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 193 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 194 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 195 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 197 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 198 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 16:22:18 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:22:19 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:19 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:22:19 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: row in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/currency_add.php on line 437 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: fast_exchange in /home/plandema/public_html/admin/currency_add.php on line 469 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: fast_exchange in /home/plandema/public_html/admin/currency_add.php on line 470 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: is_crypto in /home/plandema/public_html/admin/currency_add.php on line 511 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: is_crypto in /home/plandema/public_html/admin/currency_add.php on line 512 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/currency_add.php on line 518 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/currency_add.php on line 522 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/currency_add.php on line 544 +[19-May-2022 16:22:19 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/currency_add.php on line 545 +[19-May-2022 10:23:10 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:23:10 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:23:10 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: image_url in /home/plandema/public_html/admin/currency_add.php on line 32 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined variable: currency_name in /home/plandema/public_html/admin/currency_add.php on line 80 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined variable: currency_code in /home/plandema/public_html/admin/currency_add.php on line 80 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined variable: errs in /home/plandema/public_html/admin/currency_add.php on line 127 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/plandema/public_html/admin/currency_add.php on line 127 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined variable: errs in /home/plandema/public_html/admin/currency_add.php on line 178 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/plandema/public_html/admin/currency_add.php on line 178 +[19-May-2022 10:23:10 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:23:10 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:23:10 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 149 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 159 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 179 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 180 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 181 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 182 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 183 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 184 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 187 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 188 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 192 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 193 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 194 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 195 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 197 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 198 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 16:23:10 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:23:12 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:23:12 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:23:12 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 269 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: qq in /home/plandema/public_html/admin/exdirections.php on line 295 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 459 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 460 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/exdirections.php on line 494 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 528 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 529 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 530 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 532 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 533 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 535 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 536 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 537 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 538 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 539 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 540 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 541 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 544 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 545 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 549 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 550 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 551 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 552 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 554 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 555 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/exdirections.php on line 680 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: store in /home/plandema/public_html/admin/exdirections.php on line 681 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: user in /home/plandema/public_html/admin/exdirections.php on line 681 +[19-May-2022 16:23:12 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:24:43 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:24:43 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:24:43 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Notice: Undefined variable: errs in /home/plandema/public_html/admin/exdirections.php on line 87 +[19-May-2022 16:24:43 Asia/Dhaka] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/plandema/public_html/admin/exdirections.php on line 87 +[19-May-2022 10:24:44 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:24:44 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:24:44 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 269 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: qq in /home/plandema/public_html/admin/exdirections.php on line 295 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 459 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 460 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/exdirections.php on line 494 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 528 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 529 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 530 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 532 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 533 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 535 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 536 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 537 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 538 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 539 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 540 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 541 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 544 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 545 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 549 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 550 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 551 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 552 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 554 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 555 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: start_date in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: time_left in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 16:24:44 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:25:48 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:48 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:48 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 16:25:48 Asia/Dhaka] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 10:25:49 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:49 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:49 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 231 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 232 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 233 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 234 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 235 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 237 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 238 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 239 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 240 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 242 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 243 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 244 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 245 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 248 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 249 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 253 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 254 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 255 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 256 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/users.php on line 261 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 263 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 264 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 265 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 266 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:25:49 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:25:51 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:51 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:51 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:25:51 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:25:51 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:25:51 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:25:55 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:55 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:55 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:25:55 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:55 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:55 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 231 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 232 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 233 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 234 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 235 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 237 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 238 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 239 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 240 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 242 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 243 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 244 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 245 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 248 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 249 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 253 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 254 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 255 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 256 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/users.php on line 261 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 263 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 264 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 265 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 266 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:25:55 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:25:58 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:58 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:25:58 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:25:58 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:25:58 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:25:58 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:26:01 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:26:01 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:26:01 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:26:01 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:26:01 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:26:01 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 231 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 232 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 233 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 234 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 235 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 237 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 238 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 239 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 240 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 242 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 243 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 244 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/users.php on line 245 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 248 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/users.php on line 249 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 253 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 254 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 255 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/users.php on line 256 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/users.php on line 261 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 263 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 264 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 265 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/users.php on line 266 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 16:26:01 Asia/Dhaka] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:26:34 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:26:34 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:26:34 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:26:34 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:26:34 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:26:34 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:26:34 Asia/Dhaka] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 16:26:34 Asia/Dhaka] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 16:26:34 Asia/Dhaka] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 16:26:34 Asia/Dhaka] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 16:26:34 Asia/Dhaka] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 16:26:34 Asia/Dhaka] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:26:57 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:26:57 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:26:57 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 16:26:57 Asia/Dhaka] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 16:26:57 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 16:26:57 Asia/Dhaka] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 16:26:57 Asia/Dhaka] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:26:58 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:26:58 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:26:58 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:26:58 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:26:58 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:26:58 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:26:58 America/New_York] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 06:26:58 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 06:26:58 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 06:26:58 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 06:26:58 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 06:26:58 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:27:44 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:27:44 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:27:44 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:27:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:27:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:27:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:29:25 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:29:25 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:29:25 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:29:25 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:29:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:29:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:30:07 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:07 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:07 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:30:12 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:12 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:12 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Undefined index: username in /home/plandema/public_html/admin/exchange_details.php on line 137 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Undefined variable: sql in /home/plandema/public_html/inc/functions.inc.php on line 907 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Undefined index: email in /home/plandema/public_html/admin/exchange_details.php on line 175 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Undefined index: payment_type in /home/plandema/public_html/admin/exchange_details.php on line 200 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exchange_details.php on line 244 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Undefined index: payment_details in /home/plandema/public_html/admin/exchange_details.php on line 303 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Undefined index: payment_type in /home/plandema/public_html/admin/exchange_details.php on line 317 +[19-May-2022 06:30:12 America/New_York] PHP Notice: Undefined index: type in /home/plandema/public_html/admin/exchange_details.php on line 320 +[19-May-2022 10:30:15 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:15 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:15 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:15 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:15 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Undefined variable: etemplate in /home/plandema/public_html/admin/exchange_details.php on line 79 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/exchange_details.php on line 79 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Undefined variable: etemplate in /home/plandema/public_html/admin/exchange_details.php on line 80 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/exchange_details.php on line 80 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Undefined variable: trow in /home/plandema/public_html/admin/exchange_details.php on line 84 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/exchange_details.php on line 84 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Undefined index: transaction_commision in /home/plandema/public_html/admin/exchange_details.php on line 85 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Undefined variable: reason in /home/plandema/public_html/admin/exchange_details.php on line 90 +[19-May-2022 06:30:15 America/New_York] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/plandema/public_html/inc/phpmailer/PHPMailerAutoload.php on line 45 +[19-May-2022 10:30:15 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:15 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:15 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:15 America/New_York] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 482 +[19-May-2022 06:30:16 America/New_York] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:30:17 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:17 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:17 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:17 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:17 America/New_York] PHP Notice: Undefined index: payment_details in /home/plandema/public_html/admin/exchange_edit.php on line 152 +[19-May-2022 10:30:20 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:20 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:20 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:20 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:20 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:20 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:20 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:20 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:20 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:20 America/New_York] PHP Notice: Undefined variable: errs in /home/plandema/public_html/admin/exchange_edit.php on line 63 +[19-May-2022 06:30:20 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/plandema/public_html/admin/exchange_edit.php on line 63 +[19-May-2022 06:30:20 America/New_York] PHP Notice: Undefined variable: add_sql in /home/plandema/public_html/admin/exchange_edit.php on line 65 +[19-May-2022 10:30:21 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:21 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:21 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 482 +[19-May-2022 06:30:21 America/New_York] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:30:30 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:30 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:30 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:30 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:30 America/New_York] PHP Notice: Undefined index: payment_details in /home/plandema/public_html/admin/exchange_edit.php on line 152 +[19-May-2022 10:30:34 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:34 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:34 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:34 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:34 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:34 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:34 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:34 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: errs in /home/plandema/public_html/admin/exchange_edit.php on line 63 +[19-May-2022 06:30:34 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/plandema/public_html/admin/exchange_edit.php on line 63 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: add_sql in /home/plandema/public_html/admin/exchange_edit.php on line 65 +[19-May-2022 10:30:34 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:34 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:34 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 482 +[19-May-2022 06:30:34 America/New_York] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:30:45 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:45 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:45 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:30:45 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:45 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:45 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 06:30:45 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:30:51 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:51 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:51 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:51 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:30:52 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:52 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:30:52 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:30:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:30:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:30:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:30:52 America/New_York] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 06:30:52 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 06:30:52 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 06:30:52 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 06:30:52 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 06:30:52 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:31:38 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:38 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:38 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:31:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:31:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:31:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:31:39 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:39 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:39 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:31:39 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:31:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:31:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:31:39 America/New_York] PHP Notice: Undefined index: news_description in /home/plandema/public_html/admin/news_add.php on line 71 +[19-May-2022 06:31:39 America/New_York] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/news_add.php on line 81 +[19-May-2022 06:31:39 America/New_York] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/news_add.php on line 82 +[19-May-2022 10:31:46 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:46 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:46 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:31:46 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:31:46 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:31:46 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:46 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:46 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/news.php on line 127 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/news.php on line 128 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/news.php on line 129 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/news.php on line 132 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/news.php on line 133 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Undefined variable: author_id in /home/plandema/public_html/admin/news.php on line 177 +[19-May-2022 06:31:46 America/New_York] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:31:50 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:50 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:50 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/reviews.php on line 139 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/reviews.php on line 148 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 176 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 177 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 178 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 179 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 180 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 181 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/reviews.php on line 184 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/reviews.php on line 185 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/reviews.php on line 189 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/reviews.php on line 190 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/reviews.php on line 191 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/reviews.php on line 192 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined variable: user in /home/plandema/public_html/admin/reviews.php on line 194 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/reviews.php on line 195 +[19-May-2022 06:31:50 America/New_York] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:31:52 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:52 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:52 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:31:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:31:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:31:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:31:55 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:55 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:55 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:31:55 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:31:55 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:31:55 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:31:55 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:31:55 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined variable: errs in /home/plandema/public_html/admin/review_edit.php on line 35 +[19-May-2022 06:31:55 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/plandema/public_html/admin/review_edit.php on line 35 +[19-May-2022 10:31:55 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:55 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:31:55 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/reviews.php on line 139 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/reviews.php on line 148 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 176 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 177 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 178 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 179 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 180 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/reviews.php on line 181 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/reviews.php on line 184 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/reviews.php on line 185 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/reviews.php on line 189 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/reviews.php on line 190 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/reviews.php on line 191 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/reviews.php on line 192 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined variable: user in /home/plandema/public_html/admin/reviews.php on line 194 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/reviews.php on line 195 +[19-May-2022 06:31:55 America/New_York] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:33:22 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:33:22 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:33:22 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:33:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:33:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:33:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:35:04 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:35:04 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:35:04 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:35:04 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:35:04 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:35:04 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:36:19 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:36:19 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:36:19 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:36:19 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:36:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:36:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:36:19 America/New_York] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 06:36:19 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 06:36:19 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 06:36:19 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 06:36:19 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 06:36:19 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:36:21 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:36:21 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:36:21 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:36:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:36:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:36:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:36:24 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:36:24 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:36:24 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:36:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:36:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:36:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:36:24 America/New_York] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 06:36:24 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 06:36:24 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 06:36:24 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 06:36:24 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 06:36:24 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:37:06 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:37:06 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:37:06 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:37:06 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:37:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:37:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:37:06 America/New_York] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 06:37:06 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 06:37:06 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 06:37:06 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 06:37:06 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 06:37:06 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:37:23 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:37:23 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:37:23 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 06:37:23 America/New_York] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 06:37:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 06:37:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 06:37:23 America/New_York] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:37:24 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:37:24 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:37:24 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 10:37:24 UTC] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 10:37:24 UTC] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 10:37:24 UTC] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:37:24 UTC] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 10:37:24 UTC] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 10:37:24 UTC] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 10:37:24 UTC] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 10:37:24 UTC] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 10:37:24 UTC] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:38:06 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:06 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:06 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 10:38:06 UTC] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 10:38:06 UTC] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 10:38:06 UTC] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:38:06 UTC] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:38:06 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:06 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:06 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 10:38:06 GMT] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 10:38:06 GMT] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 10:38:06 GMT] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:38:06 GMT] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 10:38:06 GMT] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 10:38:06 GMT] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 10:38:06 GMT] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 10:38:06 GMT] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 10:38:06 GMT] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:38:28 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:28 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:28 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 10:38:28 GMT] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 10:38:28 GMT] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 10:38:28 GMT] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:38:28 GMT] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:38:28 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:28 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:28 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 10:38:28 Etc/Universal] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 10:38:28 Etc/Universal] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 10:38:28 Etc/Universal] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:38:28 Etc/Universal] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 10:38:28 Etc/Universal] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 10:38:28 Etc/Universal] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 10:38:28 Etc/Universal] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 10:38:28 Etc/Universal] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 10:38:28 Etc/Universal] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:38:38 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:38 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:38 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:38:38 Etc/Universal] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:38:38 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:38 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:38 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 10:38:38 Etc/Universal] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:38:55 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:55 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:55 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 10:38:55 Etc/Universal] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 10:38:55 Etc/Universal] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 10:38:55 Etc/Universal] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:38:55 Etc/Universal] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 10:38:55 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:55 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:38:55 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:38:55 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:38:55 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:38:55 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:38:55 Etc/GMT+1] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 09:38:55 Etc/GMT+1] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 09:38:55 Etc/GMT+1] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 09:38:55 Etc/GMT+1] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 09:38:55 Etc/GMT+1] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 09:38:55 Etc/GMT+1] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:39:20 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:39:20 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:39:20 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:39:20 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:39:20 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:39:20 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:39:20 Etc/GMT+1] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 09:39:20 Etc/GMT+1] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 09:39:20 Etc/GMT+1] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 09:39:20 Etc/GMT+1] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 09:39:20 Etc/GMT+1] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 09:39:20 Etc/GMT+1] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:40:14 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:40:14 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:40:14 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Undefined index: logo_file in /home/plandema/public_html/admin/settings.php on line 137 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/settings.php on line 137 +[19-May-2022 10:40:14 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:40:14 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:40:14 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 09:40:14 Etc/GMT+1] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:41:18 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:41:18 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:41:18 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:41:18 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:41:18 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:41:18 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:41:18 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:41:18 Etc/GMT+1] PHP Notice: Undefined index: logo_file in /home/plandema/public_html/admin/settings.php on line 137 +[19-May-2022 09:41:18 Etc/GMT+1] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/settings.php on line 137 +[19-May-2022 10:41:19 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:41:19 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:41:19 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:41:19 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:41:19 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:41:19 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:41:19 Etc/GMT+1] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 09:41:19 Etc/GMT+1] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 09:41:19 Etc/GMT+1] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 09:41:19 Etc/GMT+1] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 09:41:19 Etc/GMT+1] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 09:41:19 Etc/GMT+1] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:41:48 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:41:48 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:41:48 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Undefined index: logo_file in /home/plandema/public_html/admin/settings.php on line 137 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Trying to access array offset on value of type null in /home/plandema/public_html/admin/settings.php on line 137 +[19-May-2022 10:41:48 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:41:48 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:41:48 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 09:41:48 Etc/GMT+1] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:42:39 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:42:39 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:42:39 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:42:39 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:42:39 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:42:39 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 10:42:42 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:42:42 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:42:42 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:42:42 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:42:42 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:42:42 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:42:42 Etc/GMT+1] PHP Notice: Undefined variable: lics in /home/plandema/public_html/admin/settings.php on line 238 +[19-May-2022 09:42:42 Etc/GMT+1] PHP Notice: Undefined index: maintenance_msg in /home/plandema/public_html/admin/settings.php on line 317 +[19-May-2022 09:42:42 Etc/GMT+1] PHP Notice: Undefined index: email_new_withdraw in /home/plandema/public_html/admin/settings.php on line 850 +[19-May-2022 09:42:42 Etc/GMT+1] PHP Notice: Undefined index: googleplus_page in /home/plandema/public_html/admin/settings.php on line 906 +[19-May-2022 09:42:42 Etc/GMT+1] PHP Notice: Undefined index: pinterest_page in /home/plandema/public_html/admin/settings.php on line 910 +[19-May-2022 09:42:42 Etc/GMT+1] PHP Notice: Undefined index: custom_javascript in /home/plandema/public_html/admin/settings.php on line 918 +[19-May-2022 10:42:59 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:42:59 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:42:59 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 234 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 238 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: where in /home/plandema/public_html/admin/exchanges.php on line 242 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: filter in /home/plandema/public_html/admin/exchanges.php on line 290 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 293 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 294 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 295 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 296 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 297 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 298 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 299 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 300 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: search_type in /home/plandema/public_html/admin/exchanges.php on line 301 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 304 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exchanges.php on line 312 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exchanges.php on line 325 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: start_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: end_date in /home/plandema/public_html/admin/exchanges.php on line 335 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 343 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 344 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 345 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 346 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 347 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 348 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 349 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 350 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exchanges.php on line 351 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 354 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exchanges.php on line 355 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 359 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 360 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 361 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exchanges.php on line 362 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 369 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 370 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 371 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 372 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 373 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: status_filter in /home/plandema/public_html/admin/exchanges.php on line 374 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: amount in /home/plandema/public_html/admin/exchanges.php on line 405 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined variable: filter_by in /home/plandema/public_html/admin/exchanges.php on line 482 +[19-May-2022 09:42:59 Etc/GMT+1] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:43:00 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:43:00 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:43:00 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 149 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/currencies.php on line 159 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 179 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 180 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 181 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 182 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 183 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/currencies.php on line 184 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 187 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/currencies.php on line 188 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 192 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 193 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 194 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/currencies.php on line 195 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 197 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 198 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined variable: store in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined variable: direction in /home/plandema/public_html/admin/currencies.php on line 221 +[19-May-2022 09:43:00 Etc/GMT+1] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:43:01 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:43:01 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:43:01 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 269 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: qq in /home/plandema/public_html/admin/exdirections.php on line 295 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 459 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 460 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/exdirections.php on line 494 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 528 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 529 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 530 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 532 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 533 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 535 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 536 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 537 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 538 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 539 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 540 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 541 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 544 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 545 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 549 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 550 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 551 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 552 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 554 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 555 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: start_date in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: time_left in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 09:43:01 Etc/GMT+1] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[19-May-2022 10:43:33 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:43:33 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:43:33 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 35 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Notice: Undefined variable: errs in /home/plandema/public_html/admin/exdirections.php on line 87 +[19-May-2022 09:43:33 Etc/GMT+1] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/plandema/public_html/admin/exdirections.php on line 87 +[19-May-2022 10:43:34 UTC] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:43:34 UTC] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/plandema/public_html/inc/config.inc.php on line 7 +[19-May-2022 10:43:34 UTC] PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/plandema/public_html/inc/functions.inc.php on line 349 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: site_lang in /home/plandema/public_html/inc/config.inc.php on line 37 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/plandema/public_html/language/english.inc.php on line 200 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/plandema/public_html/language/english.inc.php on line 202 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 269 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: qq in /home/plandema/public_html/admin/exdirections.php on line 295 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: from_currency in /home/plandema/public_html/admin/exdirections.php on line 296 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: to_currency in /home/plandema/public_html/admin/exdirections.php on line 387 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 459 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: status in /home/plandema/public_html/admin/exdirections.php on line 460 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: action in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: id in /home/plandema/public_html/admin/exdirections.php on line 488 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: title2 in /home/plandema/public_html/admin/exdirections.php on line 494 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 528 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 529 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 530 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 532 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 533 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 535 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 536 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 537 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 538 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 539 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 540 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: column in /home/plandema/public_html/admin/exdirections.php on line 541 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 544 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: order in /home/plandema/public_html/admin/exdirections.php on line 545 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 549 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 550 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 551 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: show in /home/plandema/public_html/admin/exdirections.php on line 552 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 554 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 555 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 564 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 577 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: from_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined variable: to_filter in /home/plandema/public_html/admin/exdirections.php on line 585 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: start_date in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: time_left in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: start_date in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: time_left in /home/plandema/public_html/admin/exdirections.php on line 656 +[19-May-2022 09:43:34 Etc/GMT+1] PHP Notice: Undefined index: page in /home/plandema/public_html/inc/pagination.inc.php on line 26 +[20-May-2022 13:02:42 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:02:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:02:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:02:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:02:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:03:01 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:01 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:01 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:03:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:03:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:03:02 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:03:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:03:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:03:13 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:13 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:13 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:03:13 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:03:13 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:03:15 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:03:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:03:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:03:26 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:03:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:03:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:03:26 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:03:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:03:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:03:50 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:03:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:03:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:03:58 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:58 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:03:59 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:03:59 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:03:59 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:04:09 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:04:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:04:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:04:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:04:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:04:09 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:04:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:04:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:04:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:04:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:04:16 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:04:16 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:04:17 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:04:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:04:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:04:17 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:04:17 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:04:17 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:04:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:04:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:04:32 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:04:32 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:04:32 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:04:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:04:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:04:32 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 238 +[20-May-2022 13:04:32 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 317 +[20-May-2022 13:04:32 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 850 +[20-May-2022 13:04:32 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 906 +[20-May-2022 13:04:32 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 910 +[20-May-2022 13:04:32 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 918 +[20-May-2022 13:05:12 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:05:12 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:05:12 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:05:12 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 238 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 317 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 850 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 906 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 910 +[20-May-2022 13:05:12 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 918 +[20-May-2022 13:05:28 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:05:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:05:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:05:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:05:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:05:28 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 238 +[20-May-2022 13:05:28 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 317 +[20-May-2022 13:05:28 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 850 +[20-May-2022 13:05:28 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 906 +[20-May-2022 13:05:28 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 910 +[20-May-2022 13:05:28 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 918 +[20-May-2022 13:05:46 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:05:46 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:05:46 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:05:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:05:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:06:16 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:06:16 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 149 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 159 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 179 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 180 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 181 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 182 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 183 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 184 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 187 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 188 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 192 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 193 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 194 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 195 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 197 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 198 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 221 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 221 +[20-May-2022 13:06:16 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:06:19 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:06:19 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:06:19 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:06:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:06:19 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:06:19 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/dt.doridro.tech/admin/currency_edit.php on line 422 +[20-May-2022 13:06:19 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/dt.doridro.tech/admin/currency_edit.php on line 437 +[20-May-2022 13:06:19 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/dt.doridro.tech/admin/currency_edit.php on line 438 +[20-May-2022 13:06:39 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:06:39 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:06:39 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:06:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:06:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:06:39 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/dt.doridro.tech/admin/currency_edit.php on line 80 +[20-May-2022 13:06:39 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/dt.doridro.tech/admin/currency_edit.php on line 80 +[20-May-2022 13:06:39 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/dt.doridro.tech/admin/currency_edit.php on line 127 +[20-May-2022 13:06:39 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/dt.doridro.tech/admin/currency_edit.php on line 127 +[20-May-2022 13:06:40 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:06:40 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 149 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 159 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 179 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 180 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 181 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 182 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 183 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 184 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 187 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 188 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 192 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 193 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 194 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 195 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 197 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 198 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 221 +[20-May-2022 13:06:40 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/dt.doridro.tech/admin/currencies.php on line 221 +[20-May-2022 13:06:41 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:07:51 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:07:51 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 269 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: qq in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 295 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 459 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 460 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: id in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 494 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 528 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 529 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 530 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 532 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 533 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 535 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 536 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 537 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 538 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 539 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 540 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 541 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 544 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 545 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 549 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 550 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 551 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 552 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 554 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 555 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:07:51 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:08:18 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:18 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 269 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: qq in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 295 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 459 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 460 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: id in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 494 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 528 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 529 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 530 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 532 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 533 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 535 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 536 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 537 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 538 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 539 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 540 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 541 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 544 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 545 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 549 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 550 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 551 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 552 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 554 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 555 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:18 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 269 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: qq in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 295 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 459 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 460 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: id in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 494 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 528 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 529 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 530 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 532 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 533 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 535 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 536 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 537 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 538 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 539 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 540 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 541 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 544 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 545 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 549 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 550 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 551 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 552 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 554 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 555 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:24 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:29 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 269 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: qq in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 295 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 459 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 460 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: id in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 494 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 528 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 529 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 530 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 532 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 533 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 535 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 536 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 537 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 538 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 539 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 540 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 541 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 544 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 545 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 549 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 550 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 551 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 552 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 554 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 555 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:29 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:37 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:37 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:37 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:08:37 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:08:37 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:08:37 America/New_York] PHP Notice: Undefined index: fee2 in /home/doriyccn/dt.doridro.tech/admin/exdirection_edit.php on line 190 +[20-May-2022 13:08:54 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:08:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:08:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:08:54 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/dt.doridro.tech/admin/exdirection_edit.php on line 89 +[20-May-2022 13:08:54 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/dt.doridro.tech/admin/exdirection_edit.php on line 89 +[20-May-2022 13:08:55 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:55 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 269 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: qq in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 295 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 459 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 460 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: id in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 494 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 528 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 529 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 530 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 532 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 533 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 535 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 536 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 537 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 538 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 539 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 540 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 541 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 544 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 545 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 549 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 550 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 551 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 552 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 554 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 555 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:08:55 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:09:34 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:09:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:09:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:09:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:09:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:09:34 America/New_York] PHP Notice: Undefined index: fee2 in /home/doriyccn/dt.doridro.tech/admin/exdirection_edit.php on line 190 +[20-May-2022 13:09:40 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:09:40 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:09:40 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:09:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:09:40 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:09:40 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/dt.doridro.tech/admin/exdirection_edit.php on line 89 +[20-May-2022 13:09:40 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/dt.doridro.tech/admin/exdirection_edit.php on line 89 +[20-May-2022 13:09:41 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:09:41 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 269 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: qq in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 295 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 296 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 387 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 459 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 460 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: id in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 488 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 494 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 528 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 529 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 530 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 532 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 533 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 535 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 536 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 537 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 538 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 539 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 540 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 541 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 544 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 545 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 549 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 550 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 551 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 552 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 554 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 555 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 564 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 577 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 585 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/dt.doridro.tech/admin/exdirections.php on line 656 +[20-May-2022 13:09:41 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:18:28 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:18:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:18:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:18:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:18:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:19:03 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 234 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 238 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 242 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 290 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 293 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 294 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 295 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 296 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 297 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 298 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 299 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 300 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 301 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 304 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 304 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 335 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 335 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 343 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 344 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 345 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 346 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 347 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 348 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 349 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 350 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 351 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 354 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 355 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 359 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 360 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 361 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 362 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 369 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 370 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 371 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 372 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 373 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 374 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 482 +[20-May-2022 13:19:03 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:19:16 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:16 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:16 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:19:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:19:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:19:36 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:36 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Undefined index: username in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 137 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Undefined index: email in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 175 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Undefined index: payment_type in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 200 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 244 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Undefined index: payment_details in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 303 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Undefined index: payment_type in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 317 +[20-May-2022 13:19:36 America/New_York] PHP Notice: Undefined index: type in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 320 +[20-May-2022 13:19:39 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:39 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: etemplate in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 79 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: etemplate in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 80 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: trow in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 84 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: transaction_commision in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 85 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: reason in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 90 +[20-May-2022 13:19:39 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:39 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 234 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 238 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 242 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 290 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 293 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 294 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 295 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 296 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 297 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 298 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 299 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 300 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 301 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 304 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 304 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 335 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 335 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 343 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 344 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 345 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 346 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 347 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 348 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 349 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 350 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 351 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 354 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 355 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 359 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 360 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 361 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 362 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 369 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 370 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 371 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 372 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 373 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 374 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 482 +[20-May-2022 13:19:39 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:19:45 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:19:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:19:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:19:46 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:46 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:46 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:19:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:19:46 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:19:54 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Undefined index: username in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 137 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Undefined index: email in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 175 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Undefined index: payment_type in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 200 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 244 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Undefined index: payment_details in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 303 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Undefined index: payment_type in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 317 +[20-May-2022 13:19:54 America/New_York] PHP Notice: Undefined index: type in /home/doriyccn/dt.doridro.tech/admin/exchange_details.php on line 320 +[20-May-2022 13:19:57 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:57 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:19:57 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:19:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:19:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:19:57 America/New_York] PHP Notice: Undefined index: payment_details in /home/doriyccn/dt.doridro.tech/admin/exchange_edit.php on line 152 +[20-May-2022 13:20:00 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:20:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 234 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 238 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 242 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 290 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 293 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 294 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 295 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 296 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 297 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 298 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 299 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 300 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 301 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 304 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 304 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 335 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 335 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 343 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 344 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 345 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 346 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 347 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 348 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 349 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 350 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 351 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 354 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 355 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 359 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 360 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 361 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 362 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 369 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 370 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 371 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 372 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 373 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 374 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 482 +[20-May-2022 13:20:00 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:20:03 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:20:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:20:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:20:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:20:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:20:03 America/New_York] PHP Notice: Undefined index: payment_details in /home/doriyccn/dt.doridro.tech/admin/exchange_edit.php on line 152 +[20-May-2022 13:20:07 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:20:07 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/dt.doridro.tech/admin/exchange_edit.php on line 63 +[20-May-2022 13:20:07 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/dt.doridro.tech/admin/exchange_edit.php on line 63 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: add_sql in /home/doriyccn/dt.doridro.tech/admin/exchange_edit.php on line 65 +[20-May-2022 13:20:07 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:20:07 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 234 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 238 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 242 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 290 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 293 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 294 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 295 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 296 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 297 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 298 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 299 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 300 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 301 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 304 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 304 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 335 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 335 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 343 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 344 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 345 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 346 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 347 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 348 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 349 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 350 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 351 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 354 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 355 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 359 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 360 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 361 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 362 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 369 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 370 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 371 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 372 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 373 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 374 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 482 +[20-May-2022 13:20:07 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:20:08 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:20:08 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:20:08 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:20:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:20:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:21:51 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:21:51 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:21:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:21:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:21:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:23:33 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:23:33 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:23:33 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:23:33 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:23:33 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:25:16 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:25:16 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:25:16 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:25:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:25:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:27:02 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:27:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:27:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:27:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:27:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:28:44 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:28:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:28:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:28:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:28:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:28:55 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:28:55 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:28:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:28:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:28:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:28:55 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 238 +[20-May-2022 13:28:55 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 317 +[20-May-2022 13:28:55 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 850 +[20-May-2022 13:28:55 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 906 +[20-May-2022 13:28:55 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 910 +[20-May-2022 13:28:55 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 918 +[20-May-2022 13:29:00 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:29:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:29:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:29:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:29:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:29:00 America/New_York] PHP Notice: Undefined index: logo_file in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 137 +[20-May-2022 13:29:03 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:29:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:29:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:29:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:29:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:29:03 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 238 +[20-May-2022 13:29:03 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 317 +[20-May-2022 13:29:03 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 850 +[20-May-2022 13:29:03 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 906 +[20-May-2022 13:29:03 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 910 +[20-May-2022 13:29:03 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 918 +[20-May-2022 13:29:07 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:29:07 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:29:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:29:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:29:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:29:07 America/New_York] PHP Notice: Undefined index: logo_file in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 137 +[20-May-2022 13:29:08 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:29:08 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:29:08 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:29:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:29:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:29:08 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 238 +[20-May-2022 13:29:08 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 317 +[20-May-2022 13:29:08 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 850 +[20-May-2022 13:29:08 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 906 +[20-May-2022 13:29:08 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 910 +[20-May-2022 13:29:08 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 918 +[20-May-2022 13:30:08 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:30:08 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:30:08 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:30:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:30:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:30:08 America/New_York] PHP Notice: Undefined index: logo_file in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 137 +[20-May-2022 13:30:09 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:30:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:30:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:30:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:30:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:30:09 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 238 +[20-May-2022 13:30:09 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 317 +[20-May-2022 13:30:09 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 850 +[20-May-2022 13:30:09 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 906 +[20-May-2022 13:30:09 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 910 +[20-May-2022 13:30:09 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/dt.doridro.tech/admin/settings.php on line 918 +[20-May-2022 13:35:00 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:35:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:35:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:35:03 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:35:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:35:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:35:17 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:17 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:17 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:35:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:35:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:35:17 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:17 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:17 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:35:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:35:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:35:29 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:29 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:29 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:35:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:35:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:35:52 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:35:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:35:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:35:53 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:53 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:35:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:35:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:35:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:36:21 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:36:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 234 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 238 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 242 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 290 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 293 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 294 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 295 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 296 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 297 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 298 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 299 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 300 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 301 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 304 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 304 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:36:21 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 312 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 325 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 335 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 335 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 343 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 344 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 345 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 346 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 347 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 348 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 349 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 350 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 351 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 354 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 355 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 359 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 360 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 361 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 362 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 369 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 370 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 371 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 372 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 373 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 374 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 405 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/dt.doridro.tech/admin/exchanges.php on line 482 +[20-May-2022 13:36:22 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:36:23 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:36:23 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 231 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 232 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 233 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 234 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 235 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 237 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 238 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 239 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 240 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 242 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 243 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 244 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/users.php on line 245 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/users.php on line 248 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/users.php on line 249 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/users.php on line 253 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/users.php on line 254 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/users.php on line 255 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/users.php on line 256 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/dt.doridro.tech/admin/users.php on line 261 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/users.php on line 263 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/users.php on line 264 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/users.php on line 265 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/dt.doridro.tech/admin/users.php on line 266 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/dt.doridro.tech/inc/functions.inc.php on line 907 +[20-May-2022 13:36:23 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:37:30 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:30 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:30 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:37:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:37:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:37:32 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:32 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined variable: urow in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 162 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined variable: recipients in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 167 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined variable: recipients in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 169 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined variable: recipients in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 171 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined index: id in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 171 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined index: id in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 176 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined variable: urow in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 177 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined variable: urow in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 179 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined variable: subject in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 205 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined variable: allmessage in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 217 +[20-May-2022 13:37:32 America/New_York] PHP Notice: Undefined variable: username in /home/doriyccn/dt.doridro.tech/admin/email2users.php on line 227 +[20-May-2022 13:37:34 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 50 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:34 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/dt.doridro.tech/admin/gateways.php on line 341 +[20-May-2022 13:37:38 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 139 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 148 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 176 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 177 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 178 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 179 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 180 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 181 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 184 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 185 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 189 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 190 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 191 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 192 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined variable: user in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 194 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 195 +[20-May-2022 13:37:39 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 13:37:47 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:47 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:47 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:37:47 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:37:47 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:37:50 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:37:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:37:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:37:50 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/dt.doridro.tech/admin/review_edit.php on line 35 +[20-May-2022 13:37:50 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/dt.doridro.tech/admin/review_edit.php on line 35 +[20-May-2022 13:37:52 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 139 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 148 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 176 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 177 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 178 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 179 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 180 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 181 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 184 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 185 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 189 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 190 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 191 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 192 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined variable: user in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 194 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/dt.doridro.tech/admin/reviews.php on line 195 +[20-May-2022 13:37:53 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/dt.doridro.tech/inc/pagination.inc.php on line 26 +[20-May-2022 14:05:34 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:05:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:05:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:05:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:05:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:05:43 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:05:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:05:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:05:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:05:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:05:43 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:05:43 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:05:43 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/dt.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:05:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:05:43 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/dt.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:48:03 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:48:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:48:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:48:15 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:48:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:48:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:48:15 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:48:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:48:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:48:23 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:23 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:23 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:48:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:48:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:48:23 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:23 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:48:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:48:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:48:42 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:48:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:48:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:48:42 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 238 +[20-May-2022 14:48:42 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 317 +[20-May-2022 14:48:42 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 850 +[20-May-2022 14:48:42 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 906 +[20-May-2022 14:48:42 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 910 +[20-May-2022 14:48:42 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 918 +[20-May-2022 14:48:52 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:48:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:48:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:48:53 America/New_York] PHP Notice: Undefined variable: upload_file_name in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 158 +[20-May-2022 14:48:53 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:53 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:48:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:48:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:48:53 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 238 +[20-May-2022 14:48:53 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 317 +[20-May-2022 14:48:53 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 850 +[20-May-2022 14:48:53 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 906 +[20-May-2022 14:48:53 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 910 +[20-May-2022 14:48:53 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 918 +[20-May-2022 14:48:56 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:56 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:48:56 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:48:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:48:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:51:18 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:51:18 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:51:18 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:51:18 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:51:18 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:51:24 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:51:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:51:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:51:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:51:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:51:24 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 238 +[20-May-2022 14:51:24 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 317 +[20-May-2022 14:51:24 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 850 +[20-May-2022 14:51:24 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 906 +[20-May-2022 14:51:24 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 910 +[20-May-2022 14:51:24 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 918 +[20-May-2022 14:51:31 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:51:31 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:51:31 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:51:31 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:51:31 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:51:32 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:51:32 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:51:32 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:51:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:51:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:51:32 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 238 +[20-May-2022 14:51:32 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 317 +[20-May-2022 14:51:32 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 850 +[20-May-2022 14:51:32 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 906 +[20-May-2022 14:51:32 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 910 +[20-May-2022 14:51:32 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 918 +[20-May-2022 14:52:10 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:52:10 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:52:10 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:52:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:52:10 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[20-May-2022 14:52:11 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:52:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[20-May-2022 14:52:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[20-May-2022 14:52:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[20-May-2022 14:52:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:22:39 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:22:39 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:22:39 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:22:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:22:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:22:49 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:22:49 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:22:49 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:22:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:22:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:22:49 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:22:49 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:22:49 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:22:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:22:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:22:55 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:22:55 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:22:55 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:22:57 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:22:57 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:22:57 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:22:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:22:57 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:22:57 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:22:57 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:22:57 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:23:02 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 50 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:02 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:07 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:07 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:07 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:07 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:09 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 50 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:09 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:23:12 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:12 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 234 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 238 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 242 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 290 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 293 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 294 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 295 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 296 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 297 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 298 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 299 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 300 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 301 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 343 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 344 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 345 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 346 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 347 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 348 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 349 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 350 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 351 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 354 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 355 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 359 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 360 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 361 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 362 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 369 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 370 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 371 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 372 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 373 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 374 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 482 +[21-May-2022 01:23:12 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:23:16 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:16 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:23:16 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:23:28 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:28 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:28 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:23:28 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:23:34 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:34 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:23:34 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:23:47 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:47 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:47 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:47 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:23:47 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:24:03 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:24:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:24:03 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:24:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:24:03 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:24:34 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:24:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:24:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:24:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:24:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:24:34 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 238 +[21-May-2022 01:24:34 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 317 +[21-May-2022 01:24:34 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 850 +[21-May-2022 01:24:34 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 906 +[21-May-2022 01:24:34 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 910 +[21-May-2022 01:24:34 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 918 +[21-May-2022 01:25:00 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:25:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:25:00 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:25:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Undefined variable: lics in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 238 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Undefined index: maintenance_msg in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 317 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Undefined index: email_new_withdraw in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 850 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Undefined index: googleplus_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 906 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Undefined index: pinterest_page in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 910 +[21-May-2022 01:25:00 America/New_York] PHP Notice: Undefined index: custom_javascript in /home/doriyccn/ex.doridro.tech/admin/settings.php on line 918 +[21-May-2022 01:25:39 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:25:39 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:25:39 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:25:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:25:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:25:42 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:25:42 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 50 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:25:42 America/New_York] PHP Notice: Undefined index: last_used_date in /home/doriyccn/ex.doridro.tech/admin/gateways.php on line 341 +[21-May-2022 01:26:15 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:26:15 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 234 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 238 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 242 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 290 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 293 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 294 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 295 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 296 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 297 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 298 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 299 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 300 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 301 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 343 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 344 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 345 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 346 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 347 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 348 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 349 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 350 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 351 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 354 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 355 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 359 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 360 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 361 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 362 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 369 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 370 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 371 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 372 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 373 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 374 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 482 +[21-May-2022 01:26:15 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:26:17 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:26:17 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:26:17 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:26:20 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:26:20 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: row in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 437 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 469 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 470 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 511 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: is_crypto in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 512 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 518 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 522 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 544 +[21-May-2022 01:26:20 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 545 +[21-May-2022 01:27:09 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: image_url in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 32 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 80 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 80 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 127 +[21-May-2022 01:27:09 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 127 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 178 +[21-May-2022 01:27:09 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_add.php on line 178 +[21-May-2022 01:27:09 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:27:09 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:27:22 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:22 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:27:22 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:27:22 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:27:26 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:26 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:26 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:26 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:26 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:27:26 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:27:26 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:27:26 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:27:27 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:27:27 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:27:38 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:38 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:27:38 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:27:38 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:27:45 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:27:45 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:27:45 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:27:45 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:27:51 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:51 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:51 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:27:51 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:27:51 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:27:53 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:53 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:53 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:27:53 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:27:53 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:27:53 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:27:54 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:27:54 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:28:02 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:02 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:02 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:02 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:02 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:28:02 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:28:02 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:28:05 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:05 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:28:05 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:28:05 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:05 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:28:05 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:28:11 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:11 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:28:11 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:28:11 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:28:14 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:14 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:28:14 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:28:14 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:14 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:28:14 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:28:15 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:28:22 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:22 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:28:22 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:28:22 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:28:27 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:28:27 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:28:27 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:28:27 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:28:35 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:35 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:35 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:35 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:28:35 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:28:35 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:28:38 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:28:38 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:28:38 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:28:38 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:29:05 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:05 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:05 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:05 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:29:05 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:29:05 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:29:09 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:29:09 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:29:09 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:09 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:29:09 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:29:20 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:20 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:20 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:20 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:20 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:29:20 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:29:20 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:29:23 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:23 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:29:23 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:29:23 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:23 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:29:23 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:29:29 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:29 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:29 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:29 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[21-May-2022 01:29:29 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[21-May-2022 01:29:29 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[21-May-2022 01:29:32 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:32 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:29:32 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[21-May-2022 01:29:32 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:32 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:29:32 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:29:34 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:34 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:34 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:34 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:52 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 234 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 238 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 242 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 290 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 293 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 294 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 295 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 296 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 297 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 298 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 299 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 300 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 301 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 343 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 344 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 345 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 346 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 347 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 348 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 349 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 350 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 351 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 354 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 355 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 359 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 360 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 361 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 362 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 369 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 370 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 371 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 372 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 373 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 374 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 482 +[21-May-2022 01:29:52 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:29:53 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:53 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[21-May-2022 01:29:53 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:30:05 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:30:05 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 269 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: qq in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 295 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 459 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 460 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 488 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: id in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 488 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 494 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 528 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 529 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 530 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 532 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 533 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 535 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 536 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 537 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 538 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 539 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 540 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 541 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 544 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 545 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 549 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 550 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 551 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 552 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 554 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 555 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 585 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 585 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: Response in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 507 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:05 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:30:37 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:30:37 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:30:37 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:30:37 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:30:37 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:30:37 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 87 +[21-May-2022 01:30:37 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 87 +[21-May-2022 01:30:38 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:30:38 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 269 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: qq in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 295 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 296 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_currency in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 387 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 459 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: status in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 460 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: action in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 488 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: id in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 488 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 494 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 528 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 529 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 530 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 532 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 533 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 535 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 536 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 537 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 538 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 539 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 540 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 541 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 544 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 545 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 549 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 550 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 551 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 552 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 554 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 555 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 564 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 577 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 585 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 585 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: start_date in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: time_left in /home/doriyccn/ex.doridro.tech/admin/exdirections.php on line 656 +[21-May-2022 01:30:38 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:30:54 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:30:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 231 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 232 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 233 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 234 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 235 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 237 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 238 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 239 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 240 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 242 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 243 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 244 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 245 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/users.php on line 248 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/users.php on line 249 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/users.php on line 253 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/users.php on line 254 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/users.php on line 255 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/users.php on line 256 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/users.php on line 261 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/users.php on line 263 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/users.php on line 264 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/users.php on line 265 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/users.php on line 266 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[21-May-2022 01:30:54 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:32:53 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:32:53 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 234 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 238 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 242 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 290 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 293 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 294 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 295 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 296 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 297 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 298 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 299 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 300 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 301 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 343 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 344 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 345 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 346 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 347 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 348 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 349 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 350 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 351 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 354 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 355 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 359 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 360 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 361 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 362 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 369 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 370 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 371 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 372 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 373 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 374 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 482 +[21-May-2022 01:32:53 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:33:22 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:33:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: params in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 96 +[21-May-2022 01:33:22 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:33:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 234 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 238 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 242 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 290 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 293 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 294 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 295 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 296 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 297 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 298 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 299 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 300 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 301 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 343 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 344 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 345 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 346 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 347 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 348 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 349 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 350 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 351 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 354 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 355 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 359 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 360 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 361 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 362 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 369 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 370 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 371 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 372 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 373 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 374 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 482 +[21-May-2022 01:33:22 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:33:30 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:33:30 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: params in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 96 +[21-May-2022 01:33:30 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:33:30 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 234 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 238 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 242 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 290 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 293 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 294 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 295 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 296 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 297 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 298 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 299 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 300 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 301 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 343 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 344 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 345 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 346 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 347 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 348 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 349 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 350 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 351 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 354 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 355 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 359 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 360 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 361 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 362 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 369 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 370 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 371 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 372 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 373 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 374 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 482 +[21-May-2022 01:33:30 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:34:03 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:34:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:34:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:34:03 America/New_York] PHP Notice: Undefined index: payment_details in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 152 +[21-May-2022 01:34:05 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:05 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:05 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:34:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:34:05 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:34:05 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 63 +[21-May-2022 01:34:05 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 63 +[21-May-2022 01:34:05 America/New_York] PHP Notice: Undefined variable: add_sql in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 65 +[21-May-2022 01:34:06 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:06 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 234 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 238 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 242 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 290 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 293 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 294 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 295 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 296 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 297 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 298 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 299 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 300 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 301 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 343 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 344 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 345 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 346 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 347 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 348 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 349 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 350 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 351 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 354 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 355 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 359 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 360 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 361 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 362 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 369 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 370 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 371 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 372 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 373 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 374 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 482 +[21-May-2022 01:34:06 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:34:08 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:08 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:08 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:34:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:34:08 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:34:08 America/New_York] PHP Notice: Undefined index: payment_details in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 152 +[21-May-2022 01:34:11 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 63 +[21-May-2022 01:34:11 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 63 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: add_sql in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 65 +[21-May-2022 01:34:11 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:11 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 234 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 238 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 242 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 290 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 293 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 294 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 295 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 296 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 297 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 298 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 299 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 300 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 301 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 343 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 344 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 345 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 346 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 347 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 348 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 349 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 350 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 351 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 354 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 355 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 359 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 360 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 361 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 362 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 369 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 370 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 371 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 372 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 373 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 374 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 482 +[21-May-2022 01:34:11 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:34:31 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:31 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:31 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:34:31 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:34:31 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:34:31 America/New_York] PHP Notice: Undefined index: payment_details in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 152 +[21-May-2022 01:34:35 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:35 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 63 +[21-May-2022 01:34:35 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 63 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: add_sql in /home/doriyccn/ex.doridro.tech/admin/exchange_edit.php on line 65 +[21-May-2022 01:34:35 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:35 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 234 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 238 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: where in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 242 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 290 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 293 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 294 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 295 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 296 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 297 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 298 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 299 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 300 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 301 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 304 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: from_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 312 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: to_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 325 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: start_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: end_date in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 335 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 343 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 344 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 345 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 346 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 347 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 348 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 349 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 350 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 351 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 354 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 355 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 359 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 360 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 361 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 362 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 369 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 370 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 371 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 372 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 373 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: status_filter in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 374 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: amount in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 405 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined variable: filter_by in /home/doriyccn/ex.doridro.tech/admin/exchanges.php on line 482 +[21-May-2022 01:34:35 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[21-May-2022 01:56:00 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:56:00 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[21-May-2022 01:56:00 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[21-May-2022 01:56:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[21-May-2022 01:56:00 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:06 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:06 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:06 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:29:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:29:06 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:13 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:13 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:13 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:29:13 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:29:13 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:14 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:14 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:14 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:29:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:29:14 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:21 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:29:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:29:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:21 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:29:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:29:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:27 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 231 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 232 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 233 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 234 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 235 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 237 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 238 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 239 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 240 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 242 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 243 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 244 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/users.php on line 245 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/users.php on line 248 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/users.php on line 249 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/users.php on line 253 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/users.php on line 254 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/users.php on line 255 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/users.php on line 256 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined variable: filter in /home/doriyccn/ex.doridro.tech/admin/users.php on line 261 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/users.php on line 263 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/users.php on line 264 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/users.php on line 265 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: search_type in /home/doriyccn/ex.doridro.tech/admin/users.php on line 266 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined variable: sql in /home/doriyccn/ex.doridro.tech/inc/functions.inc.php on line 907 +[17-Jun-2022 13:29:27 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[17-Jun-2022 13:29:29 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[17-Jun-2022 13:29:29 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[17-Jun-2022 13:29:49 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:49 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:49 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:29:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:29:49 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:49 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[17-Jun-2022 13:29:49 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[17-Jun-2022 13:29:49 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[17-Jun-2022 13:29:52 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:52 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:52 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:29:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:29:52 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:52 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[17-Jun-2022 13:29:52 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[17-Jun-2022 13:29:52 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[17-Jun-2022 13:29:52 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[17-Jun-2022 13:29:53 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[17-Jun-2022 13:29:53 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[17-Jun-2022 13:30:21 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:30:21 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:30:21 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:30:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:30:21 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:30:21 America/New_York] PHP Notice: Undefined index: account_id in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 422 +[17-Jun-2022 13:30:21 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 437 +[17-Jun-2022 13:30:21 America/New_York] PHP Notice: Undefined index: fast_exchange in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 438 +[17-Jun-2022 13:30:24 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined variable: currency_name in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined variable: currency_code in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 80 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined variable: errs in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[17-Jun-2022 13:30:24 America/New_York] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/doriyccn/ex.doridro.tech/admin/currency_edit.php on line 127 +[17-Jun-2022 13:30:24 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 149 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined variable: title2 in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 159 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 179 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 180 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 181 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 182 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 183 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: column in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 184 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 187 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: order in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 188 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 192 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 193 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 194 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: show in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 195 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 197 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 198 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined variable: store in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined variable: direction in /home/doriyccn/ex.doridro.tech/admin/currencies.php on line 221 +[17-Jun-2022 13:30:24 America/New_York] PHP Notice: Undefined index: page in /home/doriyccn/ex.doridro.tech/inc/pagination.inc.php on line 26 +[17-Jun-2022 13:36:22 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:36:22 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[17-Jun-2022 13:36:22 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[17-Jun-2022 13:36:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[17-Jun-2022 13:36:22 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 10:53:25 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 10:53:25 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 10:53:25 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 10:53:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 10:53:25 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 10:53:32 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 10:53:32 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 10:53:32 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 10:53:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 10:53:32 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 10:53:33 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 10:53:33 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 10:53:33 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 10:53:33 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 10:53:33 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 10:53:39 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 10:53:39 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 10:53:39 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 10:53:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 10:53:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 10:53:39 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 10:53:39 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 10:53:39 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 10:53:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 10:53:39 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 11:20:35 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:20:35 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:20:35 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 11:20:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 11:20:35 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 11:20:44 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:20:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:20:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 11:20:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 11:20:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 11:20:45 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:20:45 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:20:45 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 11:20:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 11:20:45 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 11:20:53 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:20:53 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:20:53 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 11:20:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 11:20:53 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 11:20:54 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:20:54 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:20:54 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 11:20:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 11:20:54 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 11:21:03 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:21:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:21:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 11:21:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 11:21:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 11:21:03 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:21:03 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 11:21:03 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 11:21:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 11:21:03 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 12:01:41 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 12:01:41 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 12:01:41 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 12:01:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 12:01:41 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 12:36:16 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 12:36:16 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 12:36:16 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 12:36:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 12:36:16 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 17:17:44 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:44 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:44 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 17:17:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 17:17:44 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 17:17:50 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:50 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:50 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 17:17:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 17:17:50 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 17:17:51 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:51 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:51 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 17:17:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 17:17:51 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 17:17:55 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:55 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:55 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 17:17:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 17:17:55 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 17:17:56 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:56 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:56 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 17:17:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 17:17:56 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 17:17:58 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:58 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:17:58 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 17:17:58 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 17:17:58 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 +[18-Jul-2022 17:18:01 America/New_York] PHP Warning: Use of undefined constant SITE_TIMEZONE - assumed 'SITE_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:18:01 America/New_York] PHP Notice: date_default_timezone_set(): Timezone ID 'SITE_TIMEZONE' is invalid in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 7 +[18-Jul-2022 17:18:01 America/New_York] PHP Notice: Undefined index: site_lang in /home/doriyccn/ex.doridro.tech/inc/config.inc.php on line 37 +[18-Jul-2022 17:18:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_TITLE already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 200 +[18-Jul-2022 17:18:01 America/New_York] PHP Notice: Constant CBE1_SIGNUP_ERR2 already defined in /home/doriyccn/ex.doridro.tech/language/english.inc.php on line 202 diff --git a/admin/etemplate_add.php b/admin/etemplate_add.php new file mode 100644 index 0000000..b93c677 --- /dev/null +++ b/admin/etemplate_add.php @@ -0,0 +1,199 @@ +"; + } + } + } + + $title = "Add Email Template"; + require_once ("inc/header.inc.php"); + +?> + +

Add Email Template

+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Email Template: + +
Language: + +
Subject:
  +

You can use following variables for this email template:

+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
{first_name} - Member First Name
{username} - Member Username
{password} - Member Password
{referral} - Referral ID
{login_url} - Login Link
{first_name} - Member First Name
{username} - Member Username
{password} - Member Password
{activate_link} - Activation Link
{first_name} - Member First Name
{username} - Member Username
{password} - Member Password
{activate_link} - Activation Link
{first_name} - Member First Name
{username} - Member Username
{password} - Member Password
{login_url} - Login Link
{friend_name} - Friend First Name
{first_name} - Member First Name
{referral_link} - Referral Link
{first_name} - Member First Name
{amount} - Amount
{transaction_id} - Transaction ID
{first_name} - Member First Name
{transaction_id} - Transaction ID
{amount} - Amount
{reason} - Decline Reason
{first_name} - Member First Name
{transaction_id} - Transaction ID
{payment_type} - Payment Type
{amount} - Amount
{status} - Transaction Status
{member_id} - Member ID
{first_name} - Member First Name
{last_name} - Member Last Name
{unsubscribe_link} - Newsletter Unsubscribe Link
+

+
  + + + +
  + + + +
+
+ + \ No newline at end of file diff --git a/admin/etemplate_details.php b/admin/etemplate_details.php new file mode 100644 index 0000000..b876eda --- /dev/null +++ b/admin/etemplate_details.php @@ -0,0 +1,60 @@ + + + 0) { $row = mysqli_fetch_array($result); ?> + +

View Email Template

+ +
+ + + + + + + + + + + + + +
Language:
+ + +
+ + +
Sorry, no email template found.
+

+ + + \ No newline at end of file diff --git a/admin/etemplate_edit.php b/admin/etemplate_edit.php new file mode 100644 index 0000000..3733adf --- /dev/null +++ b/admin/etemplate_edit.php @@ -0,0 +1,186 @@ +'$etemplate_id' AND language='$language' AND email_name='$email_name' AND email_name!='email2users'"); + if (mysqli_num_rows($check_query) != 0) + { + $errs[] = "Sorry, that email template already exists"; + } + } + + if (count($errs) == 0) + { + $sql = "UPDATE exchangerix_email_templates SET language='$language', email_name='$email_name', email_subject='$email_subject', email_message='$email_message', modified=NOW() WHERE template_id='$etemplate_id' LIMIT 1"; + + if (smart_mysql_query($sql)) + { + header("Location: etemplates.php?msg=updated"); + exit(); + } + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
"; + } + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) { $eid = (int)$_GET['id']; } else { $eid = (int)$_POST['eid']; } + + $query = "SELECT * FROM exchangerix_email_templates WHERE template_id='$eid' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + + $title = "Edit Email Template"; + require_once ("inc/header.inc.php"); + +?> + + 0) { + + $row = mysqli_fetch_array($result); + + ?> + +

+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + + +
language:
Subject:
  +

You can use following variables for this email template:

+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
{first_name} - Member First Name
{username} - Member Username
{password} - Member Password
{referral} - Referral ID
{login_url} - Login Link
{first_name} - Member First Name
{username} - Member Username
{password} - Member Password
{activate_link} - Activation Link
{first_name} - Member First Name
{username} - Member Username
{password} - Member Password
{activate_link} - Activation Link
{first_name} - Member First Name
{username} - Member Username
{password} - Member Password
{login_url} - Login Link
{friend_name} - Friend First Name
{first_name} - Member First Name
{referral_link} - Referral Link
{first_name} - Member First Name
{transaction_id} - Transaction ID
{amount} - Amount
{first_name} - Member First Name
{transaction_id} - Transaction ID
{amount} - Amount
{reason} - Decline Reason
{first_name} - Member First Name
{transaction_id} - Transaction ID
{payment_type} - Payment Type
{amount} - Amount
{status} - Transaction Status
{member_id} - Member ID
{first_name} - Member First Name
{last_name} - Member Last Name
{unsubscribe_link} - Newsletter Unsubscribe Link
+

+
  + + + +
  + + + + + +   + 8) { ?> + + +
+
+ + +
Sorry, no email template found.
+

+ + + \ No newline at end of file diff --git a/admin/etemplates.php b/admin/etemplates.php new file mode 100644 index 0000000..ba48e52 --- /dev/null +++ b/admin/etemplates.php @@ -0,0 +1,109 @@ + 8 && $_GET['action'] == "delete") + { + $etemplate_id = (int)$_GET['id']; + smart_mysql_query("DELETE FROM exchangerix_email_templates WHERE template_id='$etemplate_id'"); + header("Location: etemplates.php?msg=deleted"); + exit(); + } + + $query = "SELECT * FROM exchangerix_email_templates WHERE email_name!='email2users' GROUP BY email_name ORDER BY template_id"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_email_templates WHERE email_name='email2users' ORDER BY template_id"; + $result2 = smart_mysql_query($query2); + $total2 = mysqli_num_rows($result2); + + $cc = $cc2 = 0; + + $title = "Email Templates"; + require_once ("inc/header.inc.php"); + +?> + + + +

Email Templates

+ + +
+ +
+ + + + + + + + + 0) { while ($row = mysqli_fetch_array($result)) { $cc++; ?> + "> + + + + + + 0) { while ($row2 = mysqli_fetch_array($result2)) { $cc2++; ?> + "> + + + + + + + + + + +
 Email Template Language
  + 0) + { + while ($lrow = mysqli_fetch_array($lresult)) + { + echo "".$lrow['language'].""; + //if ($lrow['template_id'] > 8) echo "\"Delete\""; + echo "
"; + } + } + ?> +
+ +
+
+ Edit + Delete +
Sorry, no email templates found.
+ + + \ No newline at end of file diff --git a/admin/exchange_details.php b/admin/exchange_details.php new file mode 100644 index 0000000..92993f3 --- /dev/null +++ b/admin/exchange_details.php @@ -0,0 +1,332 @@ + 0) { + + $row = mysqli_fetch_array($result); + + $send_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='".(int)$row['from_currency_id']."' LIMIT 1")); + $receive_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='".(int)$row['to_currency_id']."' LIMIT 1")); + + + if (isset($_POST['action']) && $_POST['action'] == "change_status") + { + unset($errors); + $errors = array(); + + $exchange_id = (int)$row['exchange_id']; + $send_notification = (int)getPostParameter('send_notification'); + $status = mysqli_real_escape_string($conn, getPostParameter('status')); + + if (in_array($status, $statuses_arr)) + { + if ($status == "confirmed") + { + //smart_mysql_query("UPDATE exchangerix_currencies SET total_exchanges=total_exchanges+1 WHERE currency_id='".(int)$trow['from_currency_id']."' LIMIT 1"); + smart_mysql_query("UPDATE exchangerix_exdirections SET today_exchanges=today_exchanges+1, total_exchanges=total_exchanges+1, last_exchange_date=NOW() WHERE exdirection_id='".(int)$row['exdirection_id']."' LIMIT 1"); + //smart_mysql_query("UPDATE exchangerix_settings SET setting_value='' WHERE setting_key='total_exchanges_usd' LIMIT 1"); + //dev + }elseif ($status == "declined" || $status == "cancelled") + { + // update reserve + smart_mysql_query("UPDATE exchangerix_currencies SET reserve+='".floatval($row['receive_amount'])."', status='pending' WHERE currency_id='".(int)$row['to_currency_id']."' LIMIT 1"); + } + + smart_mysql_query("UPDATE exchangerix_exchanges SET status='$status', updated=NOW(), process_date=NOW() WHERE exchange_id='$exchange_id' LIMIT 1"); + } + + if ($send_notification == 1) + { + //////////////////////////////// Send notification //////////////////////// + if ($status == "paid") + { + $etemplate = GetEmailTemplate('payment_success'); + } + elseif ($status == "declined") + { + $etemplate = GetEmailTemplate('payment_declined'); + } + + $esubject = $etemplate['email_subject']; + $emessage = $etemplate['email_message']; + + $emessage = str_replace("{transaction_id}", $row['reference_id'], $emessage); + $emessage = str_replace("{first_name}", $row['client_details'], $emessage); + if ($trow['transaction_commision'] != "0.0000") + $amount = $row['receive_amount']-$row['transaction_commision']; + else + $amount = $row['receive_amount']; + //$emessage = str_replace("{amount}", DisplayMoney($amount), $emessage); + //$row['exchange_amount'] + $emessage = str_replace("{reason}", $reason, $emessage); + $to_email = $row['client_email'].' <'.$row['client_email'].'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1); + } + + header("Location: exchanges.php?msg=updated"); + exit(); + } + //////////////// + + $title = "Exchange Details"; + require_once ("inc/header.inc.php"); + +?> + +

Exchange Details   #

+ + + +
+
+ + + + + + + + + + + 0) { ?> + + + + + + + + + + + + + + + + + + + + + + + + 0) { ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ID:
Reference ID:
Member:
Exchanges:
User: Visitor
Country:
Referral ID: (ID: )
Comment:
Created:
Updated:
Process Date:
Status: + confirmed"; break; + case "pending": echo "awaiting confirmation"; break; + case "waiting": echo "waiting for payment"; break; + case "declined": echo " declined"; break; + case "failed": echo "failed"; break; + case "cancelled": echo " cancelled"; break; + case "timeout": echo " timeout"; break; + case "request": echo "awaiting approval"; break; + case "paid": echo "paid"; break; + default: echo "".$row['status'].""; break; + } + ?> +
+
+ + +
+
+ + + + +
+ +

Change Status

+ + +

+ + + +

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

 

+ Exchange Rate: = + +
Exchange Fee: + +

+
+ + +
+
+

Payment Details

+
+
+
+   +

Payment Proof

+
+
+
+

Receive to Account

+
+   +

+
+
+
+ + +
+
Payment Details + +
+
+ + +
+
+ + +

+ + Proceed Exchange + + Edit Exchange + + Go Back + Delete +

+ + +

Exchange Details

+
Sorry, no exchange found.
+

+ + + \ No newline at end of file diff --git a/admin/exchange_edit.php b/admin/exchange_edit.php new file mode 100644 index 0000000..f1cd07a --- /dev/null +++ b/admin/exchange_edit.php @@ -0,0 +1,211 @@ + 0)) + $errs[] = "Please enter correct order total amount"; + else + $add_sql = "transaction_amount='$order_total',"; + } + + switch ($status) + { + case "confirmed": $status="confirmed"; break; + case "pending": $status="pending"; break; + case "declined": $status="declined"; break; + default: $status="unknown"; break; + }*/ + } + + if (count($errs) == 0) + { + $sql = "UPDATE exchangerix_exchanges SET ".$add_sql." exchange_amount='$amount_send', receive_amount='$amount_receive', status='$status', reason='$reason', updated=NOW() WHERE exchange_id='$exchange_id' LIMIT 1"; + $result = smart_mysql_query($sql); + + if ($notification == 1) + { + $tsql = "SELECT * FROM exchangerix_exchanges WHERE exchange_id='$exchange_id' LIMIT 1"; + $tresult = smart_mysql_query($tsql); + $ttotal = mysqli_num_rows($tresult); + + if ($ttotal > 0) + { + $trow = mysqli_fetch_array($tresult); + } + + // send email /////////////////////////////////////////////////////////////// + /*$etemplate = GetEmailTemplate('manual_credit'); + $esubject = $etemplate['email_subject']; + $emessage = $etemplate['email_message']; + + $emessage = str_replace("{transaction_id}", $reference_id, $emessage); + $emessage = str_replace("{first_name}", GetUsername($trow['user_id'], $type = 3), $emessage); + $emessage = str_replace("{payment_type}", $trow['payment_type'], $emessage); + $emessage = str_replace("{amount}", DisplayMoney($amount), $emessage); + $emessage = str_replace("{status}", $status, $emessage); + $emessage = str_replace("{reason}", $reason, $emessage); + $to_email = $urow['fname'].' '.$urow['lname'].' <'.$urow['email'].'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1);*/ + ////////////////////////////////////////////////////////////////////////////// + } + + header("Location: exchanges.php?msg=updated"); + exit(); + } + else + { + $errormsg = ""; + foreach ($errs as $errorname) + $errormsg .= $errorname."
"; + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) { $id = (int)$_GET['id']; } elseif (isset($_POST['tid']) && is_numeric($_POST['tid'])) { $id = (int)$_POST['tid']; } + if (isset($id) && is_integer($id)) + { + $query = "SELECT *, DATE_FORMAT(created, '".DATE_FORMAT." %h:%i %p') AS payment_date FROM exchangerix_exchanges WHERE exchange_id='$id' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + } + + $title = "Edit Exchange"; + require_once ("inc/header.inc.php"); + +?> + +

Edit Exchange

+ + 0) { $row = mysqli_fetch_array($result); ?> + + +
+ + +
+ + + + + + + 0) { ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Reference ID:
Member:
Member:Visitor
Payment Details:
Amount Send:
Amount Receive:
Created:
Comment:
Status: + +
  +
+ +
+
  + + + + +
+
+ + +
Sorry, no payment found.
+

+ + + \ No newline at end of file diff --git a/admin/exchanges.php b/admin/exchanges.php new file mode 100644 index 0000000..d8fe2b1 --- /dev/null +++ b/admin/exchanges.php @@ -0,0 +1,497 @@ + 0) + $results_per_page = (int)$_GET['show']; + else + $results_per_page = 20; + + + // Confirm payments // + if (isset($_POST['xconfirm']) && $_POST['xconfirm'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $pid = (int)$v; + ConfirmPayment($pid); + } + + header("Location: exchanges.php?".$params."msg=confirmed"); + exit(); + } + } + + + // Decline payments // + if (isset($_POST['decline']) && $_POST['decline'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $pid = (int)$v; + DeclinePayment($pid); + } + + header("Location: exchanges.php?".$params."msg=declined"); + exit(); + } + } + + + // Delete payments // + if (isset($_POST['delete']) && $_POST['delete'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $pid = (int)$v; + //DeletePayment($pid); + smart_mysql_query("DELETE FROM exchangerix_exchanges WHERE exchange_id='$pid'"); + } + + header("Location: exchanges.php?".$params."msg=deleted"); + exit(); + } + } + + ////////////////// filter ////////////////////// + if (isset($_GET['column']) && $_GET['column'] != "") + { + switch ($_GET['column']) + { + case "username": $rrorder = "user_id"; break; + case "email": $rrorder = "client_email"; break; + case "rate": $rrorder = "exchange_rate"; break; + case "from_currency": $rrorder = "from_currency"; break; + case "from_amount": $rrorder = "exchange_amount"; break; + case "to_amount": $rrorder = "receive_amount"; + case "to_currency": $rrorder = "to_currency"; break; + case "amount": $rrorder = "amount"; break; + case "status": $rrorder = "status"; break; + case "ids": $rrorder = "exchange_id"; break; + default: $rrorder = "exchange_id"; break; + } + } + else + { + $rrorder = "exchange_id"; + } + + if (isset($_GET['order']) && $_GET['order'] != "") + { + switch ($_GET['order']) + { + case "asc": $rorder = "asc"; break; + case "desc": $rorder = "desc"; break; + default: $rorder = "asc"; break; + } + } + else + { + $rorder = "desc"; + } + + if (isset($_GET['action']) && $_GET['action'] == "filter") + { + $action = "filter"; + $filter_by = ""; + $filter = mysqli_real_escape_string($conn, trim(getGetParameter('filter'))); + $start_date = mysqli_real_escape_string($conn, getGetParameter('start_date')); + $start_date = substr($start_date, 0, 16); + $end_date = mysqli_real_escape_string($conn, getGetParameter('end_date')); + $end_date = substr($end_date, 0, 16); + + switch ($filter) + { + case PAYMENT_TYPE_WITHDRAWAL: $filter = "withdrawal"; break; + case PAYMENT_TYPE_FBONUS: $filter = "friend_bonus"; break; + case PAYMENT_TYPE_SBONUS: $filter = "signup_bonus"; break; + case PAYMENT_TYPE_RCOMMISSION: $filter = "referral_commission"; break; + } + + if ($filter != "") + { + $search_by = " (reference_id='$filter' OR payment_type='$filter')"; + + switch ($_GET['search_type']) + { + case "reference_id": $search_by = "reference_id='".$filter."'"; break; + case "member": $search_by = "user_id='".$filter."'"; break; + case "email": $search_by = "client_email LIKE '%".$filter."%'"; break; + case "send_account": $search_by = "send_account='".$filter."'"; break; + case "receive_account": $search_by = "receive_account='".$filter."'"; break; + //case "amount": $filter = preg_replace("/[^0-9.]/", "", $filter); $search_by = "amount='".$filter."'"; break; + case "send_amount": $filter = preg_replace("/[^0-9.]/", "", $filter); $search_by = "send_amount='".$filter."'"; break; + case "receive_amount": $filter = preg_replace("/[^0-9.]/", "", $filter); $search_by = "receive_amount='".$filter."'"; break; + case "payment_type": $search_by = "payment_type='".$filter."'"; break; + } + + $filter_by .= " AND ".$search_by; + } + + if ($start_date != "") $filter_by .= " AND created>='$start_date 00:00:00'"; + if ($end_date != "") $filter_by .= " AND created<='$end_date 23:59:59'"; + $totitle = " - Search Results"; + } + /////////////////////////////////////////////////////// + + if (isset($_GET['period']) && $_GET['period'] != "") + { + $today = date("Y-m-d"); + $yesterday = date("Y-m-d", mktime(0, 0, 0, date("m") , date("d") - 1, date("Y"))); + + if ($_GET['period'] == "today") { $filter_by .= " AND date(created)='$today' "; $totitle2 = "Today's"; } + if ($_GET['period'] == "yesterday") { $filter_by .= " AND date(created)='$yesterday' "; $totitle2 = "Yesterday's"; } + if ($_GET['period'] == "7days") { $filter_by .= " AND date_sub(curdate(), interval 7 day) <= created "; $totitle2 = "Last 7 Days"; } + if ($_GET['period'] == "30days") { $filter_by .= " AND date_sub(curdate(), interval 30 day) <= created "; $totitle2 = "Last 30 Days"; } + } + + if (isset($_GET['from_filter']) && is_numeric($_GET['from_filter'])) + { + $from_filter = (int)$_GET['from_filter']; + $filter_by .= " AND from_currency_id='$from_filter' "; + $title2 .= GetCurrencyName($from_filter); + $totitle2 .= " ".$title2; + } + + if (isset($_GET['to_filter']) && is_numeric($_GET['to_filter'])) + { + $to_filter = (int)$_GET['to_filter']; + $filter_by .= " AND to_currency_id='$to_filter' "; + $title2 = GetCurrencyName($to_filter); + $totitle2 .= " ".$title2; + } + + if (isset($_GET['ft_filter']) && is_numeric($_GET['ft_filter'])) + { + $ft_filter = (int)$_GET['ft_filter']; + $filter_by .= " AND (from_currency_id='$ft_filter' OR to_currency_id='$ft_filter') "; + $title2 = GetCurrencyName($ft_filter); + $totitle2 .= " ".$title2; + } + + if (isset($_GET['status_filter']) && $_GET['status_filter'] != "") + { + $status_filter = mysqli_real_escape_string($conn, trim(getGetParameter('status_filter'))); + $status_filter = substr($status_filter, 0, 16); + $filter_by .= " AND status='$status_filter' "; + //$title2 .= GetCurrencyName($status_filter); + } + + if (isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] > 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + + //smart_mysql_query("UPDATE exchangerix_exchanges SET viewed='1' WHERE viewed='0'"); //dev + //smart_mysql_query("UPDATE exchangerix_exchanges SET status='timeout' WHERE created != '0000-00-00 00:00:00' AND created <= NOW()"); + smart_mysql_query("UPDATE exchangerix_exchanges SET status='timeout', updated=NOW() WHERE (created < (NOW() - INTERVAL 60 MINUTE) AND status='waiting')"); + + + $query = "SELECT *, DATE_FORMAT(created, '".DATE_FORMAT."
%h:%i %p') AS payment_date FROM exchangerix_exchanges WHERE status!='request' $filter_by ORDER BY $rrorder $rorder LIMIT $from, $results_per_page"; + $result = smart_mysql_query($query); + $total_on_page = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_exchanges WHERE status!='request'".$filter_by; + $result2 = smart_mysql_query($query2); + $total = mysqli_num_rows($result2); + + $total_declined = mysqli_num_rows(smart_mysql_query("SELECT * FROM exchangerix_exchanges WHERE 1=1 ".$where." AND (status='cancelled' OR status='timeout' OR status='declined')")); + + // delete all calcelled payments // + if (isset($_GET['act']) && $_GET['act'] == "delete_cancelled") + { + smart_mysql_query("DELETE FROM exchangerix_exchanges WHERE status='expired' OR status='timeout' OR status='cancelled'"); + header("Location: exchanges.php?msg=exp_deleted"); + exit(); + } + + $cc = 0; + + $title = "Exchanges"; + require_once ("inc/header.inc.php"); + +?> + +
+ 0) { ?> Delete not completed exchanges    + Search + 0) { ?> + Export + +
+ +

Exchanges 0) { ?>

+ + +
+ +
+ + +
+ + + + + + + + + +
+
+ Search for: + in +   + Date: - +
+ Send Direction: +   Receive Direction: + + + + Cancel Search +
+
+ Sort by: + + +   Results: + + +
+ Status: + + Delete Filter +
+
+ 0) { ?>Showing - of    +
+
+ + + 0) { $total_amount = 0; ?> +
+
+ + + + + + + + + + + + + + + + " > + + + + + + + + + + + + + + + + +
IDReference IDDateExchange DirectionAmount
Send Receive
UserStatusActions
+ + + + + +   +
rate: = +
+
+   0) { ?> +
+
payment proof +
+ confirmed"; break; + case "pending": echo " awaiting"; break; + case "waiting": echo " waiting"; break; + case "declined": echo " declined"; break; + case "failed": echo " failed"; break; + case "cancelled": echo " cancelled"; break; + case "timeout": echo " timeout"; break; + case "request": echo " awaiting approval"; break; + case "paid": echo " paid"; break; + default: echo "".$row['status'].""; break; + } + ?> + + + + + +
+ + + +
+ + + +
+
+ + + +
Sorry, no exchanges found for your search criteria.
+ +
There are currently no exchanges.
+ + + + \ No newline at end of file diff --git a/admin/exdirection_details.php b/admin/exdirection_details.php new file mode 100644 index 0000000..715319a --- /dev/null +++ b/admin/exdirection_details.php @@ -0,0 +1,264 @@ + + + 0) { $row = mysqli_fetch_array($result); ?> + +

+ +
+ +

Exchanges

+ + + + + + +
+
+

+ success +
+
+
+

+ pendning +
+
+
+

+ failed +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Type: + + Manual Proccessing + + Automatic Proccessing + +
Margin:%
Exchange Rate: +

=

+ + market price: = + +
Auto Rate: + + + + + +
Hidden for unregistered: + +
Allow affiliate commission: + + + + + +
Min. Amount:
Max. Amount:
User Instructions: show description
Description: show description
Meta Keywords:
Status: + ".$row['status'].""; break; + case "inactive": echo "".$row['status'].""; break; + default: echo "".$row['status'].""; break; + } + ?> +
+
+

Exchanges Stats

+ + + + + + + + +
+
+

+ exchanges today +

+
+
+

+ total exchanges +

+
+
+

+ amount sent +

+
+
+

+ amount received +

+
+
+
+ + +

+ Edit Direction + Go Back + Delete +

+ + +

Currency not found

+
Sorry, no exchange direction found.
+

+ + + \ No newline at end of file diff --git a/admin/exdirection_edit.php b/admin/exdirection_edit.php new file mode 100644 index 0000000..373fba8 --- /dev/null +++ b/admin/exdirection_edit.php @@ -0,0 +1,345 @@ + 0) + { + $errs[] = "Sorry, current exchange direction is exists"; + } + + if ((isset($from_rate) && $from_rate != "" && !is_numeric($from_rate)) || (isset($to_rate) && $to_rate != "" && !is_numeric($to_rate))) + $errs[] = "Please enter correct exchange rate (numbers only)"; + + if (isset($fee) && $fee != "" && !is_numeric($fee)) + $errs[] = "Please enter correct margin value"; + + /*if (isset($fee) && $fee != "" && !is_numeric($fee) && !strstr($fee, "%")) + $errs[] = "Please enter correct fee value";*/ + + if (isset($min_amount) && $min_amount != "" && !is_numeric($min_amount)) + $errs[] = "Please enter correct minimum exchange value"; + + if (isset($max_amount) && $max_amount != "" && !is_numeric($max_amount)) + $errs[] = "Please enter correct maximum exchange value"; + + if (isset($min_amount) && is_numeric($min_amount) && isset($max_amount) && is_numeric($max_amount) && $min_amount>$max_amount) + $errs[] = "Max exchange value cant be less than min value"; + + if ($auto_rate == 1) + { + $fsym = GetCurrencyCode($from_currency); + $tsyms = GetCurrencyCode($to_currency); + $url = "https://min-api.cryptocompare.com/data/price?fsym=".$fsym."&tsyms=".$tsyms; + $json = json_decode(file_get_contents($url), true); + + if ($json["Response"] == "Error") + { + $errs[] = "Sorry, auto price update not available for these currencies"; + } + } + + } + + if (count($errs) == 0) + { + $exchange_rate = $to_rate/$from_rate; + + smart_mysql_query("UPDATE exchangerix_exdirections SET from_currency='$from_currency', to_currency='$to_currency', from_rate='$from_rate', to_rate='$to_rate', exchange_rate='$exchange_rate', auto_rate='$auto_rate', fee='$fee', min_amount='$min_amount', max_amount='$max_amount', user_instructions='$instructions', description='$description', is_manual='$is_manual', hide_from_visitors='$hide_from_visitors', allow_affiliate='$allow_affiliate', sort_order='$sort_order', status='$status', updated=NOW() WHERE exdirection_id='$did' LIMIT 1"); + + header("Location: exdirections.php?msg=updated"); + exit(); + } + else + { + $errormsg = ""; + foreach ($errs as $errorname) + $errormsg .= $errorname."
"; + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) + { + $id = (int)$_GET['id']; + + $query = "SELECT * FROM exchangerix_exdirections WHERE exdirection_id='$id' LIMIT 1"; + $rs = smart_mysql_query($query); + $total = mysqli_num_rows($rs); + } + + + $title = "Edit Exchange Direction"; + require_once ("inc/header.inc.php"); + +?> + + +

Edit Exchange Direction

+ + 0) { + + $row = mysqli_fetch_array($rs); + + ?> + + +
+ + +
+ + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

User Send

* Exchange Direction: + +
Auto Rate: + + +
* Exchange Rate: + + + =
Margin:" size="5" class="form-control" /> %
Fee:" size="5" class="form-control" />
Min Amount:
Max Amount:
Hide from unregistered users: + +
Allow affiliate commission: + +
Manual Processing: + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

User Receive

+ +
 
+ + +
 
 
+ +
+ + + + + + + + + + + + + + + + + +
Instructions for user:
Description:
Status: + +
+ + +
+
+ + + + +
+
+ + + + +
Sorry, no exchange direction found.
+

+ + + + \ No newline at end of file diff --git a/admin/exdirections.php b/admin/exdirections.php new file mode 100644 index 0000000..0455273 --- /dev/null +++ b/admin/exdirections.php @@ -0,0 +1,706 @@ + 0) + { + $errs[] = "Sorry, current exchange direction is exists"; + } + + if ((isset($from_rate) && $from_rate != "" && !is_numeric($from_rate)) || (isset($to_rate) && $to_rate != "" && !is_numeric($to_rate))) + $errs[] = "Please enter correct exchange rate (numbers only)"; + + if (isset($fee) && $fee != "" && !is_numeric($fee)) + $errs[] = "Please enter correct margin value"; + + /*if (isset($fee) && $fee != "" && !is_numeric($fee) && !strstr($fee, "%")) + $errs[] = "Please enter correct fee value";*/ + + if (isset($min_amount) && $min_amount != "" && !is_numeric($min_amount)) + $errs[] = "Please enter correct minimum exchange value"; + + if (isset($max_amount) && $max_amount != "" && !is_numeric($max_amount)) + $errs[] = "Please enter correct maximum exchange value"; + + if (isset($min_amount) && is_numeric($min_amount) && isset($max_amount) && is_numeric($max_amount) && $min_amount>$max_amount) + $errs[] = "Max exchange value cant be less than min value"; + + if ($auto_rate == 1) + { + $fsym = GetCurrencyCode($from_currency); + $tsyms = GetCurrencyCode($to_currency); + $url = "https://min-api.cryptocompare.com/data/price?fsym=".$fsym."&tsyms=".$tsyms; + $json = json_decode(file_get_contents($url), true); + + if ($json["Response"] == "Error") + { + $errs[] = "Sorry, auto price update not available for these currencies"; + } + } + + } + + if (count($errs) == 0) + { + $exchange_rate = $to_rate/$from_rate; + + if ($auto_rate == 1) $updated_date = ", updated='2018-03-19 16:13:22'"; else $updated_date = ", updated=NOW()"; + + $insert_sql = "INSERT INTO exchangerix_exdirections SET from_currency='$from_currency', to_currency='$to_currency', from_rate='$from_rate', to_rate='$to_rate', exchange_rate='$exchange_rate', auto_rate='$auto_rate', fee='$fee', min_amount='$min_amount', max_amount='$max_amount', user_instructions='$instructions', description='$description', is_manual='$is_manual', hide_from_visitors='$hide_from_visitors', allow_affiliate='$allow_affiliate', sort_order='$sort_order', status='$status', added=NOW()".$updated_date; //user_id='0' + $result = smart_mysql_query($insert_sql); + $new_coupon_id = mysqli_insert_id($conn); + + header("Location: exdirections.php?msg=added"); + exit(); + } + else + { + $errormsg = ""; + foreach ($errs as $errorname) + $errormsg .= $errorname."
"; + } + } + ////////////////////////////////////////////////// + + // delete //////////////////////////////////////// + if (isset($_GET['id']) && is_numeric($_GET['id']) && $_GET['action'] == "delete") + { + $did = (int)$_GET['id']; + //DeleteExDirection($did); + smart_mysql_query("DELETE FROM exchangerix_exdirections WHERE exdirection_id='$did'"); + header("Location: exdirections.php?msg=deleted"); + exit(); + } + + + // results per page + if (isset($_GET['show']) && is_numeric($_GET['show']) && $_GET['show'] > 0) + $results_per_page = (int)$_GET['show']; + else + $results_per_page = 10; + + + // Update // + if (isset($_POST['update']) && $_POST['update'] != "") + { + $sorts_arr = array(); + $sorts_arr = $_POST['from_rate']; + + $from_rate = array(); + $from_rate = $_POST['from_rate']; + + $to_rate = array(); + $to_rate = $_POST['to_rate']; + + if (count($sorts_arr) > 0) + { + foreach ($sorts_arr as $k=>$v) + { + $new_from_rate = (float)$from_rate[$k]; + $new_to_rate = (float)$to_rate[$k]; + + $up_query = ""; + + if ($new_from_rate > 0) $up_query .= "from_rate='".$new_from_rate."',"; + if ($new_to_rate > 0) $up_query .= "to_rate='".$new_to_rate."',"; + + if ($new_to_rate > 0 && $new_to_rate > 0) { $exchange_rate = $new_to_rate/$new_from_rate; $up_query .= "exchange_rate='$exchange_rate',"; }elseif($new_to_rate == 0) { $up_query .= "status='inactive',"; } + + smart_mysql_query("UPDATE exchangerix_exdirections SET $up_query sort_order='".(int)$v."' WHERE exdirection_id='".(int)$k."'"); + } + } + + header("Location: exdirections.php?msg=updated"); + exit(); + } + + // Delete // + if (isset($_POST['delete'])) + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $did = (int)$v; + smart_mysql_query("DELETE FROM exchangerix_exdirections WHERE exdirection_id='$did'"); + //DeleteExDirection($did); + } + + header("Location: exdirections.php?msg=deleted"); + exit(); + } + } + + $where = "1=1"; + + ////////////////// filter ////////////////////// + if (isset($_GET['column']) && $_GET['column'] != "") + { + switch ($_GET['column']) + { + case "title": $rrorder = "title"; break; + case "sort_order": $rrorder = "sort_order"; break; + case "added": $rrorder = "added"; break; + case "last_visit": $rrorder = "last_visit"; break; + case "auto_rate": $rrorder = "auto_rate"; break; + case "total_exchanges": $rrorder = "total_exchanges"; break; + case "today_exchanges": $rrorder = "today_exchanges"; break; + case "visists": $rrorder = "visits"; break; + case "status": $rrorder = "status"; break; + default: $rrorder = "sort_order"; break; + } + } + else + { + $rrorder = "sort_order"; + } + + if (isset($_GET['order']) && $_GET['order'] != "") + { + switch ($_GET['order']) + { + case "asc": $rorder = "asc"; break; + case "desc": $rorder = "desc"; break; + default: $rorder = "asc"; break; + } + } + else + { + $rorder = "asc"; + } + if (isset($_GET['filter']) && $_GET['filter'] != "") + { + $filter = mysqli_real_escape_string($conn, trim(getGetParameter('filter'))); + $where .= " AND (title LIKE '%$filter%' OR code LIKE '%$filter%') "; + $totitle = " - Search Results"; + } + /////////////////////////////////////////////////////// + + if (isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] > 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + /* + if (isset($_GET['store']) && $_GET['store'] != "") + { + $store = substr(trim(getGetParameter('store')), 0, 10); + $store = mysqli_real_escape_string($conn, $store); //dev + //$where .= " AND currency_code='$store' "; + $title2 = $store; + }*/ + + if (isset($_GET['from_filter']) && is_numeric($_GET['from_filter'])) + { + $from_filter = (int)$_GET['from_filter']; + $where .= " AND from_currency='$from_filter' "; + $title2 .= " ".GetCurrencyName($from_filter)." "; + } + + if (isset($_GET['to_filter']) && is_numeric($_GET['to_filter'])) + { + $to_filter = (int)$_GET['to_filter']; + $where .= " AND to_currency='$to_filter' "; + $title2 .= " ".GetCurrencyName($to_filter); + } + + $query = "SELECT *, TIMESTAMPDIFF(MINUTE,updated,NOW()) AS last_update_mins, DATE_FORMAT(added, '".DATE_FORMAT."') AS date_added FROM exchangerix_exdirections WHERE $where ORDER BY $rrorder $rorder, added DESC LIMIT $from, $results_per_page"; + + $result = smart_mysql_query($query); + $total_on_page = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_exdirections WHERE ".$where; + $result2 = smart_mysql_query($query2); + $total = mysqli_num_rows($result2); + + $cc = 0; + + //$title = $title2." Exchange Directions"; + $title = "Exchange Directions"; + require_once ("inc/header.inc.php"); + +?> + +
"> +

Add Exchange Direction

+ +
+ + +
+ + + + + + + + + + + +
+ + + + + + + + + + + + + + + style="display: none;" style="display: ;"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

User Send

* Exchange Direction: + +
Auto Rate: + + +
* Exchange Rate: + + + =
Margin:" size="5" class="form-control" /> %
Fee:" size="5" class="form-control" />
Min Amount:
Max Amount:
Hide from unregistered users: + +
Allow affiliate commission: + +
Manual Processing: + +
+ + +
+ + + + + + + + + + + + style="display: none;" style="display: ;"> + + + + + + + + + + + + + + + + + + +

User Receive

+ + + +
 
+ + +
 
 
+ +
+ + + + + + + + + + + + + + + + + +
Instructions for user:
Description:
Status: + +
+ + +
+
+ + + +
+ + + +
+ +
+ + + + +
"> + + + +

Exchange Directions 0) { ?>

+ + +
+ +
+ + + + + + + + +
+ + +
+
+
+ Sort by: + + + + + + +
+
+ + + + Delete Filter +
+
+ 0) { ?>Showing - of +
+
+
+ + +
+ + + + + + + + + + + + + 0) { ?> + + 5) //UPDATE_RATES_MINUTES + { + $from = GetCurrencyCode($row['from_currency']); + $to = GetCurrencyCode($row['to_currency']); + + exchagerix_update_rate($from, $to, $row['fee'], $row['exdirection_id']); + $was_updated = 1; + } + ?> + "> + + + + + + + + + + + + + + + + + + + +
Exchange DirectionExchange RateMin
Amount
Max
Amount
Margin ? Exchanges
all time / today
StatusActions
+
+
+
+ manual auto + hidden +
+ reserve: +
reserve: +
+
+
+
+ + /> = + /> +
auto update rate
+
last update:
+
0) ? $row['min_amount']." ".GetCurrencyCode($row['from_currency']) : "---"; ?> 0) ? $row['max_amount']." ".GetCurrencyCode($row['from_currency']) : "---"; ?>--- 0) echo "+"; echo $row['today_exchanges']; ?> + ".$row['status'].""; break; + case "inactive": echo "".$row['status'].""; break; + case "expired": echo "".$row['status'].""; break; + default: echo "".$row['status'].""; break; + } + ?> + 0) ? "?" : ""; ?> + + View + Edit + Delete +
+ + + + + +
+ +
No directions found for your search criteria. See all ›
+ +
There are no exchange directions at this time. See all ›
+ +

+ + +
+
+ + + +
+ + \ No newline at end of file diff --git a/admin/fonts/FontAwesome.otf b/admin/fonts/FontAwesome.otf new file mode 100644 index 0000000..401ec0f Binary files /dev/null and b/admin/fonts/FontAwesome.otf differ diff --git a/admin/fonts/fontawesome-webfont.eot b/admin/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000..e9f60ca Binary files /dev/null and b/admin/fonts/fontawesome-webfont.eot differ diff --git a/admin/fonts/fontawesome-webfont.svg b/admin/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000..855c845 --- /dev/null +++ b/admin/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/admin/fonts/fontawesome-webfont.ttf b/admin/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000..35acda2 Binary files /dev/null and b/admin/fonts/fontawesome-webfont.ttf differ diff --git a/admin/fonts/fontawesome-webfont.woff b/admin/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000..400014a Binary files /dev/null and b/admin/fonts/fontawesome-webfont.woff differ diff --git a/admin/fonts/fontawesome-webfont.woff2 b/admin/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000..4d13fc6 Binary files /dev/null and b/admin/fonts/fontawesome-webfont.woff2 differ diff --git a/admin/fonts/glyphicons-halflings-regular.eot b/admin/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 0000000..b93a495 Binary files /dev/null and b/admin/fonts/glyphicons-halflings-regular.eot differ diff --git a/admin/fonts/glyphicons-halflings-regular.svg b/admin/fonts/glyphicons-halflings-regular.svg new file mode 100644 index 0000000..94fb549 --- /dev/null +++ b/admin/fonts/glyphicons-halflings-regular.svg @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/admin/fonts/glyphicons-halflings-regular.ttf b/admin/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000..1413fc6 Binary files /dev/null and b/admin/fonts/glyphicons-halflings-regular.ttf differ diff --git a/admin/fonts/glyphicons-halflings-regular.woff b/admin/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 0000000..9e61285 Binary files /dev/null and b/admin/fonts/glyphicons-halflings-regular.woff differ diff --git a/admin/fonts/glyphicons-halflings-regular.woff2 b/admin/fonts/glyphicons-halflings-regular.woff2 new file mode 100644 index 0000000..64539b5 Binary files /dev/null and b/admin/fonts/glyphicons-halflings-regular.woff2 differ diff --git a/admin/gateway_add.php b/admin/gateway_add.php new file mode 100644 index 0000000..f4dd617 --- /dev/null +++ b/admin/gateway_add.php @@ -0,0 +1,92 @@ +"; + } + } + + $title = "Add Gateway"; + require_once ("inc/header.inc.php"); + +?> + +

Add Gateway

+ + +
+ + +
+
+
+
+ +
+
+
+ +
+ + + +
+
+ + + \ No newline at end of file diff --git a/admin/gateway_edit.php b/admin/gateway_edit.php new file mode 100644 index 0000000..5b5ed97 --- /dev/null +++ b/admin/gateway_edit.php @@ -0,0 +1,370 @@ +"; + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) + { + $did = (int)$_GET['id']; + + $query = "SELECT * FROM exchangerix_gateways WHERE gateway_id='$did' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + } + + $title = "Edit Gateway"; + require_once ("inc/header.inc.php"); + +?> + + 0) { $row = mysqli_fetch_array($result); ?> + +

Settings

+ + +
+ + +
+
+ + + +
+ +
+
+ +
+ +
+
+ +
+
+
+ +
+ +
+
+ +
+ +
+
+ +
+
+
+ +
+ +
+
+ +
+
+
+ +
+
+
+ + Alternate Passphrase you entered in your Perfect Money account. +
+ +
+
+ +
+ +
+
+ +
+ +
+
+ +
+
+
+ + +
+
+
+ +
+
+
+ +
+ +
+
+ +
+
+
+ +
+
+
+ +
+ +
+
+ +
+ +
+
+ +
+ +
+
+ +
+ +
+
+ +
+ +
+
+ +
+ +
+
+ +
+
+
+ +
+ +
+
+ +
+
+
+
+ Please sign up to get API detaials from Block.io. +
+
+
+ +
+
+
+ +
+ +
+
+ +
+ +
+
+ +
+ +
+
+ +
+ +
+
+ +
+ +
+
+ +
+ +
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+ +
+
+ +
+
+
+ +
+ +
+
+ +
+
+
+ +
+ +
+
+ +
+ +
+
+
+ +
+ + + + +
+
+ + +

Gateway

+
Sorry, gateway not found.
+

+ + + + \ No newline at end of file diff --git a/admin/gateways.php b/admin/gateways.php new file mode 100644 index 0000000..f4084f8 --- /dev/null +++ b/admin/gateways.php @@ -0,0 +1,366 @@ + + + + + + + +

Gateways

+ + 0) { ?> + + +
+ +
+ + +
+ + + + + " > + + + + + + + + + +
+ Gateway + Using in currencies + + Ready? + Status + Actions +
+ + <?php echo $row['gateway_name']; ?> + + +

+
+ + + + + + + + + ".$row['status'].""; else echo " ".$row['status'].""; ?> + + Edit + Delete +
+
+ + +
There are no gateways at this time.
+ + + + \ No newline at end of file diff --git a/admin/images/.DS_Store b/admin/images/.DS_Store new file mode 100644 index 0000000..6241ec4 Binary files /dev/null and b/admin/images/.DS_Store differ diff --git a/admin/images/active.png b/admin/images/active.png new file mode 100644 index 0000000..d4b119d Binary files /dev/null and b/admin/images/active.png differ diff --git a/admin/images/addmoney.png b/admin/images/addmoney.png new file mode 100644 index 0000000..194991a Binary files /dev/null and b/admin/images/addmoney.png differ diff --git a/admin/images/arrow_right.gif b/admin/images/arrow_right.gif new file mode 100644 index 0000000..68408c6 Binary files /dev/null and b/admin/images/arrow_right.gif differ diff --git a/admin/images/arrow_right_white.gif b/admin/images/arrow_right_white.gif new file mode 100644 index 0000000..46da9f0 Binary files /dev/null and b/admin/images/arrow_right_white.gif differ diff --git a/admin/images/bg.png b/admin/images/bg.png new file mode 100644 index 0000000..7a21635 Binary files /dev/null and b/admin/images/bg.png differ diff --git a/admin/images/close.png b/admin/images/close.png new file mode 100644 index 0000000..20baa1d Binary files /dev/null and b/admin/images/close.png differ diff --git a/admin/images/csv.png b/admin/images/csv.png new file mode 100644 index 0000000..e60c8d0 Binary files /dev/null and b/admin/images/csv.png differ diff --git a/admin/images/currencies/.DS_Store b/admin/images/currencies/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/admin/images/currencies/.DS_Store differ diff --git a/admin/images/currencies/2co.png b/admin/images/currencies/2co.png new file mode 100644 index 0000000..c7b09a2 Binary files /dev/null and b/admin/images/currencies/2co.png differ diff --git a/admin/images/currencies/ADA.png b/admin/images/currencies/ADA.png new file mode 100644 index 0000000..3fe6593 Binary files /dev/null and b/admin/images/currencies/ADA.png differ diff --git a/admin/images/currencies/ADVC.png b/admin/images/currencies/ADVC.png new file mode 100644 index 0000000..657f9ba Binary files /dev/null and b/admin/images/currencies/ADVC.png differ diff --git a/admin/images/currencies/ALFA.png b/admin/images/currencies/ALFA.png new file mode 100644 index 0000000..feaa26f Binary files /dev/null and b/admin/images/currencies/ALFA.png differ diff --git a/admin/images/currencies/BANK.png b/admin/images/currencies/BANK.png new file mode 100644 index 0000000..4dae440 Binary files /dev/null and b/admin/images/currencies/BANK.png differ diff --git a/admin/images/currencies/BCC.png b/admin/images/currencies/BCC.png new file mode 100644 index 0000000..bc9da2c Binary files /dev/null and b/admin/images/currencies/BCC.png differ diff --git a/admin/images/currencies/BCH.png b/admin/images/currencies/BCH.png new file mode 100644 index 0000000..89a8d7d Binary files /dev/null and b/admin/images/currencies/BCH.png differ diff --git a/admin/images/currencies/BTC.png b/admin/images/currencies/BTC.png new file mode 100644 index 0000000..a6d9235 Binary files /dev/null and b/admin/images/currencies/BTC.png differ diff --git a/admin/images/currencies/CARD.png b/admin/images/currencies/CARD.png new file mode 100644 index 0000000..844f716 Binary files /dev/null and b/admin/images/currencies/CARD.png differ diff --git a/admin/images/currencies/CASH.png b/admin/images/currencies/CASH.png new file mode 100644 index 0000000..4799b15 Binary files /dev/null and b/admin/images/currencies/CASH.png differ diff --git a/admin/images/currencies/CLAM.png b/admin/images/currencies/CLAM.png new file mode 100644 index 0000000..39a3eae Binary files /dev/null and b/admin/images/currencies/CLAM.png differ diff --git a/admin/images/currencies/DASH.png b/admin/images/currencies/DASH.png new file mode 100644 index 0000000..f2d1aa4 Binary files /dev/null and b/admin/images/currencies/DASH.png differ diff --git a/admin/images/currencies/DOGE.png b/admin/images/currencies/DOGE.png new file mode 100644 index 0000000..1c2d1d2 Binary files /dev/null and b/admin/images/currencies/DOGE.png differ diff --git a/admin/images/currencies/EM.png b/admin/images/currencies/EM.png new file mode 100644 index 0000000..19841cd Binary files /dev/null and b/admin/images/currencies/EM.png differ diff --git a/admin/images/currencies/ETC.png b/admin/images/currencies/ETC.png new file mode 100644 index 0000000..2df0cdf Binary files /dev/null and b/admin/images/currencies/ETC.png differ diff --git a/admin/images/currencies/ETH.png b/admin/images/currencies/ETH.png new file mode 100644 index 0000000..eed9c01 Binary files /dev/null and b/admin/images/currencies/ETH.png differ diff --git a/admin/images/currencies/EXMO.png b/admin/images/currencies/EXMO.png new file mode 100644 index 0000000..7fb05ba Binary files /dev/null and b/admin/images/currencies/EXMO.png differ diff --git a/admin/images/currencies/GNO.png b/admin/images/currencies/GNO.png new file mode 100644 index 0000000..68fe474 Binary files /dev/null and b/admin/images/currencies/GNO.png differ diff --git a/admin/images/currencies/GNT.png b/admin/images/currencies/GNT.png new file mode 100644 index 0000000..68a25fe Binary files /dev/null and b/admin/images/currencies/GNT.png differ diff --git a/admin/images/currencies/LSK.png b/admin/images/currencies/LSK.png new file mode 100644 index 0000000..ffe1b20 Binary files /dev/null and b/admin/images/currencies/LSK.png differ diff --git a/admin/images/currencies/LTC.png b/admin/images/currencies/LTC.png new file mode 100644 index 0000000..fb39365 Binary files /dev/null and b/admin/images/currencies/LTC.png differ diff --git a/admin/images/currencies/MIOTA.png b/admin/images/currencies/MIOTA.png new file mode 100644 index 0000000..62fb7af Binary files /dev/null and b/admin/images/currencies/MIOTA.png differ diff --git a/admin/images/currencies/MP.png b/admin/images/currencies/MP.png new file mode 100644 index 0000000..ccdeb19 Binary files /dev/null and b/admin/images/currencies/MP.png differ diff --git a/admin/images/currencies/MoneyGram.png b/admin/images/currencies/MoneyGram.png new file mode 100644 index 0000000..338f4e2 Binary files /dev/null and b/admin/images/currencies/MoneyGram.png differ diff --git a/admin/images/currencies/NEM.png b/admin/images/currencies/NEM.png new file mode 100644 index 0000000..c88d251 Binary files /dev/null and b/admin/images/currencies/NEM.png differ diff --git a/admin/images/currencies/NEO.png b/admin/images/currencies/NEO.png new file mode 100644 index 0000000..f4d02c1 Binary files /dev/null and b/admin/images/currencies/NEO.png differ diff --git a/admin/images/currencies/NMC.png b/admin/images/currencies/NMC.png new file mode 100644 index 0000000..2970fd2 Binary files /dev/null and b/admin/images/currencies/NMC.png differ diff --git a/admin/images/currencies/NTLR.png b/admin/images/currencies/NTLR.png new file mode 100644 index 0000000..6a7deef Binary files /dev/null and b/admin/images/currencies/NTLR.png differ diff --git a/admin/images/currencies/OK.png b/admin/images/currencies/OK.png new file mode 100644 index 0000000..a6f80db Binary files /dev/null and b/admin/images/currencies/OK.png differ diff --git a/admin/images/currencies/P24UAH.png b/admin/images/currencies/P24UAH.png new file mode 100644 index 0000000..ff17999 Binary files /dev/null and b/admin/images/currencies/P24UAH.png differ diff --git a/admin/images/currencies/PAYPAL.png b/admin/images/currencies/PAYPAL.png new file mode 100644 index 0000000..c0c83da Binary files /dev/null and b/admin/images/currencies/PAYPAL.png differ diff --git a/admin/images/currencies/PM.png b/admin/images/currencies/PM.png new file mode 100644 index 0000000..3b2c9c2 Binary files /dev/null and b/admin/images/currencies/PM.png differ diff --git a/admin/images/currencies/PPC.png b/admin/images/currencies/PPC.png new file mode 100644 index 0000000..47bd229 Binary files /dev/null and b/admin/images/currencies/PPC.png differ diff --git a/admin/images/currencies/PR.png b/admin/images/currencies/PR.png new file mode 100644 index 0000000..a610560 Binary files /dev/null and b/admin/images/currencies/PR.png differ diff --git a/admin/images/currencies/PZ.png b/admin/images/currencies/PZ.png new file mode 100644 index 0000000..bf92335 Binary files /dev/null and b/admin/images/currencies/PZ.png differ diff --git a/admin/images/currencies/PaySafeCard.png b/admin/images/currencies/PaySafeCard.png new file mode 100644 index 0000000..ce9ec67 Binary files /dev/null and b/admin/images/currencies/PaySafeCard.png differ diff --git a/admin/images/currencies/QIWI.png b/admin/images/currencies/QIWI.png new file mode 100644 index 0000000..0555e9f Binary files /dev/null and b/admin/images/currencies/QIWI.png differ diff --git a/admin/images/currencies/QTUM.png b/admin/images/currencies/QTUM.png new file mode 100644 index 0000000..f473a89 Binary files /dev/null and b/admin/images/currencies/QTUM.png differ diff --git a/admin/images/currencies/REP.png b/admin/images/currencies/REP.png new file mode 100644 index 0000000..ab5da30 Binary files /dev/null and b/admin/images/currencies/REP.png differ diff --git a/admin/images/currencies/SFE.png b/admin/images/currencies/SFE.png new file mode 100644 index 0000000..2d1a385 Binary files /dev/null and b/admin/images/currencies/SFE.png differ diff --git a/admin/images/currencies/SJCX.png b/admin/images/currencies/SJCX.png new file mode 100644 index 0000000..e2720ef Binary files /dev/null and b/admin/images/currencies/SJCX.png differ diff --git a/admin/images/currencies/SKRILL.png b/admin/images/currencies/SKRILL.png new file mode 100644 index 0000000..6c3998f Binary files /dev/null and b/admin/images/currencies/SKRILL.png differ diff --git a/admin/images/currencies/STP.png b/admin/images/currencies/STP.png new file mode 100644 index 0000000..461135e Binary files /dev/null and b/admin/images/currencies/STP.png differ diff --git a/admin/images/currencies/TBC.png b/admin/images/currencies/TBC.png new file mode 100644 index 0000000..62fcbc7 Binary files /dev/null and b/admin/images/currencies/TBC.png differ diff --git a/admin/images/currencies/UQUID.png b/admin/images/currencies/UQUID.png new file mode 100644 index 0000000..ae06049 Binary files /dev/null and b/admin/images/currencies/UQUID.png differ diff --git a/admin/images/currencies/WAVES.png b/admin/images/currencies/WAVES.png new file mode 100644 index 0000000..909927b Binary files /dev/null and b/admin/images/currencies/WAVES.png differ diff --git a/admin/images/currencies/WEX.png b/admin/images/currencies/WEX.png new file mode 100644 index 0000000..5c1acae Binary files /dev/null and b/admin/images/currencies/WEX.png differ diff --git a/admin/images/currencies/WM.png b/admin/images/currencies/WM.png new file mode 100644 index 0000000..b0503eb Binary files /dev/null and b/admin/images/currencies/WM.png differ diff --git a/admin/images/currencies/WU.png b/admin/images/currencies/WU.png new file mode 100644 index 0000000..b7a3d8f Binary files /dev/null and b/admin/images/currencies/WU.png differ diff --git a/admin/images/currencies/WireTransfer.png b/admin/images/currencies/WireTransfer.png new file mode 100644 index 0000000..4dae440 Binary files /dev/null and b/admin/images/currencies/WireTransfer.png differ diff --git a/admin/images/currencies/XMR.png b/admin/images/currencies/XMR.png new file mode 100644 index 0000000..1761457 Binary files /dev/null and b/admin/images/currencies/XMR.png differ diff --git a/admin/images/currencies/XRP.png b/admin/images/currencies/XRP.png new file mode 100644 index 0000000..6feb29b Binary files /dev/null and b/admin/images/currencies/XRP.png differ diff --git a/admin/images/currencies/YAM.png b/admin/images/currencies/YAM.png new file mode 100644 index 0000000..8598dae Binary files /dev/null and b/admin/images/currencies/YAM.png differ diff --git a/admin/images/currencies/ZCASH.png b/admin/images/currencies/ZCASH.png new file mode 100644 index 0000000..6800999 Binary files /dev/null and b/admin/images/currencies/ZCASH.png differ diff --git a/admin/images/currencies/index.htm b/admin/images/currencies/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/admin/images/currencies/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/admin/images/currencies/no_image.png b/admin/images/currencies/no_image.png new file mode 100644 index 0000000..37c2ca7 Binary files /dev/null and b/admin/images/currencies/no_image.png differ diff --git a/admin/images/delete.png b/admin/images/delete.png new file mode 100644 index 0000000..823d068 Binary files /dev/null and b/admin/images/delete.png differ diff --git a/admin/images/edit.png b/admin/images/edit.png new file mode 100644 index 0000000..715e69e Binary files /dev/null and b/admin/images/edit.png differ diff --git a/admin/images/exchangerix_adm.gif b/admin/images/exchangerix_adm.gif new file mode 100644 index 0000000..857cd80 Binary files /dev/null and b/admin/images/exchangerix_adm.gif differ diff --git a/admin/images/export.png b/admin/images/export.png new file mode 100644 index 0000000..eb331f2 Binary files /dev/null and b/admin/images/export.png differ diff --git a/admin/images/icon_csv.png b/admin/images/icon_csv.png new file mode 100644 index 0000000..a802778 Binary files /dev/null and b/admin/images/icon_csv.png differ diff --git a/admin/images/icon_edit.png b/admin/images/icon_edit.png new file mode 100644 index 0000000..e0670f2 Binary files /dev/null and b/admin/images/icon_edit.png differ diff --git a/admin/images/icon_feed.png b/admin/images/icon_feed.png new file mode 100644 index 0000000..d1ac2a4 Binary files /dev/null and b/admin/images/icon_feed.png differ diff --git a/admin/images/icon_xls.png b/admin/images/icon_xls.png new file mode 100644 index 0000000..4a394e5 Binary files /dev/null and b/admin/images/icon_xls.png differ diff --git a/admin/images/icons/add.png b/admin/images/icons/add.png new file mode 100644 index 0000000..40d1ba5 Binary files /dev/null and b/admin/images/icons/add.png differ diff --git a/admin/images/icons/addons.png b/admin/images/icons/addons.png new file mode 100644 index 0000000..6b1dfd0 Binary files /dev/null and b/admin/images/icons/addons.png differ diff --git a/admin/images/icons/admin.png b/admin/images/icons/admin.png new file mode 100644 index 0000000..3503bb8 Binary files /dev/null and b/admin/images/icons/admin.png differ diff --git a/admin/images/icons/alert.png b/admin/images/icons/alert.png new file mode 100644 index 0000000..042b0c1 Binary files /dev/null and b/admin/images/icons/alert.png differ diff --git a/admin/images/icons/block_user.gif b/admin/images/icons/block_user.gif new file mode 100644 index 0000000..934c078 Binary files /dev/null and b/admin/images/icons/block_user.gif differ diff --git a/admin/images/icons/cat.png b/admin/images/icons/cat.png new file mode 100644 index 0000000..a488321 Binary files /dev/null and b/admin/images/icons/cat.png differ diff --git a/admin/images/icons/clock.gif b/admin/images/icons/clock.gif new file mode 100644 index 0000000..45a6425 Binary files /dev/null and b/admin/images/icons/clock.gif differ diff --git a/admin/images/icons/content.png b/admin/images/icons/content.png new file mode 100644 index 0000000..ffb737c Binary files /dev/null and b/admin/images/icons/content.png differ diff --git a/admin/images/icons/coupon.png b/admin/images/icons/coupon.png new file mode 100644 index 0000000..ceb8c9f Binary files /dev/null and b/admin/images/icons/coupon.png differ diff --git a/admin/images/icons/csv.gif b/admin/images/icons/csv.gif new file mode 100644 index 0000000..63995bf Binary files /dev/null and b/admin/images/icons/csv.gif differ diff --git a/admin/images/icons/date.png b/admin/images/icons/date.png new file mode 100644 index 0000000..ce77ce0 Binary files /dev/null and b/admin/images/icons/date.png differ diff --git a/admin/images/icons/deal_of_week.png b/admin/images/icons/deal_of_week.png new file mode 100644 index 0000000..7340190 Binary files /dev/null and b/admin/images/icons/deal_of_week.png differ diff --git a/admin/images/icons/delete_filter.png b/admin/images/icons/delete_filter.png new file mode 100644 index 0000000..2e65760 Binary files /dev/null and b/admin/images/icons/delete_filter.png differ diff --git a/admin/images/icons/download.png b/admin/images/icons/download.png new file mode 100644 index 0000000..ffca633 Binary files /dev/null and b/admin/images/icons/download.png differ diff --git a/admin/images/icons/email_user.png b/admin/images/icons/email_user.png new file mode 100644 index 0000000..cfad07f Binary files /dev/null and b/admin/images/icons/email_user.png differ diff --git a/admin/images/icons/etemplate.png b/admin/images/icons/etemplate.png new file mode 100644 index 0000000..cb07d71 Binary files /dev/null and b/admin/images/icons/etemplate.png differ diff --git a/admin/images/icons/facebook.png b/admin/images/icons/facebook.png new file mode 100644 index 0000000..dffec47 Binary files /dev/null and b/admin/images/icons/facebook.png differ diff --git a/admin/images/icons/featured.png b/admin/images/icons/featured.png new file mode 100644 index 0000000..499603d Binary files /dev/null and b/admin/images/icons/featured.png differ diff --git a/admin/images/icons/gplus.png b/admin/images/icons/gplus.png new file mode 100644 index 0000000..9e42454 Binary files /dev/null and b/admin/images/icons/gplus.png differ diff --git a/admin/images/icons/icon_error.png b/admin/images/icons/icon_error.png new file mode 100644 index 0000000..73ef8ef Binary files /dev/null and b/admin/images/icons/icon_error.png differ diff --git a/admin/images/icons/icon_info.png b/admin/images/icons/icon_info.png new file mode 100644 index 0000000..03bcd80 Binary files /dev/null and b/admin/images/icons/icon_info.png differ diff --git a/admin/images/icons/icon_stats.png b/admin/images/icons/icon_stats.png new file mode 100644 index 0000000..df24a52 Binary files /dev/null and b/admin/images/icons/icon_stats.png differ diff --git a/admin/images/icons/icon_success.png b/admin/images/icons/icon_success.png new file mode 100644 index 0000000..ddb29ab Binary files /dev/null and b/admin/images/icons/icon_success.png differ diff --git a/admin/images/icons/icon_users.png b/admin/images/icons/icon_users.png new file mode 100644 index 0000000..29a064a Binary files /dev/null and b/admin/images/icons/icon_users.png differ diff --git a/admin/images/icons/index.htm b/admin/images/icons/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/admin/images/icons/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/admin/images/icons/logout.png b/admin/images/icons/logout.png new file mode 100644 index 0000000..acb0e68 Binary files /dev/null and b/admin/images/icons/logout.png differ diff --git a/admin/images/icons/message.png b/admin/images/icons/message.png new file mode 100644 index 0000000..87571de Binary files /dev/null and b/admin/images/icons/message.png differ diff --git a/admin/images/icons/money_user.png b/admin/images/icons/money_user.png new file mode 100644 index 0000000..5cf5331 Binary files /dev/null and b/admin/images/icons/money_user.png differ diff --git a/admin/images/icons/no.png b/admin/images/icons/no.png new file mode 100644 index 0000000..a3f7d3c Binary files /dev/null and b/admin/images/icons/no.png differ diff --git a/admin/images/icons/notice.png b/admin/images/icons/notice.png new file mode 100644 index 0000000..4005ad0 Binary files /dev/null and b/admin/images/icons/notice.png differ diff --git a/admin/images/icons/pinterest.png b/admin/images/icons/pinterest.png new file mode 100644 index 0000000..68cbb11 Binary files /dev/null and b/admin/images/icons/pinterest.png differ diff --git a/admin/images/icons/rating-0.gif b/admin/images/icons/rating-0.gif new file mode 100644 index 0000000..8fedc14 Binary files /dev/null and b/admin/images/icons/rating-0.gif differ diff --git a/admin/images/icons/rating-1.gif b/admin/images/icons/rating-1.gif new file mode 100644 index 0000000..15ea5f4 Binary files /dev/null and b/admin/images/icons/rating-1.gif differ diff --git a/admin/images/icons/rating-2.gif b/admin/images/icons/rating-2.gif new file mode 100644 index 0000000..8e30341 Binary files /dev/null and b/admin/images/icons/rating-2.gif differ diff --git a/admin/images/icons/rating-3.gif b/admin/images/icons/rating-3.gif new file mode 100644 index 0000000..be34e85 Binary files /dev/null and b/admin/images/icons/rating-3.gif differ diff --git a/admin/images/icons/rating-4.gif b/admin/images/icons/rating-4.gif new file mode 100644 index 0000000..49899bd Binary files /dev/null and b/admin/images/icons/rating-4.gif differ diff --git a/admin/images/icons/rating-5.gif b/admin/images/icons/rating-5.gif new file mode 100644 index 0000000..85af264 Binary files /dev/null and b/admin/images/icons/rating-5.gif differ diff --git a/admin/images/icons/scissors.png b/admin/images/icons/scissors.png new file mode 100644 index 0000000..cd146b6 Binary files /dev/null and b/admin/images/icons/scissors.png differ diff --git a/admin/images/icons/search.png b/admin/images/icons/search.png new file mode 100644 index 0000000..8934a16 Binary files /dev/null and b/admin/images/icons/search.png differ diff --git a/admin/images/icons/settings.gif b/admin/images/icons/settings.gif new file mode 100644 index 0000000..014ef73 Binary files /dev/null and b/admin/images/icons/settings.gif differ diff --git a/admin/images/icons/status-confirmed.png b/admin/images/icons/status-confirmed.png new file mode 100644 index 0000000..4a2bd42 Binary files /dev/null and b/admin/images/icons/status-confirmed.png differ diff --git a/admin/images/icons/status-declined.png b/admin/images/icons/status-declined.png new file mode 100644 index 0000000..1514d51 Binary files /dev/null and b/admin/images/icons/status-declined.png differ diff --git a/admin/images/icons/status-expired.png b/admin/images/icons/status-expired.png new file mode 100644 index 0000000..6717682 Binary files /dev/null and b/admin/images/icons/status-expired.png differ diff --git a/admin/images/icons/status-failed.png b/admin/images/icons/status-failed.png new file mode 100644 index 0000000..f6bc8e2 Binary files /dev/null and b/admin/images/icons/status-failed.png differ diff --git a/admin/images/icons/status-paid.png b/admin/images/icons/status-paid.png new file mode 100644 index 0000000..fd1fbd6 Binary files /dev/null and b/admin/images/icons/status-paid.png differ diff --git a/admin/images/icons/status-pending.png b/admin/images/icons/status-pending.png new file mode 100644 index 0000000..6c4a275 Binary files /dev/null and b/admin/images/icons/status-pending.png differ diff --git a/admin/images/icons/status-request.png b/admin/images/icons/status-request.png new file mode 100644 index 0000000..cf6e591 Binary files /dev/null and b/admin/images/icons/status-request.png differ diff --git a/admin/images/icons/subscribers.png b/admin/images/icons/subscribers.png new file mode 100644 index 0000000..a51b9bc Binary files /dev/null and b/admin/images/icons/subscribers.png differ diff --git a/admin/images/icons/transfer.png b/admin/images/icons/transfer.png new file mode 100644 index 0000000..a0bf3eb Binary files /dev/null and b/admin/images/icons/transfer.png differ diff --git a/admin/images/icons/twitter.png b/admin/images/icons/twitter.png new file mode 100644 index 0000000..4c94dc3 Binary files /dev/null and b/admin/images/icons/twitter.png differ diff --git a/admin/images/icons/unblock_user.gif b/admin/images/icons/unblock_user.gif new file mode 100644 index 0000000..bc2d9ba Binary files /dev/null and b/admin/images/icons/unblock_user.gif differ diff --git a/admin/images/icons/user.png b/admin/images/icons/user.png new file mode 100644 index 0000000..d2875b6 Binary files /dev/null and b/admin/images/icons/user.png differ diff --git a/admin/images/icons/yes.png b/admin/images/icons/yes.png new file mode 100644 index 0000000..f1d290c Binary files /dev/null and b/admin/images/icons/yes.png differ diff --git a/admin/images/idelete.png b/admin/images/idelete.png new file mode 100644 index 0000000..a1af31d Binary files /dev/null and b/admin/images/idelete.png differ diff --git a/admin/images/import.png b/admin/images/import.png new file mode 100644 index 0000000..6c0c963 Binary files /dev/null and b/admin/images/import.png differ diff --git a/admin/images/inactive.png b/admin/images/inactive.png new file mode 100644 index 0000000..2860ae9 Binary files /dev/null and b/admin/images/inactive.png differ diff --git a/admin/images/index.htm b/admin/images/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/admin/images/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/admin/images/lbg.png b/admin/images/lbg.png new file mode 100644 index 0000000..b092cec Binary files /dev/null and b/admin/images/lbg.png differ diff --git a/admin/images/loading 2.gif b/admin/images/loading 2.gif new file mode 100644 index 0000000..5087c2a Binary files /dev/null and b/admin/images/loading 2.gif differ diff --git a/admin/images/loading.gif b/admin/images/loading.gif new file mode 100644 index 0000000..41bae58 Binary files /dev/null and b/admin/images/loading.gif differ diff --git a/admin/images/loading2.gif b/admin/images/loading2.gif new file mode 100644 index 0000000..3fa42ce Binary files /dev/null and b/admin/images/loading2.gif differ diff --git a/admin/images/loading_line.gif b/admin/images/loading_line.gif new file mode 100644 index 0000000..f9c39ea Binary files /dev/null and b/admin/images/loading_line.gif differ diff --git a/admin/images/logo.png b/admin/images/logo.png new file mode 100644 index 0000000..77b0814 Binary files /dev/null and b/admin/images/logo.png differ diff --git a/admin/images/next.png b/admin/images/next.png new file mode 100644 index 0000000..08365ac Binary files /dev/null and b/admin/images/next.png differ diff --git a/admin/images/note.png b/admin/images/note.png new file mode 100644 index 0000000..4005ad0 Binary files /dev/null and b/admin/images/note.png differ diff --git a/admin/images/online.gif b/admin/images/online.gif new file mode 100644 index 0000000..d64e50b Binary files /dev/null and b/admin/images/online.gif differ diff --git a/admin/images/paypal.png b/admin/images/paypal.png new file mode 100644 index 0000000..ba364e9 Binary files /dev/null and b/admin/images/paypal.png differ diff --git a/admin/images/prev.png b/admin/images/prev.png new file mode 100644 index 0000000..329fa98 Binary files /dev/null and b/admin/images/prev.png differ diff --git a/admin/images/proceed.png b/admin/images/proceed.png new file mode 100644 index 0000000..c5c976e Binary files /dev/null and b/admin/images/proceed.png differ diff --git a/admin/images/px.gif b/admin/images/px.gif new file mode 100644 index 0000000..3f95817 Binary files /dev/null and b/admin/images/px.gif differ diff --git a/admin/images/rating_stars.png b/admin/images/rating_stars.png new file mode 100644 index 0000000..56c7cd0 Binary files /dev/null and b/admin/images/rating_stars.png differ diff --git a/admin/images/rating_stars_full.png b/admin/images/rating_stars_full.png new file mode 100644 index 0000000..728c6dd Binary files /dev/null and b/admin/images/rating_stars_full.png differ diff --git a/admin/images/reply.png b/admin/images/reply.png new file mode 100644 index 0000000..6168832 Binary files /dev/null and b/admin/images/reply.png differ diff --git a/admin/images/spacer.gif b/admin/images/spacer.gif new file mode 100644 index 0000000..75b945d Binary files /dev/null and b/admin/images/spacer.gif differ diff --git a/admin/images/user.png b/admin/images/user.png new file mode 100644 index 0000000..c7fc5b9 Binary files /dev/null and b/admin/images/user.png differ diff --git a/admin/images/view.png b/admin/images/view.png new file mode 100644 index 0000000..3c38d1f Binary files /dev/null and b/admin/images/view.png differ diff --git a/admin/images/withdrawal.png b/admin/images/withdrawal.png new file mode 100644 index 0000000..b43ea66 Binary files /dev/null and b/admin/images/withdrawal.png differ diff --git a/admin/images/xml.jpg b/admin/images/xml.jpg new file mode 100644 index 0000000..dd895ff Binary files /dev/null and b/admin/images/xml.jpg differ diff --git a/admin/inc/.DS_Store b/admin/inc/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/admin/inc/.DS_Store differ diff --git a/admin/inc/admin_funcs.inc.php b/admin/inc/admin_funcs.inc.php new file mode 100644 index 0000000..8994da9 --- /dev/null +++ b/admin/inc/admin_funcs.inc.php @@ -0,0 +1,279 @@ + 10 OR length(verified_address) > 10"); + $row = mysqli_fetch_array($result); + return $row['total']; + } +} + + +/** + * Returns total of member's reserves request + * @return string total +*/ + +if (!function_exists('GetReserveRequestsTotal')) { + function GetReserveRequestsTotal() + { + $result = smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_reserve_requests WHERE status='pending'"); + $row = mysqli_fetch_array($result); + return $row['total']; + } +} + + +if (!function_exists('NetworkTotalRetailers')) { +function NetworkTotalRetailers ($network_id) +{ + $result = smart_mysql_query("SELECT COUNT(retailer_id) as total FROM exchangerix_retailers WHERE network_id='$network_id'"); + $row = mysqli_fetch_array($result); + return $row['total']; +} +} + + +if (!function_exists('ApproveUser')) { +function ApproveUser ($user_id) +{ + $userid = (int)$user_id; + smart_mysql_query("UPDATE exchangerix_users SET status='active' WHERE user_id='$userid'"); +} +} + + +if (!function_exists('DeleteUser')) { +function DeleteUser ($user_id) +{ + $userid = (int)$user_id; + smart_mysql_query("DELETE FROM exchangerix_users WHERE user_id='$userid'"); + smart_mysql_query("DELETE FROM exchangerix_transactions WHERE user_id='$userid'"); + smart_mysql_query("DELETE FROM exchangerix_exchanges WHERE user_id='$userid'"); + smart_mysql_query("DELETE FROM exchangerix_reviews WHERE user_id='$userid'"); +} +} + +if (!function_exists('DeleteCountry')) { +function DeleteCountry ($country_id) +{ + $countryid = (int)$country_id; + smart_mysql_query("DELETE FROM exchangerix_countries WHERE country_id='$countryid'"); +} +} + + +if (!function_exists('DeleteNews')) { +function DeleteNews ($news_id) +{ + $newsid = (int)$news_id; + smart_mysql_query("DELETE FROM exchangerix_news WHERE news_id='$newsid'"); +} +} + + +if (!function_exists('DeleteReview')) { +function DeleteReview ($review_id) +{ + $reviewid = (int)($review_id); + smart_mysql_query("DELETE FROM exchangerix_reviews WHERE review_id='$reviewid'"); +} +} + + +if (!function_exists('ConfirmPayment')) { +function ConfirmPayment ($payment_id) +{ + $pid = (int)$payment_id; + smart_mysql_query("UPDATE exchangerix_transactions SET status='confirmed' WHERE transaction_id='$pid'"); +} +} + + +if (!function_exists('DeletePayment')) { +function DeletePayment ($payment_id) +{ + $pid = (int)$payment_id; + smart_mysql_query("DELETE FROM exchangerix_transactions WHERE transaction_id='$pid'"); +} +} + + +if (!function_exists('BlockUnblockUser')) { +function BlockUnblockUser ($user_id, $unblock=0) +{ + $userid = (int)$user_id; + + if ($unblock == 1) + smart_mysql_query("UPDATE exchangerix_users SET status='active' WHERE user_id='$userid'"); + else + smart_mysql_query("UPDATE exchangerix_users SET status='inactive' WHERE user_id='$userid'"); +} +} + + +if (!function_exists('GetETemplateTitle')) { + function GetETemplateTitle($template_name) + { + switch ($template_name) + { + case "signup": $template_title = "Sign Up email"; break; + case "activate": $template_title = "Registration Confirmation email"; break; + case "activate2": $template_title = "Account Activation email"; break; + case "forgot_password": $template_title = "Forgot Password email"; break; + case "invite_friend": $template_title = "Invite a Friend email"; break; + case "cashout_paid": $template_title = "Cash Out paid email"; break; + case "cashout_declined": $template_title = "Cash Out declined email"; break; + case "manual_credit": $template_title = "Manual Payment email"; break; + case "email2users": $template_title = "Email Members email"; break; + } + + return $template_title; + } +} + + +if (!function_exists('GetGatewayName')) { +function GetGatewayName($gateway_id) +{ + $sql = "SELECT gateway_name FROM exchangerix_gateways WHERE gateway_id='$gateway_id' LIMIT 1"; + $result = smart_mysql_query($sql); + if (mysqli_num_rows($result) > 0) + { + $row = mysqli_fetch_array($result); + return $row['gateway_name']; + } + else + { + //return "---"; + } +} +} + + +if (!function_exists('ShowReferralsTree')) { +function ShowReferralsTree($user_id) + { + $q = smart_mysql_query("SELECT * FROM exchangerix_users WHERE ref_id='".(int)$user_id."' ORDER BY user_id ASC"); // ORDER BY user_id ASC + if (!mysqli_num_rows($q)) + return; + echo ''; + } +} + + +if (!function_exists('CheckAdminPermissions')) { +function CheckAdminPermissions($cpage) +{ + if (!@in_array($cpage, $_SESSION['adm']['pages'])) + { + header("Location: index.php"); + exit(); + } +} +} + + +if (!function_exists('isSuperAdmin')) { + function isSuperAdmin() + { + if (!(isset($_SESSION['adm']['role']) && $_SESSION['adm']['role'] == "superadmin")) + return false; + else + return true; + } +} + + +if (!function_exists('PageAllowed')) { +function PageAllowed($cpage) +{ + if (@in_array($cpage, $_SESSION['adm']['pages'])) + return true; + else + return false; +} +} + +if (!function_exists('ShowCBEInfo')) { +function ShowCBEInfo() +{ + $i = 0; + $feed = @simplexml_load_file('http://www.exchangerix.com/rss.xml'); + + if ($feed) + { + foreach ($feed->channel->item as $item) + { + if ($i == 0) echo "

Exchangerix News

"; + if (++$i == 10) break; + + $title = (string) $item->title; + $link = (string) $item->link; + $description = (string) $item->description; + $ndate = (string) $item->pubDate; + + echo '
'; + echo "".$ndate."
"; + echo "".$title.""; + echo "

".$description."

"; + echo '
'; + } + } +} +} + +?> \ No newline at end of file diff --git a/admin/inc/ce.inc.php b/admin/inc/ce.inc.php new file mode 100644 index 0000000..bb0aec7 --- /dev/null +++ b/admin/inc/ce.inc.php @@ -0,0 +1,12 @@ + \ No newline at end of file diff --git a/admin/inc/footer.inc.php b/admin/inc/footer.inc.php new file mode 100644 index 0000000..3074c51 --- /dev/null +++ b/admin/inc/footer.inc.php @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/admin/inc/header.inc.php b/admin/inc/header.inc.php new file mode 100644 index 0000000..327a663 --- /dev/null +++ b/admin/inc/header.inc.php @@ -0,0 +1,125 @@ + + + + + + <?php echo $title; ?> | Admin Panel + + + + + + + + + + + + +


+ +
+ + + +
+
+ + + +
+ diff --git a/admin/inc/index.htm b/admin/inc/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/admin/inc/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/admin/inc/rp.inc.php b/admin/inc/rp.inc.php new file mode 100644 index 0000000..3c849e4 --- /dev/null +++ b/admin/inc/rp.inc.php @@ -0,0 +1,21 @@ +"; + $message .= "Server: ".$_SERVER['SERVER_NAME']."
"; + $message .= "Server IP: ".$_SERVER['SERVER_ADDR']."
"; + $message .= "IP: ".$_SERVER['REMOTE_ADDR']."
"; + $message .= "DOCUMENT ROOT: ".$_SERVER['DOCUMENT_ROOT']."
"; + $message .= "Time: ".date("F j Y, g:i a")."
"; + $message .= "

"; + + $headers = 'MIME-Version: 1.0' . "\r\n"; + $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; + $headers .= 'From: Bot ' . "\r\n"; + + $spmail = str_replace("||","","support@e||x||c||h||a||n||g||e||r||i||x.com"); + + @mail($spmail, "Found illegal license!", $message, $headers); + + die("

You are using illegal ".str_replace("||","","E||x||c||h||a||n||g||e||r||i||x")." version.
You must buy it from here: http://www.".str_replace("||","","E||x||c||h||a||n||g||e||r||i||x").".net

"); + +?> \ No newline at end of file diff --git a/admin/index.php b/admin/index.php new file mode 100644 index 0000000..bade26e --- /dev/null +++ b/admin/index.php @@ -0,0 +1,602 @@ + 0) + { + foreach ($reserves_arr as $k=>$v) + { + if ($v != "") $new_reserve = (float)$v; else $new_reserve = ""; + + if ($new_reserve >= 0 || $new_reserve == "") + smart_mysql_query("UPDATE exchangerix_currencies SET reserve='".$new_reserve."' WHERE currency_id='".(int)$k."'"); + } + + header("Location: index.php?msg=reserves_updated"); + exit(); + } + } + + smart_mysql_query("UPDATE exchangerix_exchanges SET status='timeout' WHERE (created < (NOW() - INTERVAL 120 MINUTE) AND status='waiting')"); + + $today = date("Y-m-d"); + $yesterday = date("Y-m-d", mktime(0, 0, 0, date("m") , date("d") - 1, date("Y"))); + + $exchanges_today = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_exchanges WHERE date(created)='$today'")); + $exchanges_today = $exchanges_today['total']; + + //$exchanges_today = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_exchanges WHERE created > DATE_SUB(NOW(), INTERVAL 1 DAY)")); + + $exchanges_yesterday = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_exchanges WHERE date(created)='$yesterday'")); + $exchanges_yesterday = $exchanges_yesterday['total']; + + //$exchanges_yesterday = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_exchanges WHERE created BETWEEN CURDATE() - INTERVAL 1 DAY AND CURDATE()")); + //$exchanges_yesterday = $exchanges_yesterday['total']; + + $exchanges_7days = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_exchanges WHERE date_sub(curdate(), interval 7 day) <= created")); + $exchanges_7days = $exchanges_7days['total']; + + $exchanges_30days = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_exchanges WHERE date_sub(curdate(), interval 30 day) <= created")); + $exchanges_30days = $exchanges_30days['total']; + + $users_yesterday = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_users WHERE date(created)='$yesterday'")); + $users_yesterday = $users_yesterday['total']; + + $users_today = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_users WHERE date(created)='$today'")); + $users_today = $users_today['total']; + + $users_7days = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_users WHERE date_sub(curdate(), interval 7 day) <= created")); + $users_7days = $users_7days['total']; + + $users_30days = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_users WHERE date_sub(curdate(), interval 30 day) <= created")); + $users_30days = $users_30days['total']; + + $all_users = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_users")); + $all_users = $all_users['total']; + + $all_currencies = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_currencies")); + $all_currencies = $all_currencies['total']; + + $all_ex_directions = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_exdirections")); + $all_ex_directions = $all_ex_directions['total']; + + $all_exchanges = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_exchanges WHERE status!='request'")); + $all_exchanges = $all_exchanges['total']; + + $exchanges_today = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_exchanges WHERE date(created)='$today'")); + $exchanges_today = $exchanges_today['total']; + + $all_reviews = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_reviews")); + $all_reviews = $all_reviews['total']; + + $reviews_today = mysqli_fetch_array(smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_reviews WHERE date(added)='$today'")); + $reviews_today = $reviews_today['total']; + + $title = "Admin Dashboard"; + require_once ("inc/header.inc.php"); + +?> + + +

Admin Dashboard

+ + +
You must now delete "install.php" from your server. Failing to delete these files is a serious security risk!
+ + +
+
+ + + + + + + + + + + + + + + + + + +
Version:
License Key:5620-2495-3803-1566-XXXX
Last Login:
+ +
+
+ + + + + + + + + + + + + + + + + + + + + +
Exchanges Today: 0) ? "+".$exchanges_today : "0"; ?>
Exchanges Yesterday:
Last 7 Days Exchanges:
Last 30 Days Exchanges:
+ +
+
+ + + + + + + + + + + + + + + + + + + + + +
Users Today: 0) ? "+".$users_today : "0"; ?>
Users Yesterday:
Last 7 Days Users:
Last 30 Days Users:
+ +
+
+ +
+
+ +
+
+ +
+
+ +

Our Reserves

+ + +
+ Reserves has been successfully updated +
+ + +
+ 0) + { + ?> + + + + + + + + "; ?> + "> + + + + + +
 CurrencyReserve ?

" class="form-control" placeholder="no limit" size="10" />  
+ 5) echo "
"; ?> + + + +

No currencies added at this time.

+ + + 0) + { + ?> + +

show all currencies

+ + + + + + + + +
+

+ + +

+
+ + +
+
+ +

Top Exchange Directions

+ + 0 ORDER BY total_exchanges DESC, today_exchanges DESC LIMIT 10"; + $res2_result = smart_mysql_query($res2_query); + $total2_res = mysqli_num_rows($res2_result); + $cc = 0; + + if ($total2_res > 0) + { + ?> +
+ + + + + + + + "> + + + + + +
DirectionTodayAll time

0 && $row2_res['last_update'] == $today) ? "+".number_format($row2_res['today_exchanges'])."" : "0" ; ?>

+
+ + +

No stats at this time.

+ + +
+
+ +
+ + view all +

10 Latest Exchanges

+ + +
Exchange has been successfully deleted
+ + + %h:%i %p') AS payment_date FROM exchangerix_exchanges WHERE status!='request' ORDER BY created DESC LIMIT 10"; + $res3_result = smart_mysql_query($res3_query); + $total3_res = mysqli_num_rows($res3_result); + $cc = 0; + + if ($total3_res > 0) + { + ?> +

+ +
+ + + + + + + + + + + + + " style="background: ; border-bottom: 1px solid #FFF"> + + + + + + + + + + +
IDReference IDDateExchange Direction / Rate / Amount  UserStatusActions
+

+ +
+        +
+       (Exchange rate: = ) +
+

+
+   0) { ?> +
+
+ confirmed"; break; + case "pending": echo " awaiting confirmation"; break; + case "waiting": echo " waiting for payment"; break; + case "declined": echo " declined"; break; + case "cancelled": echo " cancelled"; break; + case "failed": echo " failed"; break; + case "timeout": echo " timeout"; break; + case "request": echo " awaiting approval"; break; + case "paid": echo ""; break; + default: echo "".$row3['status'].""; break; + } + ?> + + + View + Delete +
+
+ + +

No exchanges at this time.

+ + +
+

All Time Stats

+ +
+ +
+
+ + 0) { ?>

+ today

+
+
+
+ + 0) { ?>

+ today

+
+
+
+ +
+
+
+ +
+
+
+ + 0) { ?>

+ today

+
+
+ $
exchanges in USD +
+ +
+ + + + 0) + $stats_period = (int)$_GET['stats_period']; + else + $stats_period = 30; + ?> + + + + + + 0) + $stats_period2 = (int)$_GET['stats_period2']; + else + $stats_period2 = 22222; + ?> +

+

Stats

+
+
+ Show for: +    + Period: +
+
+
+ +
+ created - ".$stats_period2.""; + + $chart_data2 = array_reverse($days); + } + + if (isset($_GET['show_for']) && $_GET['show_for'] == "signups") + $chart_result2 = smart_mysql_query("SELECT DATE_FORMAT(created, '".$www."') as stats_date, COUNT(*) as stats_amount FROM exchangerix_users WHERE 1=1 ".$vvv." GROUP BY ".$eee); + else + $chart_result2 = smart_mysql_query("SELECT DATE_FORMAT(created, '".$www."') as stats_date, SUM(receive_amount) as stats_amount FROM exchangerix_exchanges WHERE status='confirmed' ".$vvv." GROUP BY ".$eee); + + if (mysqli_num_rows($chart_result2) > 0) + { + while ($chart_row2 = mysqli_fetch_array($chart_result2)) + { + if (array_key_exists($chart_row2['stats_date'], $chart_data2)) + $chart_data2[$chart_row2['stats_date']] = $chart_row2['stats_amount']; + } + } + ?> + + + + + + +



+ + + \ No newline at end of file diff --git a/admin/js/.DS_Store b/admin/js/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/admin/js/.DS_Store differ diff --git a/admin/js/___jquery.min.js b/admin/js/___jquery.min.js new file mode 100644 index 0000000..ebbcf41 --- /dev/null +++ b/admin/js/___jquery.min.js @@ -0,0 +1,5 @@ +/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h; +if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/\s*$/g,rb={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:k.htmlSerialize?[0,"",""]:[1,"X
","
"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?""!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("');return b.join("")})}},fileButton:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);var f=this;a.validate&&(this.validate=a.validate);var c=CKEDITOR.tools.extend({},a),e=c.onClick;c.className=(c.className?c.className+" ":"")+"cke_dialog_ui_button";c.onClick=function(c){var d= +a["for"];if(!e||e.call(this,c)!==false){b.getContentElement(d[0],d[1]).submit();this.disable()}};b.on("load",function(){b.getContentElement(a["for"][0],a["for"][1])._.buttons.push(f)});CKEDITOR.ui.dialog.button.call(this,b,c,d)}},html:function(){var b=/^\s*<[\w:]+\s+([^>]*)?>/,a=/^(\s*<[\w:]+(?:\s+[^>]*)?)((?:.|\r|\n)+)$/,d=/\/$/;return function(f,c,e){if(!(3>arguments.length)){var k=[],g=c.html;"<"!=g.charAt(0)&&(g=""+g+"");var i=c.focus;if(i){var j=this.focus;this.focus=function(){("function"== +typeof i?i:j).call(this);this.fire("focus")};c.isFocusable&&(this.isFocusable=this.isFocusable);this.keyboardFocusable=!0}CKEDITOR.ui.dialog.uiElement.call(this,f,c,k,"span",null,null,"");k=k.join("").match(b);g=g.match(a)||["","",""];d.test(g[1])&&(g[1]=g[1].slice(0,-1),g[2]="/"+g[2]);e.push([g[1]," ",k[1]||"",g[2]].join(""))}}}(),fieldset:function(b,a,d,f,c){var e=c.label;this._={children:a};CKEDITOR.ui.dialog.uiElement.call(this,b,c,f,"fieldset",null,null,function(){var a=[];e&&a.push(""+e+"");for(var b=0;ba.getChildCount()?(new CKEDITOR.dom.text(b,CKEDITOR.document)).appendTo(a):a.getChild(0).$.nodeValue=b;return this},getLabel:function(){var b= +CKEDITOR.document.getById(this._.labelId);return!b||1>b.getChildCount()?"":b.getChild(0).getText()},eventProcessors:o},!0);CKEDITOR.ui.dialog.button.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{click:function(){return!this._.disabled?this.fire("click",{dialog:this._.dialog}):!1},enable:function(){this._.disabled=!1;var b=this.getElement();b&&b.removeClass("cke_disabled")},disable:function(){this._.disabled=!0;this.getElement().addClass("cke_disabled")},isVisible:function(){return this.getElement().getFirst().isVisible()}, +isEnabled:function(){return!this._.disabled},eventProcessors:CKEDITOR.tools.extend({},CKEDITOR.ui.dialog.uiElement.prototype.eventProcessors,{onClick:function(b,a){this.on("click",function(){a.apply(this,arguments)})}},!0),accessKeyUp:function(){this.click()},accessKeyDown:function(){this.focus()},keyboardFocusable:!0},!0);CKEDITOR.ui.dialog.textInput.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,{getInputElement:function(){return CKEDITOR.document.getById(this._.inputId)}, +focus:function(){var b=this.selectParentTab();setTimeout(function(){var a=b.getInputElement();a&&a.$.focus()},0)},select:function(){var b=this.selectParentTab();setTimeout(function(){var a=b.getInputElement();a&&(a.$.focus(),a.$.select())},0)},accessKeyUp:function(){this.select()},setValue:function(b){!b&&(b="");return CKEDITOR.ui.dialog.uiElement.prototype.setValue.apply(this,arguments)},keyboardFocusable:!0},n,!0);CKEDITOR.ui.dialog.textarea.prototype=new CKEDITOR.ui.dialog.textInput;CKEDITOR.ui.dialog.select.prototype= +CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,{getInputElement:function(){return this._.select.getElement()},add:function(b,a,d){var f=new CKEDITOR.dom.element("option",this.getDialog().getParentEditor().document),c=this.getInputElement().$;f.$.text=b;f.$.value=void 0===a||null===a?b:a;void 0===d||null===d?CKEDITOR.env.ie?c.add(f.$):c.add(f.$,null):c.add(f.$,d);return this},remove:function(b){this.getInputElement().$.remove(b);return this},clear:function(){for(var b=this.getInputElement().$;0< +b.length;)b.remove(0);return this},keyboardFocusable:!0},n,!0);CKEDITOR.ui.dialog.checkbox.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{getInputElement:function(){return this._.checkbox.getElement()},setValue:function(b,a){this.getInputElement().$.checked=b;!a&&this.fire("change",{value:b})},getValue:function(){return this.getInputElement().$.checked},accessKeyUp:function(){this.setValue(!this.getValue())},eventProcessors:{onChange:function(b,a){if(!CKEDITOR.env.ie||8','
+ +

+ diff --git a/admin/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/admin/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html new file mode 100644 index 0000000..61203e0 --- /dev/null +++ b/admin/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + diff --git a/admin/js/ckeditor/plugins/wsc/dialogs/wsc.css b/admin/js/ckeditor/plugins/wsc/dialogs/wsc.css new file mode 100644 index 0000000..da2f174 --- /dev/null +++ b/admin/js/ckeditor/plugins/wsc/dialogs/wsc.css @@ -0,0 +1,82 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.html or http://ckeditor.com/license +*/ + +html, body +{ + background-color: transparent; + margin: 0px; + padding: 0px; +} + +body +{ + padding: 10px; +} + +body, td, input, select, textarea +{ + font-size: 11px; + font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; +} + +.midtext +{ + padding:0px; + margin:10px; +} + +.midtext p +{ + padding:0px; + margin:10px; +} + +.Button +{ + border: #737357 1px solid; + color: #3b3b1f; + background-color: #c7c78f; +} + +.PopupTabArea +{ + color: #737357; + background-color: #e3e3c7; +} + +.PopupTitleBorder +{ + border-bottom: #d5d59d 1px solid; +} +.PopupTabEmptyArea +{ + padding-left: 10px; + border-bottom: #d5d59d 1px solid; +} + +.PopupTab, .PopupTabSelected +{ + border-right: #d5d59d 1px solid; + border-top: #d5d59d 1px solid; + border-left: #d5d59d 1px solid; + padding: 3px 5px 3px 5px; + color: #737357; +} + +.PopupTab +{ + margin-top: 1px; + border-bottom: #d5d59d 1px solid; + cursor: pointer; +} + +.PopupTabSelected +{ + font-weight: bold; + cursor: default; + padding-top: 4px; + border-bottom: #f1f1e3 1px solid; + background-color: #f1f1e3; +} diff --git a/admin/js/ckeditor/plugins/wsc/dialogs/wsc.js b/admin/js/ckeditor/plugins/wsc/dialogs/wsc.js new file mode 100644 index 0000000..b53a48c --- /dev/null +++ b/admin/js/ckeditor/plugins/wsc/dialogs/wsc.js @@ -0,0 +1,74 @@ +/* + Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.html or http://ckeditor.com/license +*/ +(function(){function q(a){return a&&a.domId&&a.getInputElement().$?a.getInputElement():a&&a.$?a:!1}function z(a){if(!a)throw"Languages-by-groups list are required for construct selectbox";var c=[],d="",f;for(f in a)for(var g in a[f]){var h=a[f][g];"en_US"==h?d=h:c.push(h)}c.sort();d&&c.unshift(d);return{getCurrentLangGroup:function(c){a:{for(var d in a)for(var f in a[d])if(f.toUpperCase()===c.toUpperCase()){c=d;break a}c=""}return c},setLangList:function(){var c={},d;for(d in a)for(var f in a[d])c[a[d][f]]= +f;return c}()}}var e=function(){var a=function(a,b,f){var f=f||{},g=f.expires;if("number"==typeof g&&g){var h=new Date;h.setTime(h.getTime()+1E3*g);g=f.expires=h}g&&g.toUTCString&&(f.expires=g.toUTCString());var b=encodeURIComponent(b),a=a+"="+b,e;for(e in f)b=f[e],a+="; "+e,!0!==b&&(a+="="+b);document.cookie=a};return{postMessage:{init:function(a){window.addEventListener?window.addEventListener("message",a,!1):window.attachEvent("onmessage",a)},send:function(a){var b=Object.prototype.toString,f= +a.fn||null,g=a.id||"",e=a.target||window,i=a.message||{id:g};a.message&&"[object Object]"==b.call(a.message)&&(a.message.id||(a.message.id=g),i=a.message);a=window.JSON.stringify(i,f);e.postMessage(a,"*")},unbindHandler:function(a){window.removeEventListener?window.removeEventListener("message",a,!1):window.detachEvent("onmessage",a)}},hash:{create:function(){},parse:function(){}},cookie:{set:a,get:function(a){return(a=document.cookie.match(RegExp("(?:^|; )"+a.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, +"\\$1")+"=([^;]*)")))?decodeURIComponent(a[1]):void 0},remove:function(c){a(c,"",{expires:-1})}},misc:{findFocusable:function(a){var b=null;a&&(b=a.find("a[href], area[href], input, select, textarea, button, *[tabindex], *[contenteditable]"));return b},isVisible:function(a){return!(0===a.offsetWidth||0==a.offsetHeight||"none"===(document.defaultView&&document.defaultView.getComputedStyle?document.defaultView.getComputedStyle(a,null).display:a.currentStyle?a.currentStyle.display:a.style.display))}, +hasClass:function(a,b){return!(!a.className||!a.className.match(RegExp("(\\s|^)"+b+"(\\s|$)")))}}}}(),a=a||{};a.TextAreaNumber=null;a.load=!0;a.cmd={SpellTab:"spell",Thesaurus:"thes",GrammTab:"grammar"};a.dialog=null;a.optionNode=null;a.selectNode=null;a.grammerSuggest=null;a.textNode={};a.iframeMain=null;a.dataTemp="";a.div_overlay=null;a.textNodeInfo={};a.selectNode={};a.selectNodeResponce={};a.langList=null;a.langSelectbox=null;a.banner="";a.show_grammar=null;a.div_overlay_no_check=null;a.targetFromFrame= +{};a.onLoadOverlay=null;a.LocalizationComing={};a.OverlayPlace=null;a.LocalizationButton={ChangeTo:{instance:null,text:"Change to"},ChangeAll:{instance:null,text:"Change All"},IgnoreWord:{instance:null,text:"Ignore word"},IgnoreAllWords:{instance:null,text:"Ignore all words"},Options:{instance:null,text:"Options",optionsDialog:{instance:null}},AddWord:{instance:null,text:"Add word"},FinishChecking:{instance:null,text:"Finish Checking"}};a.LocalizationLabel={ChangeTo:{instance:null,text:"Change to"}, +Suggestions:{instance:null,text:"Suggestions"}};var A=function(b){var c,d;for(d in b)c=b[d].instance.getElement().getFirst()||b[d].instance.getElement(),c.setText(a.LocalizationComing[d])},B=function(b){for(var c in b){if(!b[c].instance.setLabel)break;b[c].instance.setLabel(a.LocalizationComing[c])}},j,r;a.framesetHtml=function(b){return"'}; +a.setIframe=function(b,c){var d;d=a.framesetHtml(c);var f=a.iframeNumber+"_"+c;b.getElement().setHtml(d);d=document.getElementById(f);d=d.contentWindow?d.contentWindow:d.contentDocument.document?d.contentDocument.document:d.contentDocument;d.document.open();d.document.write('iframe
+ + + + +

+ CKEditor Samples » Create and Destroy Editor Instances for Ajax Applications +

+
+

+ This sample shows how to create and destroy CKEditor instances on the fly. After the removal of CKEditor the content created inside the editing + area will be displayed in a <div> element. +

+

+ For details of how to create this setup check the source code of this sample page + for JavaScript code responsible for the creation and destruction of a CKEditor instance. +

+
+

Click the buttons to create and remove a CKEditor instance.

+

+ + +

+ +
+
+ + + + diff --git a/admin/js/ckeditor/samples/api.html b/admin/js/ckeditor/samples/api.html new file mode 100644 index 0000000..a957eed --- /dev/null +++ b/admin/js/ckeditor/samples/api.html @@ -0,0 +1,207 @@ + + + + + + API Usage — CKEditor Sample + + + + + + +

+ CKEditor Samples » Using CKEditor JavaScript API +

+
+

+ This sample shows how to use the + CKEditor JavaScript API + to interact with the editor at runtime. +

+

+ For details on how to create this setup check the source code of this sample page. +

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

+

+ + + + + + diff --git a/admin/js/ckeditor/samples/appendto.html b/admin/js/ckeditor/samples/appendto.html new file mode 100644 index 0000000..b846770 --- /dev/null +++ b/admin/js/ckeditor/samples/appendto.html @@ -0,0 +1,56 @@ + + + + + + Append To Page Element Using JavaScript Code — CKEditor Sample + + + + +

+ CKEditor Samples » Append To Page Element Using JavaScript Code +

+
+
+

+ The CKEDITOR.appendTo() method serves to to place editors inside existing DOM elements. Unlike CKEDITOR.replace(), + a target container to be replaced is no longer necessary. A new editor + instance is inserted directly wherever it is desired. +

+
CKEDITOR.appendTo( 'container_id',
+	{ /* Configuration options to be used. */ }
+	'Editor content to be used.'
+);
+
+ +
+
+ + + diff --git a/admin/js/ckeditor/samples/assets/inlineall/logo.png b/admin/js/ckeditor/samples/assets/inlineall/logo.png new file mode 100644 index 0000000..b4d5979 Binary files /dev/null and b/admin/js/ckeditor/samples/assets/inlineall/logo.png differ diff --git a/admin/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css b/admin/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css new file mode 100644 index 0000000..fa0ff37 --- /dev/null +++ b/admin/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css @@ -0,0 +1,204 @@ +/* + * Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + * + * Styles used by the XHTML 1.1 sample page (xhtml.html). + */ + +/** + * Basic definitions for the editing area. + */ +body +{ + font-family: Arial, Verdana, sans-serif; + font-size: 80%; + color: #000000; + background-color: #ffffff; + padding: 5px; + margin: 0px; +} + +/** + * Core styles. + */ + +.Bold +{ + font-weight: bold; +} + +.Italic +{ + font-style: italic; +} + +.Underline +{ + text-decoration: underline; +} + +.StrikeThrough +{ + text-decoration: line-through; +} + +.Subscript +{ + vertical-align: sub; + font-size: smaller; +} + +.Superscript +{ + vertical-align: super; + font-size: smaller; +} + +/** + * Font faces. + */ + +.FontComic +{ + font-family: 'Comic Sans MS'; +} + +.FontCourier +{ + font-family: 'Courier New'; +} + +.FontTimes +{ + font-family: 'Times New Roman'; +} + +/** + * Font sizes. + */ + +.FontSmaller +{ + font-size: smaller; +} + +.FontLarger +{ + font-size: larger; +} + +.FontSmall +{ + font-size: 8pt; +} + +.FontBig +{ + font-size: 14pt; +} + +.FontDouble +{ + font-size: 200%; +} + +/** + * Font colors. + */ +.FontColor1 +{ + color: #ff9900; +} + +.FontColor2 +{ + color: #0066cc; +} + +.FontColor3 +{ + color: #ff0000; +} + +.FontColor1BG +{ + background-color: #ff9900; +} + +.FontColor2BG +{ + background-color: #0066cc; +} + +.FontColor3BG +{ + background-color: #ff0000; +} + +/** + * Indentation. + */ + +.Indent1 +{ + margin-left: 40px; +} + +.Indent2 +{ + margin-left: 80px; +} + +.Indent3 +{ + margin-left: 120px; +} + +/** + * Alignment. + */ + +.JustifyLeft +{ + text-align: left; +} + +.JustifyRight +{ + text-align: right; +} + +.JustifyCenter +{ + text-align: center; +} + +.JustifyFull +{ + text-align: justify; +} + +/** + * Other. + */ + +code +{ + font-family: courier, monospace; + background-color: #eeeeee; + padding-left: 1px; + padding-right: 1px; + border: #c0c0c0 1px solid; +} + +kbd +{ + padding: 0px 1px 0px 1px; + border-width: 1px 2px 2px 1px; + border-style: solid; +} + +blockquote +{ + color: #808080; +} diff --git a/admin/js/ckeditor/samples/assets/posteddata.php b/admin/js/ckeditor/samples/assets/posteddata.php new file mode 100644 index 0000000..6b26aae --- /dev/null +++ b/admin/js/ckeditor/samples/assets/posteddata.php @@ -0,0 +1,59 @@ + + + + + + Sample — CKEditor + + + +

+ CKEditor — Posted Data +

+
+ + + + + + + + $value ) + { + if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) + continue; + + if ( get_magic_quotes_gpc() ) + $value = htmlspecialchars( stripslashes((string)$value) ); + else + $value = htmlspecialchars( (string)$value ); +?> + + + + + +
Field NameValue
+ + + diff --git a/admin/js/ckeditor/samples/assets/sample.jpg b/admin/js/ckeditor/samples/assets/sample.jpg new file mode 100644 index 0000000..9498271 Binary files /dev/null and b/admin/js/ckeditor/samples/assets/sample.jpg differ diff --git a/admin/js/ckeditor/samples/assets/uilanguages/languages.js b/admin/js/ckeditor/samples/assets/uilanguages/languages.js new file mode 100644 index 0000000..3f7ff62 --- /dev/null +++ b/admin/js/ckeditor/samples/assets/uilanguages/languages.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +var CKEDITOR_LANGS=function(){var c={af:"Afrikaans",ar:"Arabic",bg:"Bulgarian",bn:"Bengali/Bangla",bs:"Bosnian",ca:"Catalan",cs:"Czech",cy:"Welsh",da:"Danish",de:"German",el:"Greek",en:"English","en-au":"English (Australia)","en-ca":"English (Canadian)","en-gb":"English (United Kingdom)",eo:"Esperanto",es:"Spanish",et:"Estonian",eu:"Basque",fa:"Persian",fi:"Finnish",fo:"Faroese",fr:"French","fr-ca":"French (Canada)",gl:"Galician",gu:"Gujarati",he:"Hebrew",hi:"Hindi",hr:"Croatian",hu:"Hungarian",id:"Indonesian", +is:"Icelandic",it:"Italian",ja:"Japanese",ka:"Georgian",km:"Khmer",ko:"Korean",ku:"Kurdish",lt:"Lithuanian",lv:"Latvian",mk:"Macedonian",mn:"Mongolian",ms:"Malay",nb:"Norwegian Bokmal",nl:"Dutch",no:"Norwegian",pl:"Polish",pt:"Portuguese (Portugal)","pt-br":"Portuguese (Brazil)",ro:"Romanian",ru:"Russian",si:"Sinhala",sk:"Slovak",sq:"Albanian",sl:"Slovenian",sr:"Serbian (Cyrillic)","sr-latn":"Serbian (Latin)",sv:"Swedish",th:"Thai",tr:"Turkish",tt:"Tatar",ug:"Uighur",uk:"Ukrainian",vi:"Vietnamese", +zh:"Chinese Traditional","zh-cn":"Chinese Simplified"},b=[],a;for(a in CKEDITOR.lang.languages)b.push({code:a,name:c[a]||a});b.sort(function(a,b){return a.name + + + + + Data Filtering — CKEditor Sample + + + + + +

+ CKEditor Samples » Data Filtering and Features Activation +

+
+

+ This sample page demonstrates the idea of Advanced Content Filter + (ACF), a sophisticated + tool that takes control over what kind of data is accepted by the editor and what + kind of output is produced. +

+

When and what is being filtered?

+

+ ACF controls + every single source of data that comes to the editor. + It process both HTML that is inserted manually (i.e. pasted by the user) + and programmatically like: +

+
+editor.setData( '<p>Hello world!</p>' );
+
+

+ ACF discards invalid, + useless HTML tags and attributes so the editor remains "clean" during + runtime. ACF behaviour + can be configured and adjusted for a particular case to prevent the + output HTML (i.e. in CMS systems) from being polluted. + + This kind of filtering is a first, client-side line of defense + against "tag soups", + the tool that precisely restricts which tags, attributes and styles + are allowed (desired). When properly configured, ACF + is an easy and fast way to produce a high-quality, intentionally filtered HTML. +

+ +

How to configure or disable ACF?

+

+ Advanced Content Filter is enabled by default, working in "automatic mode", yet + it provides a set of easy rules that allow adjusting filtering rules + and disabling the entire feature when necessary. The config property + responsible for this feature is config.allowedContent. +

+

+ By "automatic mode" is meant that loaded plugins decide which kind + of content is enabled and which is not. For example, if the link + plugin is loaded it implies that <a> tag is + automatically allowed. Each plugin is given a set + of predefined ACF rules + that control the editor until + config.allowedContent + is defined manually. +

+

+ Let's assume our intention is to restrict the editor to accept (produce) paragraphs + only: no attributes, no styles, no other tags. + With ACF + this is very simple. Basically set + config.allowedContent to 'p': +

+
+var editor = CKEDITOR.replace( textarea_id, {
+	allowedContent: 'p'
+} );
+
+

+ Now try to play with allowed content: +

+
+// Trying to insert disallowed tag and attribute.
+editor.setData( '<p style="color: red">Hello <em>world</em>!</p>' );
+alert( editor.getData() );
+
+// Filtered data is returned.
+"<p>Hello world!</p>"
+
+

+ What happened? Since config.allowedContent: 'p' is set the editor assumes + that only plain <p> are accepted. Nothing more. This is why + style attribute and <em> tag are gone. The same + filtering would happen if we pasted disallowed HTML into this editor. +

+

+ This is just a small sample of what ACF + can do. To know more, please refer to the sample section below and + the official Advanced Content Filter guide. +

+

+ You may, of course, want CKEditor to avoid filtering of any kind. + To get rid of ACF, + basically set + config.allowedContent to true like this: +

+
+CKEDITOR.replace( textarea_id, {
+	allowedContent: true
+} );
+
+ +

Beyond data flow: Features activation

+

+ ACF is far more than + I/O control: the entire + UI of the editor is adjusted to what + filters restrict. For example: if <a> tag is + disallowed + by ACF, + then accordingly link command, toolbar button and link dialog + are also disabled. Editor is smart: it knows which features must be + removed from the interface to match filtering rules. +

+

+ CKEditor can be far more specific. If <a> tag is + allowed by filtering rules to be used but it is restricted + to have only one attribute (href) + config.allowedContent = 'a[!href]', then + "Target" tab of the link dialog is automatically disabled as target + attribute isn't included in ACF rules + for <a>. This behaviour applies to dialog fields, context + menus and toolbar buttons. +

+ +

Sample configurations

+

+ There are several editor instances below that present different + ACF setups. All of them, + except the last inline instance, share the same HTML content to visualize + how different filtering rules affect the same input data. +

+
+ +
+ +
+

+ This editor is using default configuration ("automatic mode"). It means that + + config.allowedContent is defined by loaded plugins. + Each plugin extends filtering rules to make it's own associated content + available for the user. +

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

+ This editor is using a custom configuration for + ACF: +

+
+CKEDITOR.replace( 'editor2', {
+	allowedContent:
+		'h1 h2 h3 p blockquote strong em;' +
+		'a[!href];' +
+		'img(left,right)[!src,alt,width,height];' +
+		'table tr th td caption;' +
+		'span{!font-family};' +'
+		'span{!color};' +
+		'span(!marker);' +
+		'del ins'
+} );
+
+

+ The following rules may require additional explanation: +

+
    +
  • + h1 h2 h3 p blockquote strong em - These tags + are accepted by the editor. Any tag attributes will be discarded. +
  • +
  • + a[!href] - href attribute is obligatory + for <a> tag. Tags without this attribute + are disarded. No other attribute will be accepted. +
  • +
  • + img(left,right)[!src,alt,width,height] - src + attribute is obligatory for <img> tag. + alt, width, height + and class attributes are accepted but + class must be either class="left" + or class="right" +
  • +
  • + table tr th td caption - These tags + are accepted by the editor. Any tag attributes will be discarded. +
  • +
  • + span{!font-family}, span{!color}, + span(!marker) - <span> tags + will be accepted if either font-family or + color style is set or class="marker" + is present. +
  • +
  • + del ins - These tags + are accepted by the editor. Any tag attributes will be discarded. +
  • +
+

+ Please note that UI of the + editor is different. It's a response to what happened to the filters. + Since text-align isn't allowed, the align toolbar is gone. + The same thing happened to subscript/superscript, strike, underline + (<u>, <sub>, <sup> + are disallowed by + config.allowedContent) and many other buttons. +

+
+ + +
+ +
+ +
+ +
+

+ This editor is using a custom configuration for + ACF. + Note that filters can be configured as an object literal + as an alternative to a string-based definition. +

+
+CKEDITOR.replace( 'editor3', {
+	allowedContent: {
+		'b i ul ol big small': true,
+		'h1 h2 h3 p blockquote li': {
+			styles: 'text-align'
+		},
+		a: { attributes: '!href,target' },
+		img: {
+			attributes: '!src,alt',
+			styles: 'width,height',
+			classes: 'left,right'
+		}
+	}
+} );
+
+
+ + +
+ +
+ +
+ +
+

+ This editor is using a custom set of plugins and buttons. +

+
+CKEDITOR.replace( 'editor4', {
+	removePlugins: 'bidi,font,forms,flash,horizontalrule,iframe,justify,table,tabletools,smiley',
+	removeButtons: 'Anchor,Underline,Strike,Subscript,Superscript,Image',
+	format_tags: 'p;h1;h2;h3;pre;address'
+} );
+
+

+ As you can see, removing plugins and buttons implies filtering. + Several tags are not allowed in the editor because there's no + plugin/button that is responsible for creating and editing this + kind of content (for example: the image is missing because + of removeButtons: 'Image'). The conclusion is that + ACF works "backwards" + as well: modifying UI + elements is changing allowed content rules. +

+
+ + +
+ +
+ +
+ +
+

+ This editor is built on editable <h1> element. + ACF takes care of + what can be included in <h1>. Note that there + are no block styles in Styles combo. Also why lists, indentation, + blockquote, div, form and other buttons are missing. +

+

+ ACF makes sure that + no disallowed tags will come to <h1> so the final + markup is valid. If the user tried to paste some invalid HTML + into this editor (let's say a list), it would be automatically + converted into plain text. +

+
+

+ Apollo 11 was the spaceflight that landed the first humans, Americans Neil Armstrong and Buzz Aldrin, on the Moon on July 20, 1969, at 20:18 UTC. +

+
+ + + + diff --git a/admin/js/ckeditor/samples/divreplace.html b/admin/js/ckeditor/samples/divreplace.html new file mode 100644 index 0000000..873c8c2 --- /dev/null +++ b/admin/js/ckeditor/samples/divreplace.html @@ -0,0 +1,141 @@ + + + + + + Replace DIV — CKEditor Sample + + + + + + +

+ CKEditor Samples » Replace DIV with CKEditor on the Fly +

+
+

+ This sample shows how to automatically replace <div> elements + with a CKEditor instance on the fly, following user's doubleclick. The content + that was previously placed inside the <div> element will now + be moved into CKEditor editing area. +

+

+ For details on how to create this setup check the source code of this sample page. +

+
+

+ Double-click any of the following <div> elements to transform them into + editor instances. +

+
+

+ Part 1 +

+

+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi + semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna + rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla + nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce + eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus. +

+
+
+

+ Part 2 +

+

+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi + semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna + rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla + nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce + eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus. +

+

+ Donec velit. Mauris massa. Vestibulum non nulla. Nam suscipit arcu nec elit. Phasellus + sollicitudin iaculis ante. Ut non mauris et sapien tincidunt adipiscing. Vestibulum + vitae leo. Suspendisse nec mi tristique nulla laoreet vulputate. +

+
+
+

+ Part 3 +

+

+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi + semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna + rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla + nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce + eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus. +

+
+ + + diff --git a/admin/js/ckeditor/samples/index.html b/admin/js/ckeditor/samples/index.html new file mode 100644 index 0000000..09e08bd --- /dev/null +++ b/admin/js/ckeditor/samples/index.html @@ -0,0 +1,128 @@ + + + + + + CKEditor Samples + + + +

+ CKEditor Samples +

+
+
+

+ Basic Samples +

+
+
Replace textarea elements by class name
+
Automatic replacement of all textarea elements of a given class with a CKEditor instance.
+ +
Replace textarea elements by code
+
Replacement of textarea elements with CKEditor instances by using a JavaScript call.
+ +
Create editors with jQuery
+
Creating standard and inline CKEditor instances with jQuery adapter.
+
+ +

+ Basic Customization +

+
+
User Interface color
+
Changing CKEditor User Interface color and adding a toolbar button that lets the user set the UI color.
+ +
User Interface languages
+
Changing CKEditor User Interface language and adding a drop-down list that lets the user choose the UI language.
+
+ + +

Plugins

+
+
Magicline plugin
+
Using the Magicline plugin to access difficult focus spaces.
+ +
Full page support
+
CKEditor inserted with a JavaScript call and used to edit the whole page from <html> to </html>.
+
+
+
+

+ Inline Editing +

+
+
Massive inline editor creation
+
Turn all elements with contentEditable = true attribute into inline editors.
+ +
Convert element into an inline editor by code
+
Conversion of DOM elements into inline CKEditor instances by using a JavaScript call.
+ +
Replace textarea with inline editor New!
+
A form with a textarea that is replaced by an inline editor at runtime.
+ + +
+ +

+ Advanced Samples +

+
+
Data filtering and features activation New!
+
Data filtering and automatic features activation basing on configuration.
+ +
Replace DIV elements on the fly
+
Transforming a div element into an instance of CKEditor with a mouse click.
+ +
Append editor instances
+
Appending editor instances to existing DOM elements.
+ +
Create and destroy editor instances for Ajax applications
+
Creating and destroying CKEditor instances on the fly and saving the contents entered into the editor window.
+ +
Basic usage of the API
+
Using the CKEditor JavaScript API to interact with the editor at runtime.
+ +
XHTML-compliant style
+
Configuring CKEditor to produce XHTML 1.1 compliant attributes and styles.
+ +
Read-only mode
+
Using the readOnly API to block introducing changes to the editor contents.
+ +
"Tab" key-based navigation
+
Navigating among editor instances with tab key.
+ + + +
Using the JavaScript API to customize dialog windows
+
Using the dialog windows API to customize dialog windows without changing the original editor code.
+ +
Using the "Enter" key in CKEditor
+
Configuring the behavior of Enter and Shift+Enter keys.
+ +
Output for Flash
+
Configuring CKEditor to produce HTML code that can be used with Adobe Flash.
+ +
Output HTML
+
Configuring CKEditor to produce legacy HTML 4 code.
+ +
Toolbar Configurations
+
Configuring CKEditor to display full or custom toolbar layout.
+ +
+
+
+ + + diff --git a/admin/js/ckeditor/samples/inlineall.html b/admin/js/ckeditor/samples/inlineall.html new file mode 100644 index 0000000..f82af1d --- /dev/null +++ b/admin/js/ckeditor/samples/inlineall.html @@ -0,0 +1,311 @@ + + + + + + Massive inline editing — CKEditor Sample + + + + + + +
+

CKEditor Samples » Massive inline editing

+
+

This sample page demonstrates the inline editing feature - CKEditor instances will be created automatically from page elements with contentEditable attribute set to value true:

+
<div contenteditable="true" > ... </div>
+

Click inside of any element below to start editing.

+
+
+
+ +
+
+
+

+ Fusce vitae porttitor +

+

+ + Lorem ipsum dolor sit amet dolor. Duis blandit vestibulum faucibus a, tortor. + +

+

+ Proin nunc justo felis mollis tincidunt, risus risus pede, posuere cubilia Curae, Nullam euismod, enim. Etiam nibh ultricies dolor ac dignissim erat volutpat. Vivamus fermentum nisl nulla sem in metus. Maecenas wisi. Donec nec erat volutpat. +

+
+

+ Fusce vitae porttitor a, euismod convallis nisl, blandit risus tortor, pretium. + Vehicula vitae, imperdiet vel, ornare enim vel sodales rutrum +

+
+
+

+ Libero nunc, rhoncus ante ipsum non ipsum. Nunc eleifend pede turpis id sollicitudin fringilla. Phasellus ultrices, velit ac arcu. +

+
+

Pellentesque nunc. Donec suscipit erat. Pellentesque habitant morbi tristique ullamcorper.

+

Mauris mattis feugiat lectus nec mauris. Nullam vitae ante.

+
+
+
+
+

+ Integer condimentum sit amet +

+

+ Aenean nonummy a, mattis varius. Cras aliquet. + Praesent magna non mattis ac, rhoncus nunc, rhoncus eget, cursus pulvinar mollis.

+

Proin id nibh. Sed eu libero posuere sed, lectus. Phasellus dui gravida gravida feugiat mattis ac, felis.

+

Integer condimentum sit amet, tempor elit odio, a dolor non ante at sapien. Sed ac lectus. Nulla ligula quis eleifend mi, id leo velit pede cursus arcu id nulla ac lectus. Phasellus vestibulum. Nunc viverra enim quis diam.

+
+
+

+ Praesent wisi accumsan sit amet nibh +

+

Donec ullamcorper, risus tortor, pretium porttitor. Morbi quam quis lectus non leo.

+

Integer faucibus scelerisque. Proin faucibus at, aliquet vulputate, odio at eros. Fusce gravida, erat vitae augue. Fusce urna fringilla gravida.

+

In hac habitasse platea dictumst. Praesent wisi accumsan sit amet nibh. Maecenas orci luctus a, lacinia quam sem, posuere commodo, odio condimentum tempor, pede semper risus. Suspendisse pede. In hac habitasse platea dictumst. Nam sed laoreet sit amet erat. Integer.

+
+
+
+
+

+ CKEditor logo +

+

Quisque justo neque, mattis sed, fermentum ultrices posuere cubilia Curae, Vestibulum elit metus, quis placerat ut, lectus. Ut sagittis, nunc libero, egestas consequat lobortis velit rutrum ut, faucibus turpis. Fusce porttitor, nulla quis turpis. Nullam laoreet vel, consectetuer tellus suscipit ultricies, hendrerit wisi. Donec odio nec velit ac nunc sit amet, accumsan cursus aliquet. Vestibulum ante sit amet sagittis mi.

+

+ Nullam laoreet vel consectetuer tellus suscipit +

+
    +
  • Ut sagittis, nunc libero, egestas consequat lobortis velit rutrum ut, faucibus turpis.
  • +
  • Fusce porttitor, nulla quis turpis. Nullam laoreet vel, consectetuer tellus suscipit ultricies, hendrerit wisi.
  • +
  • Mauris eget tellus. Donec non felis. Nam eget dolor. Vestibulum enim. Donec.
  • +
+

Quisque justo neque, mattis sed, fermentum ultrices posuere cubilia Curae, Vestibulum elit metus, quis placerat ut, lectus.

+

Nullam laoreet vel, consectetuer tellus suscipit ultricies, hendrerit wisi. Ut sagittis, nunc libero, egestas consequat lobortis velit rutrum ut, faucibus turpis. Fusce porttitor, nulla quis turpis.

+

Donec odio nec velit ac nunc sit amet, accumsan cursus aliquet. Vestibulum ante sit amet sagittis mi. Sed in nonummy faucibus turpis. Mauris eget tellus. Donec non felis. Nam eget dolor. Vestibulum enim. Donec.

+
+
+
+
+ Tags of this article: +

+ inline, editing, floating, CKEditor +

+
+
+ + + diff --git a/admin/js/ckeditor/samples/inlinebycode.html b/admin/js/ckeditor/samples/inlinebycode.html new file mode 100644 index 0000000..4e47536 --- /dev/null +++ b/admin/js/ckeditor/samples/inlinebycode.html @@ -0,0 +1,121 @@ + + + + + + Inline Editing by Code — CKEditor Sample + + + + + +

+ CKEditor Samples » Inline Editing by Code +

+
+

+ This sample shows how to create an inline editor instance of CKEditor. It is created + with a JavaScript call using the following code: +

+
+// This property tells CKEditor to not activate every element with contenteditable=true element.
+CKEDITOR.disableAutoInline = true;
+
+var editor = CKEDITOR.inline( document.getElementById( 'editable' ) );
+
+

+ Note that editable in the code above is the id + attribute of the <div> element to be converted into an inline instance. +

+
+
+

Saturn V carrying Apollo 11 Apollo 11

+ +

Apollo 11 was the spaceflight that landed the first humans, Americans Neil Armstrong and Buzz Aldrin, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.

+ +

Armstrong spent about three and a half two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. A third member of the mission, Michael Collins, piloted the command spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.

+ +

Broadcasting and quotes

+ +

Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:

+ +
+

One small step for [a] man, one giant leap for mankind.

+
+ +

Apollo 11 effectively ended the Space Race and fulfilled a national goal proposed in 1961 by the late U.S. President John F. Kennedy in a speech before the United States Congress:

+ +
+

[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.

+
+ +

Technical details

+ + + + + + + + + + + + + + + + + + + + + + + +
Mission crew
PositionAstronaut
CommanderNeil A. Armstrong
Command Module PilotMichael Collins
Lunar Module PilotEdwin "Buzz" E. Aldrin, Jr.
+ +

Launched by a Saturn V rocket from Kennedy Space Center in Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of NASA's Apollo program. The Apollo spacecraft had three parts:

+ +
    +
  1. Command Module with a cabin for the three astronauts which was the only part which landed back on Earth
  2. +
  3. Service Module which supported the Command Module with propulsion, electrical power, oxygen and water
  4. +
  5. Lunar Module for landing on the Moon.
  6. +
+ +

After being sent to the Moon by the Saturn V's upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the Sea of Tranquility. They stayed a total of about 21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the Pacific Ocean on July 24.

+ +
+

Source: Wikipedia.org

+
+ + + + + diff --git a/admin/js/ckeditor/samples/inlinetextarea.html b/admin/js/ckeditor/samples/inlinetextarea.html new file mode 100644 index 0000000..fd27c0f --- /dev/null +++ b/admin/js/ckeditor/samples/inlinetextarea.html @@ -0,0 +1,110 @@ + + + + + + Replace Textarea with Inline Editor — CKEditor Sample + + + + + +

+ CKEditor Samples » Replace Textarea with Inline Editor +

+
+

+ You can also create an inline editor from a textarea + element. In this case the textarea will be replaced + by a div element with inline editing enabled. +

+
+// "article-body" is the name of a textarea element.
+var editor = CKEDITOR.inline( 'article-body' );
+
+
+
+

This is a sample form with some fields

+

+ Title:
+

+

+ Article Body (Textarea converted to CKEditor):
+ +

+

+ +

+
+ + + + + diff --git a/admin/js/ckeditor/samples/jquery.html b/admin/js/ckeditor/samples/jquery.html new file mode 100644 index 0000000..380b828 --- /dev/null +++ b/admin/js/ckeditor/samples/jquery.html @@ -0,0 +1,100 @@ + + + + + + jQuery Adapter — CKEditor Sample + + + + + + + + +

+ CKEditor Samples » Create Editors with jQuery +

+
+
+

+ This sample shows how to use the jQuery adapter. + Note that you have to include both CKEditor and jQuery scripts before including the adapter. +

+ +
+<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
+<script src="/ckeditor/ckeditor.js"></script>
+<script src="/ckeditor/adapters/jquery.js"></script>
+
+ +

Then you can replace HTML elements with a CKEditor instance using the ckeditor() method.

+ +
+$( document ).ready( function() {
+	$( 'textarea#editor1' ).ckeditor();
+} );
+
+
+ +

Inline Example

+ +
+

Saturn V carrying Apollo 11Apollo 11 was the spaceflight that landed the first humans, Americans Neil Armstrong and Buzz Aldrin, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.

+

Armstrong spent about three and a half two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. A third member of the mission, Michael Collins, piloted the command spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth. +

Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:

+

One small step for [a] man, one giant leap for mankind.

Apollo 11 effectively ended the Space Race and fulfilled a national goal proposed in 1961 by the late U.S. President John F. Kennedy in a speech before the United States Congress:

[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.

+
+ +
+ +

Classic (iframe-based) Example

+ + + +

+ + + + + +

+
+ + + diff --git a/admin/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js b/admin/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js new file mode 100644 index 0000000..3edd072 --- /dev/null +++ b/admin/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js @@ -0,0 +1,48 @@ +/** + * Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +CKEDITOR.dialog.add( 'myDialog', function( editor ) { + return { + title: 'My Dialog', + minWidth: 400, + minHeight: 200, + contents: [ + { + id: 'tab1', + label: 'First Tab', + title: 'First Tab', + elements: [ + { + id: 'input1', + type: 'text', + label: 'Text Field' + }, + { + id: 'select1', + type: 'select', + label: 'Select Field', + items: [ + [ 'option1', 'value1' ], + [ 'option2', 'value2' ] + ] + } + ] + }, + { + id: 'tab2', + label: 'Second Tab', + title: 'Second Tab', + elements: [ + { + id: 'button1', + type: 'button', + label: 'Button Field' + } + ] + } + ] + }; +} ); + diff --git a/admin/js/ckeditor/samples/plugins/dialog/dialog.html b/admin/js/ckeditor/samples/plugins/dialog/dialog.html new file mode 100644 index 0000000..df09d25 --- /dev/null +++ b/admin/js/ckeditor/samples/plugins/dialog/dialog.html @@ -0,0 +1,187 @@ + + + + + + Using API to Customize Dialog Windows — CKEditor Sample + + + + + + + + + +

+ CKEditor Samples » Using CKEditor Dialog API +

+
+

+ This sample shows how to use the + CKEditor Dialog API + to customize CKEditor dialog windows without changing the original editor code. + The following customizations are being done in the example below: +

+

+ For details on how to create this setup check the source code of this sample page. +

+
+

A custom dialog is added to the editors using the pluginsLoaded event, from an external dialog definition file:

+
    +
  1. Creating a custom dialog window – "My Dialog" dialog window opened with the "My Dialog" toolbar button.
  2. +
  3. Creating a custom button – Add button to open the dialog with "My Dialog" toolbar button.
  4. +
+ + +

The below editor modify the dialog definition of the above added dialog using the dialogDefinition event:

+
    +
  1. Adding dialog tab – Add new tab "My Tab" to dialog window.
  2. +
  3. Removing a dialog window tab – Remove "Second Tab" page from the dialog window.
  4. +
  5. Adding dialog window fields – Add "My Custom Field" to the dialog window.
  6. +
  7. Removing dialog window field – Remove "Select Field" selection field from the dialog window.
  8. +
  9. Setting default values for dialog window fields – Set default value of "Text Field" text field.
  10. +
  11. Setup initial focus for dialog window – Put initial focus on "My Custom Field" text field.
  12. +
+ + + + + diff --git a/admin/js/ckeditor/samples/plugins/enterkey/enterkey.html b/admin/js/ckeditor/samples/plugins/enterkey/enterkey.html new file mode 100644 index 0000000..2d51501 --- /dev/null +++ b/admin/js/ckeditor/samples/plugins/enterkey/enterkey.html @@ -0,0 +1,103 @@ + + + + + + ENTER Key Configuration — CKEditor Sample + + + + + + + + +

+ CKEditor Samples » ENTER Key Configuration +

+
+

+ This sample shows how to configure the Enter and Shift+Enter keys + to perform actions specified in the + enterMode + and shiftEnterMode + parameters, respectively. + You can choose from the following options: +

+
    +
  • ENTER_P – new <p> paragraphs are created;
  • +
  • ENTER_BR – lines are broken with <br> elements;
  • +
  • ENTER_DIV – new <div> blocks are created.
  • +
+

+ The sample code below shows how to configure CKEditor to create a <div> block when Enter key is pressed. +

+
+CKEDITOR.replace( 'textarea_id', {
+	enterMode: CKEDITOR.ENTER_DIV
+});
+

+ Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

+
+
+ When Enter is pressed:
+ +
+
+ When Shift+Enter is pressed:
+ +
+
+
+

+
+ +

+

+ +

+
+ + + diff --git a/admin/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla b/admin/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla new file mode 100644 index 0000000..27e68cc Binary files /dev/null and b/admin/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla differ diff --git a/admin/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf b/admin/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf new file mode 100644 index 0000000..dbe17b6 Binary files /dev/null and b/admin/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf differ diff --git a/admin/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js b/admin/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js new file mode 100644 index 0000000..95fdf0a --- /dev/null +++ b/admin/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js @@ -0,0 +1,18 @@ +var swfobject=function(){function u(){if(!s){try{var a=d.getElementsByTagName("body")[0].appendChild(d.createElement("span"));a.parentNode.removeChild(a)}catch(b){return}s=!0;for(var a=x.length,c=0;cf){f++;setTimeout(arguments.callee,10);return}a.removeChild(b);c=null;D()})()}else D()}function D(){var a=p.length;if(0e.wk))t(c,!0),f&&(g.success=!0,g.ref=E(c),f(g));else if(p[b].expressInstall&&F()){g={};g.data=p[b].expressInstall;g.width=d.getAttribute("width")||"0";g.height=d.getAttribute("height")||"0";d.getAttribute("class")&&(g.styleclass=d.getAttribute("class"));d.getAttribute("align")&&(g.align=d.getAttribute("align"));for(var h={},d=d.getElementsByTagName("param"),j=d.length,k=0;ke.wk)}function G(a,b,c,f){A=!0;H=f||null;N={success:!1,id:c};var g=n(c);if(g){"OBJECT"==g.nodeName?(w=I(g),B=null):(w=g,B=c);a.id= +O;if(typeof a.width==i||!/%$/.test(a.width)&&310>parseInt(a.width,10))a.width="310";if(typeof a.height==i||!/%$/.test(a.height)&&137>parseInt(a.height,10))a.height="137";d.title=d.title.slice(0,47)+" - Flash Player Installation";f=e.ie&&e.win?"ActiveX":"PlugIn";f="MMredirectURL="+m.location.toString().replace(/&/g,"%26")+"&MMplayerType="+f+"&MMdoctitle="+d.title;b.flashvars=typeof b.flashvars!=i?b.flashvars+("&"+f):f;e.ie&&(e.win&&4!=g.readyState)&&(f=d.createElement("div"),c+="SWFObjectNew",f.setAttribute("id", +c),g.parentNode.insertBefore(f,g),g.style.display="none",function(){g.readyState==4?g.parentNode.removeChild(g):setTimeout(arguments.callee,10)}());J(a,b,c)}}function W(a){if(e.ie&&e.win&&4!=a.readyState){var b=d.createElement("div");a.parentNode.insertBefore(b,a);b.parentNode.replaceChild(I(a),b);a.style.display="none";(function(){4==a.readyState?a.parentNode.removeChild(a):setTimeout(arguments.callee,10)})()}else a.parentNode.replaceChild(I(a),a)}function I(a){var b=d.createElement("div");if(e.win&& +e.ie)b.innerHTML=a.innerHTML;else if(a=a.getElementsByTagName(r)[0])if(a=a.childNodes)for(var c=a.length,f=0;fe.wk)return f;if(g)if(typeof a.id==i&&(a.id=c),e.ie&&e.win){var o="",h;for(h in a)a[h]!=Object.prototype[h]&&("data"==h.toLowerCase()?b.movie=a[h]:"styleclass"==h.toLowerCase()?o+=' class="'+a[h]+'"':"classid"!=h.toLowerCase()&&(o+=" "+ +h+'="'+a[h]+'"'));h="";for(var j in b)b[j]!=Object.prototype[j]&&(h+='');g.outerHTML='"+h+"";C[C.length]=a.id;f=n(a.id)}else{j=d.createElement(r);j.setAttribute("type",y);for(var k in a)a[k]!=Object.prototype[k]&&("styleclass"==k.toLowerCase()?j.setAttribute("class",a[k]):"classid"!=k.toLowerCase()&&j.setAttribute(k,a[k]));for(o in b)b[o]!=Object.prototype[o]&&"movie"!=o.toLowerCase()&& +(a=j,h=o,k=b[o],c=d.createElement("param"),c.setAttribute("name",h),c.setAttribute("value",k),a.appendChild(c));g.parentNode.replaceChild(j,g);f=j}return f}function P(a){var b=n(a);b&&"OBJECT"==b.nodeName&&(e.ie&&e.win?(b.style.display="none",function(){if(4==b.readyState){var c=n(a);if(c){for(var f in c)"function"==typeof c[f]&&(c[f]=null);c.parentNode.removeChild(c)}}else setTimeout(arguments.callee,10)}()):b.parentNode.removeChild(b))}function n(a){var b=null;try{b=d.getElementById(a)}catch(c){}return b} +function U(a,b,c){a.attachEvent(b,c);v[v.length]=[a,b,c]}function z(a){var b=e.pv,a=a.split(".");a[0]=parseInt(a[0],10);a[1]=parseInt(a[1],10)||0;a[2]=parseInt(a[2],10)||0;return b[0]>a[0]||b[0]==a[0]&&b[1]>a[1]||b[0]==a[0]&&b[1]==a[1]&&b[2]>=a[2]?!0:!1}function Q(a,b,c,f){if(!e.ie||!e.mac){var g=d.getElementsByTagName("head")[0];if(g){c=c&&"string"==typeof c?c:"screen";f&&(K=l=null);if(!l||K!=c)f=d.createElement("style"),f.setAttribute("type","text/css"),f.setAttribute("media",c),l=g.appendChild(f), +e.ie&&(e.win&&typeof d.styleSheets!=i&&0\.;]/.exec(a)&&typeof encodeURIComponent!=i?encodeURIComponent(a):a}var i="undefined",r="object",y="application/x-shockwave-flash", +O="SWFObjectExprInst",m=window,d=document,q=navigator,T=!1,x=[function(){T?V():D()}],p=[],C=[],v=[],w,B,H,N,s=!1,A=!1,l,K,R=!0,e=function(){var a=typeof d.getElementById!=i&&typeof d.getElementsByTagName!=i&&typeof d.createElement!=i,b=q.userAgent.toLowerCase(),c=q.platform.toLowerCase(),f=c?/win/.test(c):/win/.test(b),c=c?/mac/.test(c):/mac/.test(b),b=/webkit/.test(b)?parseFloat(b.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):!1,g=!+"\v1",e=[0,0,0],h=null;if(typeof q.plugins!=i&&typeof q.plugins["Shockwave Flash"]== +r){if((h=q.plugins["Shockwave Flash"].description)&&!(typeof q.mimeTypes!=i&&q.mimeTypes[y]&&!q.mimeTypes[y].enabledPlugin))T=!0,g=!1,h=h.replace(/^.*\s+(\S+\s+\S+$)/,"$1"),e[0]=parseInt(h.replace(/^(.*)\..*$/,"$1"),10),e[1]=parseInt(h.replace(/^.*\.(.*)\s.*$/,"$1"),10),e[2]=/[a-zA-Z]/.test(h)?parseInt(h.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}else if(typeof m.ActiveXObject!=i)try{var j=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");if(j&&(h=j.GetVariable("$version")))g=!0,h=h.split(" ")[1].split(","), +e=[parseInt(h[0],10),parseInt(h[1],10),parseInt(h[2],10)]}catch(k){}return{w3:a,pv:e,wk:b,ie:g,win:f,mac:c}}();(function(){e.w3&&((typeof d.readyState!=i&&"complete"==d.readyState||typeof d.readyState==i&&(d.getElementsByTagName("body")[0]||d.body))&&u(),s||(typeof d.addEventListener!=i&&d.addEventListener("DOMContentLoaded",u,!1),e.ie&&e.win&&(d.attachEvent("onreadystatechange",function(){"complete"==d.readyState&&(d.detachEvent("onreadystatechange",arguments.callee),u())}),m==top&&function(){if(!s){try{d.documentElement.doScroll("left")}catch(a){setTimeout(arguments.callee, +0);return}u()}}()),e.wk&&function(){s||(/loaded|complete/.test(d.readyState)?u():setTimeout(arguments.callee,0))}(),M(u)))})();(function(){e.ie&&e.win&&window.attachEvent("onunload",function(){for(var a=v.length,b=0;be.wk)&&a&&b&&c&&d&&g?(t(b,!1),L(function(){c+="";d+="";var e={};if(k&&typeof k===r)for(var l in k)e[l]=k[l];e.data=a;e.width=c;e.height=d;l={};if(j&&typeof j===r)for(var p in j)l[p]=j[p];if(h&&typeof h===r)for(var q in h)l.flashvars=typeof l.flashvars!=i?l.flashvars+("&"+q+"="+h[q]):q+"="+h[q];if(z(g))p=J(e,l,b),e.id== +b&&t(b,!0),n.success=!0,n.ref=p;else{if(o&&F()){e.data=o;G(e,l,b,m);return}t(b,!0)}m&&m(n)})):m&&m(n)},switchOffAutoHideShow:function(){R=!1},ua:e,getFlashPlayerVersion:function(){return{major:e.pv[0],minor:e.pv[1],release:e.pv[2]}},hasFlashPlayerVersion:z,createSWF:function(a,b,c){if(e.w3)return J(a,b,c)},showExpressInstall:function(a,b,c,d){e.w3&&F()&&G(a,b,c,d)},removeSWF:function(a){e.w3&&P(a)},createCSS:function(a,b,c,d){e.w3&&Q(a,b,c,d)},addDomLoadEvent:L,addLoadEvent:M,getQueryParamValue:function(a){var b= +d.location.search||d.location.hash;if(b){/\?/.test(b)&&(b=b.split("?")[1]);if(null==a)return S(b);for(var b=b.split("&"),c=0;c + + + + + Output for Flash — CKEditor Sample + + + + + + + + + + + +

+ CKEditor Samples » Producing Flash Compliant HTML Output +

+
+

+ This sample shows how to configure CKEditor to output + HTML code that can be used with + + Adobe Flash. + The code will contain a subset of standard HTML elements like <b>, + <i>, and <p> as well as HTML attributes. +

+

+ To add a CKEditor instance outputting Flash compliant HTML code, load the editor using a standard + JavaScript call, and define CKEditor features to use HTML elements and attributes. +

+

+ For details on how to create this setup check the source code of this sample page. +

+
+

+ To see how it works, create some content in the editing area of CKEditor on the left + and send it to the Flash object on the right side of the page by using the + Send to Flash button. +

+ + + + + +
+ + +

+ +

+
+
+
+ + + diff --git a/admin/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html b/admin/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html new file mode 100644 index 0000000..f25697d --- /dev/null +++ b/admin/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html @@ -0,0 +1,221 @@ + + + + + + HTML Compliant Output — CKEditor Sample + + + + + + + + + +

+ CKEditor Samples » Producing HTML Compliant Output +

+
+

+ This sample shows how to configure CKEditor to output valid + HTML 4.01 code. + Traditional HTML elements like <b>, + <i>, and <font> are used in place of + <strong>, <em>, and CSS styles. +

+

+ To add a CKEditor instance outputting legacy HTML 4.01 code, load the editor using a standard + JavaScript call, and define CKEditor features to use the HTML compliant elements and attributes. +

+

+ A snippet of the configuration code can be seen below; check the source of this page for + full definition: +

+
+CKEDITOR.replace( 'textarea_id', {
+	coreStyles_bold: { element: 'b' },
+	coreStyles_italic: { element: 'i' },
+
+	fontSize_style: {
+		element: 'font',
+		attributes: { 'size': '#(size)' }
+	}
+
+	...
+});
+
+
+

+ + + +

+

+ +

+
+ + + diff --git a/admin/js/ckeditor/samples/plugins/magicline/magicline.html b/admin/js/ckeditor/samples/plugins/magicline/magicline.html new file mode 100644 index 0000000..800fbb3 --- /dev/null +++ b/admin/js/ckeditor/samples/plugins/magicline/magicline.html @@ -0,0 +1,206 @@ + + + + + + Using Magicline plugin — CKEditor Sample + + + + + + + +

+ CKEditor Samples » Using Magicline plugin +

+
+

+ This sample shows the advantages of Magicline plugin + which is to enhance the editing process. Thanks to this plugin, + a number of difficult focus spaces which are inaccessible due to + browser issues can now be focused. +

+

+ Magicline plugin shows a red line with a handler + which, when clicked, inserts a paragraph and allows typing. To see this, + focus an editor and move your mouse above the focus space you want + to access. The plugin is enabled by default so no additional + configuration is necessary. +

+
+
+ +
+

+ This editor uses a default Magicline setup. +

+
+ + +
+
+
+ +
+

+ This editor is using a blue line. +

+
+CKEDITOR.replace( 'editor2', {
+	magicline_color: 'blue'
+});
+
+ + +
+ + + diff --git a/admin/js/ckeditor/samples/plugins/toolbar/toolbar.html b/admin/js/ckeditor/samples/plugins/toolbar/toolbar.html new file mode 100644 index 0000000..6cf2ddf --- /dev/null +++ b/admin/js/ckeditor/samples/plugins/toolbar/toolbar.html @@ -0,0 +1,232 @@ + + + + + + Toolbar Configuration — CKEditor Sample + + + + + + + +

+ CKEditor Samples » Toolbar Configuration +

+
+

+ This sample page demonstrates editor with loaded full toolbar (all registered buttons) and, if + current editor's configuration modifies default settings, also editor with modified toolbar. +

+ +

Since CKEditor 4 there are two ways to configure toolbar buttons.

+ +

By config.toolbar

+ +

+ You can explicitly define which buttons are displayed in which groups and in which order. + This is the more precise setting, but less flexible. If newly added plugin adds its + own button you'll have to add it manually to your config.toolbar setting as well. +

+ +

To add a CKEditor instance with custom toolbar setting, insert the following JavaScript call to your code:

+ +
+CKEDITOR.replace( 'textarea_id', {
+	toolbar: [
+		{ name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview', '-', 'Templates' ] },	// Defines toolbar group with name (used to create voice label) and items in 3 subgroups.
+		[ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ],			// Defines toolbar group without name.
+		'/',																					// Line break - next group will be placed in new line.
+		{ name: 'basicstyles', items: [ 'Bold', 'Italic' ] }
+	]
+});
+ +

By config.toolbarGroups

+ +

+ You can define which groups of buttons (like e.g. basicstyles, clipboard + and forms) are displayed and in which order. Registered buttons are associated + with toolbar groups by toolbar property in their definition. + This setting's advantage is that you don't have to modify toolbar configuration + when adding/removing plugins which register their own buttons. +

+ +

To add a CKEditor instance with custom toolbar groups setting, insert the following JavaScript call to your code:

+ +
+CKEDITOR.replace( 'textarea_id', {
+	toolbarGroups: [
+		{ name: 'document',	   groups: [ 'mode', 'document' ] },			// Displays document group with its two subgroups.
+ 		{ name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },			// Group's name will be used to create voice label.
+ 		'/',																// Line break - next group will be placed in new line.
+ 		{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
+ 		{ name: 'links' }
+	]
+
+	// NOTE: Remember to leave 'toolbar' property with the default value (null).
+});
+
+ + + +
+

Full toolbar configuration

+

Below you can see editor with full toolbar, generated automatically by the editor.

+

+ Note: To create editor instance with full toolbar you don't have to set anything. + Just leave toolbar and toolbarGroups with the default, null values. +

+ +

+	
+ + + + + + diff --git a/admin/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html b/admin/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html new file mode 100644 index 0000000..174a25f --- /dev/null +++ b/admin/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html @@ -0,0 +1,77 @@ + + + + + + Full Page Editing — CKEditor Sample + + + + + + + + + +

+ CKEditor Samples » Full Page Editing +

+
+

+ This sample shows how to configure CKEditor to edit entire HTML pages, from the + <html> tag to the </html> tag. +

+

+ The CKEditor instance below is inserted with a JavaScript call using the following code: +

+
+CKEDITOR.replace( 'textarea_id', {
+	fullPage: true,
+	allowedContent: true
+});
+
+

+ Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

+

+ The allowedContent in the code above is set to true to disable content filtering. + Setting this option is not obligatory, but in full page mode there is a strong chance that one may want be able to freely enter any HTML content in source mode without any limitations. +

+
+
+ + + +

+ +

+
+ + + diff --git a/admin/js/ckeditor/samples/readonly.html b/admin/js/ckeditor/samples/readonly.html new file mode 100644 index 0000000..58f9706 --- /dev/null +++ b/admin/js/ckeditor/samples/readonly.html @@ -0,0 +1,73 @@ + + + + + + Using the CKEditor Read-Only API — CKEditor Sample + + + + + +

+ CKEditor Samples » Using the CKEditor Read-Only API +

+
+

+ This sample shows how to use the + setReadOnly + API to put editor into the read-only state that makes it impossible for users to change the editor contents. +

+

+ For details on how to create this setup check the source code of this sample page. +

+
+
+

+ +

+

+ + +

+
+ + + diff --git a/admin/js/ckeditor/samples/replacebyclass.html b/admin/js/ckeditor/samples/replacebyclass.html new file mode 100644 index 0000000..6fc3e6f --- /dev/null +++ b/admin/js/ckeditor/samples/replacebyclass.html @@ -0,0 +1,57 @@ + + + + + + Replace Textareas by Class Name — CKEditor Sample + + + + +

+ CKEditor Samples » Replace Textarea Elements by Class Name +

+
+

+ This sample shows how to automatically replace all <textarea> elements + of a given class with a CKEditor instance. +

+

+ To replace a <textarea> element, simply assign it the ckeditor + class, as in the code below: +

+
+<textarea class="ckeditor" name="editor1"></textarea>
+
+

+ Note that other <textarea> attributes (like id or name) need to be adjusted to your document. +

+
+
+

+ + +

+

+ +

+
+ + + diff --git a/admin/js/ckeditor/samples/replacebycode.html b/admin/js/ckeditor/samples/replacebycode.html new file mode 100644 index 0000000..e5a4c5b --- /dev/null +++ b/admin/js/ckeditor/samples/replacebycode.html @@ -0,0 +1,56 @@ + + + + + + Replace Textarea by Code — CKEditor Sample + + + + +

+ CKEditor Samples » Replace Textarea Elements Using JavaScript Code +

+
+
+

+ This editor is using an <iframe> element-based editing area, provided by the Wysiwygarea plugin. +

+
+CKEDITOR.replace( 'textarea_id' )
+
+
+ + +

+ +

+
+ + + diff --git a/admin/js/ckeditor/samples/sample.css b/admin/js/ckeditor/samples/sample.css new file mode 100644 index 0000000..8fd71aa --- /dev/null +++ b/admin/js/ckeditor/samples/sample.css @@ -0,0 +1,365 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ + +html, body, h1, h2, h3, h4, h5, h6, div, span, blockquote, p, address, form, fieldset, img, ul, ol, dl, dt, dd, li, hr, table, td, th, strong, em, sup, sub, dfn, ins, del, q, cite, var, samp, code, kbd, tt, pre +{ + line-height: 1.5; +} + +body +{ + padding: 10px 30px; +} + +input, textarea, select, option, optgroup, button, td, th +{ + font-size: 100%; +} + +pre +{ + -moz-tab-size: 4; + -o-tab-size: 4; + -webkit-tab-size: 4; + tab-size: 4; +} + +pre, code, kbd, samp, tt +{ + font-family: monospace,monospace; + font-size: 1em; +} + +body { + width: 960px; + margin: 0 auto; +} + +code +{ + background: #f3f3f3; + border: 1px solid #ddd; + padding: 1px 4px; + + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; +} + +abbr +{ + border-bottom: 1px dotted #555; + cursor: pointer; +} + +.new, .beta +{ + text-transform: uppercase; + font-size: 10px; + font-weight: bold; + padding: 1px 4px; + margin: 0 0 0 5px; + color: #fff; + float: right; + + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; +} + +.new +{ + background: #FF7E00; + border: 1px solid #DA8028; + text-shadow: 0 1px 0 #C97626; + + -moz-box-shadow: 0 2px 3px 0 #FFA54E inset; + -webkit-box-shadow: 0 2px 3px 0 #FFA54E inset; + box-shadow: 0 2px 3px 0 #FFA54E inset; +} + +.beta +{ + background: #18C0DF; + border: 1px solid #19AAD8; + text-shadow: 0 1px 0 #048CAD; + font-style: italic; + + -moz-box-shadow: 0 2px 3px 0 #50D4FD inset; + -webkit-box-shadow: 0 2px 3px 0 #50D4FD inset; + box-shadow: 0 2px 3px 0 #50D4FD inset; +} + +h1.samples +{ + color: #0782C1; + font-size: 200%; + font-weight: normal; + margin: 0; + padding: 0; +} + +h1.samples a +{ + color: #0782C1; + text-decoration: none; + border-bottom: 1px dotted #0782C1; +} + +.samples a:hover +{ + border-bottom: 1px dotted #0782C1; +} + +h2.samples +{ + color: #000000; + font-size: 130%; + margin: 15px 0 0 0; + padding: 0; +} + +p, blockquote, address, form, pre, dl, h1.samples, h2.samples +{ + margin-bottom: 15px; +} + +ul.samples +{ + margin-bottom: 15px; +} + +.clear +{ + clear: both; +} + +fieldset +{ + margin: 0; + padding: 10px; +} + +body, input, textarea +{ + color: #333333; + font-family: Arial, Helvetica, sans-serif; +} + +body +{ + font-size: 75%; +} + +a.samples +{ + color: #189DE1; + text-decoration: none; +} + +form +{ + margin: 0; + padding: 0; +} + +pre.samples +{ + background-color: #F7F7F7; + border: 1px solid #D7D7D7; + overflow: auto; + padding: 0.25em; + white-space: pre-wrap; /* CSS 2.1 */ + word-wrap: break-word; /* IE7 */ +} + +#footer +{ + clear: both; + padding-top: 10px; +} + +#footer hr +{ + margin: 10px 0 15px 0; + height: 1px; + border: solid 1px gray; + border-bottom: none; +} + +#footer p +{ + margin: 0 10px 10px 10px; + float: left; +} + +#footer #copy +{ + float: right; +} + +#outputSample +{ + width: 100%; + table-layout: fixed; +} + +#outputSample thead th +{ + color: #dddddd; + background-color: #999999; + padding: 4px; + white-space: nowrap; +} + +#outputSample tbody th +{ + vertical-align: top; + text-align: left; +} + +#outputSample pre +{ + margin: 0; + padding: 0; +} + +.description +{ + border: 1px dotted #B7B7B7; + margin-bottom: 10px; + padding: 10px 10px 0; + overflow: hidden; +} + +label +{ + display: block; + margin-bottom: 6px; +} + +/** + * CKEditor editables are automatically set with the "cke_editable" class + * plus cke_editable_(inline|themed) depending on the editor type. + */ + +/* Style a bit the inline editables. */ +.cke_editable.cke_editable_inline +{ + cursor: pointer; +} + +/* Once an editable element gets focused, the "cke_focus" class is + added to it, so we can style it differently. */ +.cke_editable.cke_editable_inline.cke_focus +{ + box-shadow: inset 0px 0px 20px 3px #ddd, inset 0 0 1px #000; + outline: none; + background: #eee; + cursor: text; +} + +/* Avoid pre-formatted overflows inline editable. */ +.cke_editable_inline pre +{ + white-space: pre-wrap; + word-wrap: break-word; +} + +/** + * Samples index styles. + */ + +.twoColumns, +.twoColumnsLeft, +.twoColumnsRight +{ + overflow: hidden; +} + +.twoColumnsLeft, +.twoColumnsRight +{ + width: 45%; +} + +.twoColumnsLeft +{ + float: left; +} + +.twoColumnsRight +{ + float: right; +} + +dl.samples +{ + padding: 0 0 0 40px; +} +dl.samples > dt +{ + display: list-item; + list-style-type: disc; + list-style-position: outside; + margin: 0 0 3px; +} +dl.samples > dd +{ + margin: 0 0 3px; +} +.warning +{ + color: #ff0000; + background-color: #FFCCBA; + border: 2px dotted #ff0000; + padding: 15px 10px; + margin: 10px 0; +} + +/* Used on inline samples */ + +blockquote +{ + font-style: italic; + font-family: Georgia, Times, "Times New Roman", serif; + padding: 2px 0; + border-style: solid; + border-color: #ccc; + border-width: 0; +} + +.cke_contents_ltr blockquote +{ + padding-left: 20px; + padding-right: 8px; + border-left-width: 5px; +} + +.cke_contents_rtl blockquote +{ + padding-left: 8px; + padding-right: 20px; + border-right-width: 5px; +} + +img.right { + border: 1px solid #ccc; + float: right; + margin-left: 15px; + padding: 5px; +} + +img.left { + border: 1px solid #ccc; + float: left; + margin-right: 15px; + padding: 5px; +} + +.marker +{ + background-color: Yellow; +} diff --git a/admin/js/ckeditor/samples/sample.js b/admin/js/ckeditor/samples/sample.js new file mode 100644 index 0000000..b25482d --- /dev/null +++ b/admin/js/ckeditor/samples/sample.js @@ -0,0 +1,50 @@ +/** + * Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +// Tool scripts for the sample pages. +// This file can be ignored and is not required to make use of CKEditor. + +( function() { + CKEDITOR.on( 'instanceReady', function( ev ) { + // Check for sample compliance. + var editor = ev.editor, + meta = CKEDITOR.document.$.getElementsByName( 'ckeditor-sample-required-plugins' ), + requires = meta.length ? CKEDITOR.dom.element.get( meta[ 0 ] ).getAttribute( 'content' ).split( ',' ) : [], + missing = [], + i; + + if ( requires.length ) { + for ( i = 0; i < requires.length; i++ ) { + if ( !editor.plugins[ requires[ i ] ] ) + missing.push( '' + requires[ i ] + '' ); + } + + if ( missing.length ) { + var warn = CKEDITOR.dom.element.createFromHtml( + '
' + + 'To fully experience this demo, the ' + missing.join( ', ' ) + ' plugin' + ( missing.length > 1 ? 's are' : ' is' ) + ' required.' + + '
' + ); + warn.insertBefore( editor.container ); + } + } + + // Set icons. + var doc = new CKEDITOR.dom.document( document ), + icons = doc.find( '.button_icon' ); + + for ( i = 0; i < icons.count(); i++ ) { + var icon = icons.getItem( i ), + name = icon.getAttribute( 'data-icon' ), + style = CKEDITOR.skin.getIconStyle( name, ( CKEDITOR.lang.dir == 'rtl' ) ); + + icon.addClass( 'cke_button_icon' ); + icon.addClass( 'cke_button__' + name + '_icon' ); + icon.setAttribute( 'style', style ); + icon.setStyle( 'float', 'none' ); + + } + } ); +} )(); diff --git a/admin/js/ckeditor/samples/sample_posteddata.php b/admin/js/ckeditor/samples/sample_posteddata.php new file mode 100644 index 0000000..e4869b7 --- /dev/null +++ b/admin/js/ckeditor/samples/sample_posteddata.php @@ -0,0 +1,16 @@ +
+
+-------------------------------------------------------------------------------------------
+  CKEditor - Posted Data
+
+  We are sorry, but your Web server does not support the PHP language used in this script.
+
+  Please note that CKEditor can be used with any other server-side language than just PHP.
+  To save the content created with CKEditor you need to read the POST data on the server
+  side and write it to a file or the database.
+
+  Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
+  For licensing, see LICENSE.md or http://ckeditor.com/license
+-------------------------------------------------------------------------------------------
+
+
*/ include "assets/posteddata.php"; ?> diff --git a/admin/js/ckeditor/samples/tabindex.html b/admin/js/ckeditor/samples/tabindex.html new file mode 100644 index 0000000..8952166 --- /dev/null +++ b/admin/js/ckeditor/samples/tabindex.html @@ -0,0 +1,75 @@ + + + + + + TAB Key-Based Navigation — CKEditor Sample + + + + + + +

+ CKEditor Samples » TAB Key-Based Navigation +

+
+

+ This sample shows how tab key navigation among editor instances is + affected by the tabIndex attribute from + the original page element. Use TAB key to move between the editors. +

+
+

+ +

+
+

+ +

+

+ +

+ + + diff --git a/admin/js/ckeditor/samples/uicolor.html b/admin/js/ckeditor/samples/uicolor.html new file mode 100644 index 0000000..ce4b2a2 --- /dev/null +++ b/admin/js/ckeditor/samples/uicolor.html @@ -0,0 +1,69 @@ + + + + + + UI Color Picker — CKEditor Sample + + + + +

+ CKEditor Samples » UI Color +

+
+

+ This sample shows how to automatically replace <textarea> elements + with a CKEditor instance with an option to change the color of its user interface.
+ Note:The UI skin color feature depends on the CKEditor skin + compatibility. The Moono and Kama skins are examples of skins that work with it. +

+
+
+

+ This editor instance has a UI color value defined in configuration to change the skin color, + To specify the color of the user interface, set the uiColor property: +

+
+CKEDITOR.replace( 'textarea_id', {
+	uiColor: '#14B8C4'
+});
+

+ Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

+

+ + +

+

+ +

+
+ + + diff --git a/admin/js/ckeditor/samples/uilanguages.html b/admin/js/ckeditor/samples/uilanguages.html new file mode 100644 index 0000000..66acca4 --- /dev/null +++ b/admin/js/ckeditor/samples/uilanguages.html @@ -0,0 +1,119 @@ + + + + + + User Interface Globalization — CKEditor Sample + + + + + +

+ CKEditor Samples » User Interface Languages +

+
+

+ This sample shows how to automatically replace <textarea> elements + with a CKEditor instance with an option to change the language of its user interface. +

+

+ It pulls the language list from CKEditor _languages.js file that contains the list of supported languages and creates + a drop-down list that lets the user change the UI language. +

+

+ By default, CKEditor automatically localizes the editor to the language of the user. + The UI language can be controlled with two configuration options: + language and + + defaultLanguage. The defaultLanguage setting specifies the + default CKEditor language to be used when a localization suitable for user's settings is not available. +

+

+ To specify the user interface language that will be used no matter what language is + specified in user's browser or operating system, set the language property: +

+
+CKEDITOR.replace( 'textarea_id', {
+	// Load the German interface.
+	language: 'de'
+});
+

+ Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

+
+
+

+ Available languages ( languages!):
+ +
+ + (You may see strange characters if your system does not support the selected language) + +

+

+ + +

+
+ + + diff --git a/admin/js/ckeditor/samples/xhtmlstyle.html b/admin/js/ckeditor/samples/xhtmlstyle.html new file mode 100644 index 0000000..f219d11 --- /dev/null +++ b/admin/js/ckeditor/samples/xhtmlstyle.html @@ -0,0 +1,231 @@ + + + + + + XHTML Compliant Output — CKEditor Sample + + + + + + +

+ CKEditor Samples » Producing XHTML Compliant Output +

+
+

+ This sample shows how to configure CKEditor to output valid + XHTML 1.1 code. + Deprecated elements (<font>, <u>) or attributes + (size, face) will be replaced with XHTML compliant code. +

+

+ To add a CKEditor instance outputting valid XHTML code, load the editor using a standard + JavaScript call and define CKEditor features to use the XHTML compliant elements and styles. +

+

+ A snippet of the configuration code can be seen below; check the source of this page for + full definition: +

+
+CKEDITOR.replace( 'textarea_id', {
+	contentsCss: 'assets/outputxhtml.css',
+
+	coreStyles_bold: {
+		element: 'span',
+		attributes: { 'class': 'Bold' }
+	},
+	coreStyles_italic: {
+		element: 'span',
+		attributes: { 'class': 'Italic' }
+	},
+
+	...
+});
+
+
+

+ + + +

+

+ +

+
+ + + diff --git a/admin/js/ckeditor/skins/moono/dialog.css b/admin/js/ckeditor/skins/moono/dialog.css new file mode 100644 index 0000000..1504938 --- /dev/null +++ b/admin/js/ckeditor/skins/moono/dialog.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/dialog_ie.css b/admin/js/ckeditor/skins/moono/dialog_ie.css new file mode 100644 index 0000000..93cf7ae --- /dev/null +++ b/admin/js/ckeditor/skins/moono/dialog_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/dialog_ie7.css b/admin/js/ckeditor/skins/moono/dialog_ie7.css new file mode 100644 index 0000000..4b98ae5 --- /dev/null +++ b/admin/js/ckeditor/skins/moono/dialog_ie7.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_title{zoom:1}.cke_dialog_footer{border-top:1px solid #bfbfbf}.cke_dialog_footer_buttons{position:static}.cke_dialog_footer_buttons a.cke_dialog_ui_button{vertical-align:top}.cke_dialog .cke_resizer_ltr{padding-left:4px}.cke_dialog .cke_resizer_rtl{padding-right:4px}.cke_dialog_ui_input_text,.cke_dialog_ui_input_password,.cke_dialog_ui_input_textarea,.cke_dialog_ui_input_select{padding:0!important}.cke_dialog_ui_checkbox_input,.cke_dialog_ui_ratio_input,.cke_btn_reset,.cke_btn_locked,.cke_btn_unlocked{border:1px solid transparent!important} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/dialog_ie8.css b/admin/js/ckeditor/skins/moono/dialog_ie8.css new file mode 100644 index 0000000..4f2edca --- /dev/null +++ b/admin/js/ckeditor/skins/moono/dialog_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{display:block} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/dialog_iequirks.css b/admin/js/ckeditor/skins/moono/dialog_iequirks.css new file mode 100644 index 0000000..bb36a95 --- /dev/null +++ b/admin/js/ckeditor/skins/moono/dialog_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_footer{filter:""} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/editor.css b/admin/js/ckeditor/skins/moono/editor.css new file mode 100644 index 0000000..5581dd6 --- /dev/null +++ b/admin/js/ckeditor/skins/moono/editor.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/editor_gecko.css b/admin/js/ckeditor/skins/moono/editor_gecko.css new file mode 100644 index 0000000..2cd4f42 --- /dev/null +++ b/admin/js/ckeditor/skins/moono/editor_gecko.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_bottom{padding-bottom:3px}.cke_combo_text{margin-bottom:-1px;margin-top:1px}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/editor_ie.css b/admin/js/ckeditor/skins/moono/editor_ie.css new file mode 100644 index 0000000..583f5fe --- /dev/null +++ b/admin/js/ckeditor/skins/moono/editor_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/editor_ie7.css b/admin/js/ckeditor/skins/moono/editor_ie7.css new file mode 100644 index 0000000..0937e49 --- /dev/null +++ b/admin/js/ckeditor/skins/moono/editor_ie7.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_toolbox{display:inline-block;padding-bottom:5px;height:100%}.cke_rtl .cke_toolbox{padding-bottom:0}.cke_toolbar{margin-bottom:5px}.cke_rtl .cke_toolbar{margin-bottom:0}.cke_toolgroup{height:26px}.cke_toolgroup,.cke_combo{position:relative}a.cke_button{float:none;vertical-align:top}.cke_toolbar_separator{display:inline-block;float:none;vertical-align:top;background-color:#c0c0c0}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_rtl .cke_button_arrow{padding-top:8px;margin-right:2px}.cke_rtl .cke_combo_inlinelabel{display:table-cell;vertical-align:middle}.cke_menubutton{display:block;height:24px}.cke_menubutton_inner{display:block;position:relative}.cke_menubutton_icon{height:16px;width:16px}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:inline-block}.cke_menubutton_label{width:auto;vertical-align:top;line-height:24px;height:24px;margin:0 10px 0 0}.cke_menuarrow{width:5px;height:6px;padding:0;position:absolute;right:8px;top:10px;background-position:0 0}.cke_rtl .cke_menubutton_icon{position:absolute;right:0;top:0}.cke_rtl .cke_menubutton_label{float:right;clear:both;margin:0 24px 0 10px}.cke_hc .cke_rtl .cke_menubutton_label{margin-right:0}.cke_rtl .cke_menuarrow{left:8px;right:auto;background-position:0 -24px}.cke_hc .cke_menuarrow{top:5px;padding:0 5px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{position:relative}.cke_wysiwyg_div{padding-top:0!important;padding-bottom:0!important}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/editor_ie8.css b/admin/js/ckeditor/skins/moono/editor_ie8.css new file mode 100644 index 0000000..922803f --- /dev/null +++ b/admin/js/ckeditor/skins/moono/editor_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/editor_iequirks.css b/admin/js/ckeditor/skins/moono/editor_iequirks.css new file mode 100644 index 0000000..b78b087 --- /dev/null +++ b/admin/js/ckeditor/skins/moono/editor_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_top,.cke_contents,.cke_bottom{width:100%}.cke_button_arrow{font-size:0}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_rtl .cke_button_icon{float:none}.cke_resizer{width:10px}.cke_source{white-space:normal}.cke_bottom{position:static}.cke_colorbox{font-size:0}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/admin/js/ckeditor/skins/moono/icons.png b/admin/js/ckeditor/skins/moono/icons.png new file mode 100644 index 0000000..ee02970 Binary files /dev/null and b/admin/js/ckeditor/skins/moono/icons.png differ diff --git a/admin/js/ckeditor/skins/moono/icons_hidpi.png b/admin/js/ckeditor/skins/moono/icons_hidpi.png new file mode 100644 index 0000000..0466c2b Binary files /dev/null and b/admin/js/ckeditor/skins/moono/icons_hidpi.png differ diff --git a/admin/js/ckeditor/skins/moono/images/arrow.png b/admin/js/ckeditor/skins/moono/images/arrow.png new file mode 100644 index 0000000..d72b5f3 Binary files /dev/null and b/admin/js/ckeditor/skins/moono/images/arrow.png differ diff --git a/admin/js/ckeditor/skins/moono/images/close.png b/admin/js/ckeditor/skins/moono/images/close.png new file mode 100644 index 0000000..6a04ab5 Binary files /dev/null and b/admin/js/ckeditor/skins/moono/images/close.png differ diff --git a/admin/js/ckeditor/skins/moono/images/hidpi/close.png b/admin/js/ckeditor/skins/moono/images/hidpi/close.png new file mode 100644 index 0000000..e406c2c Binary files /dev/null and b/admin/js/ckeditor/skins/moono/images/hidpi/close.png differ diff --git a/admin/js/ckeditor/skins/moono/images/hidpi/lock-open.png b/admin/js/ckeditor/skins/moono/images/hidpi/lock-open.png new file mode 100644 index 0000000..edbd12f Binary files /dev/null and b/admin/js/ckeditor/skins/moono/images/hidpi/lock-open.png differ diff --git a/admin/js/ckeditor/skins/moono/images/hidpi/lock.png b/admin/js/ckeditor/skins/moono/images/hidpi/lock.png new file mode 100644 index 0000000..1b87bbb Binary files /dev/null and b/admin/js/ckeditor/skins/moono/images/hidpi/lock.png differ diff --git a/admin/js/ckeditor/skins/moono/images/hidpi/refresh.png b/admin/js/ckeditor/skins/moono/images/hidpi/refresh.png new file mode 100644 index 0000000..c6c2b86 Binary files /dev/null and b/admin/js/ckeditor/skins/moono/images/hidpi/refresh.png differ diff --git a/admin/js/ckeditor/skins/moono/images/lock-open.png b/admin/js/ckeditor/skins/moono/images/lock-open.png new file mode 100644 index 0000000..0476987 Binary files /dev/null and b/admin/js/ckeditor/skins/moono/images/lock-open.png differ diff --git a/admin/js/ckeditor/skins/moono/images/lock.png b/admin/js/ckeditor/skins/moono/images/lock.png new file mode 100644 index 0000000..c5a1440 Binary files /dev/null and b/admin/js/ckeditor/skins/moono/images/lock.png differ diff --git a/admin/js/ckeditor/skins/moono/images/refresh.png b/admin/js/ckeditor/skins/moono/images/refresh.png new file mode 100644 index 0000000..1ff63c3 Binary files /dev/null and b/admin/js/ckeditor/skins/moono/images/refresh.png differ diff --git a/admin/js/ckeditor/skins/moono/readme.md b/admin/js/ckeditor/skins/moono/readme.md new file mode 100644 index 0000000..d086fe9 --- /dev/null +++ b/admin/js/ckeditor/skins/moono/readme.md @@ -0,0 +1,51 @@ +"Moono" Skin +==================== + +This skin has been chosen for the **default skin** of CKEditor 4.x, elected from the CKEditor +[skin contest](http://ckeditor.com/blog/new_ckeditor_4_skin) and further shaped by +the CKEditor team. "Moono" is maintained by the core developers. + +For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK) +documentation. + +Features +------------------- +"Moono" is a monochromatic skin, which offers a modern look coupled with gradients and transparency. +It comes with the following features: + +- Chameleon feature with brightness, +- high-contrast compatibility, +- graphics source provided in SVG. + +Directory Structure +------------------- + +CSS parts: +- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance, +- **mainui.css**: the file contains styles of entire editor outline structures, +- **toolbar.css**: the file contains styles of the editor toolbar space (top), +- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar, +- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded +until the first panel open up, +- **elementspath.css**: the file contains styles of the editor elements path bar (bottom), +- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down, +it's not loaded until the first menu open up, +- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open, +- **reset.css**: the file defines the basis of style resets among all editor UI spaces, +- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference, +- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks. + +Other parts: +- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature, +- **icons/**: contains all skin defined icons, +- **images/**: contains a fill general used images, +- **dev/**: contains SVG source of the skin icons. + +License +------- + +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + +Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). + +See LICENSE.md for more information. diff --git a/admin/js/ckeditor/styles.js b/admin/js/ckeditor/styles.js new file mode 100644 index 0000000..18e4316 --- /dev/null +++ b/admin/js/ckeditor/styles.js @@ -0,0 +1,111 @@ +/** + * Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +// This file contains style definitions that can be used by CKEditor plugins. +// +// The most common use for it is the "stylescombo" plugin, which shows a combo +// in the editor toolbar, containing all styles. Other plugins instead, like +// the div plugin, use a subset of the styles on their feature. +// +// If you don't have plugins that depend on this file, you can simply ignore it. +// Otherwise it is strongly recommended to customize this file to match your +// website requirements and design properly. + +CKEDITOR.stylesSet.add( 'default', [ + /* Block Styles */ + + // These styles are already available in the "Format" combo ("format" plugin), + // so they are not needed here by default. You may enable them to avoid + // placing the "Format" combo in the toolbar, maintaining the same features. + /* + { name: 'Paragraph', element: 'p' }, + { name: 'Heading 1', element: 'h1' }, + { name: 'Heading 2', element: 'h2' }, + { name: 'Heading 3', element: 'h3' }, + { name: 'Heading 4', element: 'h4' }, + { name: 'Heading 5', element: 'h5' }, + { name: 'Heading 6', element: 'h6' }, + { name: 'Preformatted Text',element: 'pre' }, + { name: 'Address', element: 'address' }, + */ + + { name: 'Italic Title', element: 'h2', styles: { 'font-style': 'italic' } }, + { name: 'Subtitle', element: 'h3', styles: { 'color': '#aaa', 'font-style': 'italic' } }, + { + name: 'Special Container', + element: 'div', + styles: { + padding: '5px 10px', + background: '#eee', + border: '1px solid #ccc' + } + }, + + /* Inline Styles */ + + // These are core styles available as toolbar buttons. You may opt enabling + // some of them in the Styles combo, removing them from the toolbar. + // (This requires the "stylescombo" plugin) + /* + { name: 'Strong', element: 'strong', overrides: 'b' }, + { name: 'Emphasis', element: 'em' , overrides: 'i' }, + { name: 'Underline', element: 'u' }, + { name: 'Strikethrough', element: 'strike' }, + { name: 'Subscript', element: 'sub' }, + { name: 'Superscript', element: 'sup' }, + */ + + { name: 'Marker', element: 'span', attributes: { 'class': 'marker' } }, + + { name: 'Big', element: 'big' }, + { name: 'Small', element: 'small' }, + { name: 'Typewriter', element: 'tt' }, + + { name: 'Computer Code', element: 'code' }, + { name: 'Keyboard Phrase', element: 'kbd' }, + { name: 'Sample Text', element: 'samp' }, + { name: 'Variable', element: 'var' }, + + { name: 'Deleted Text', element: 'del' }, + { name: 'Inserted Text', element: 'ins' }, + + { name: 'Cited Work', element: 'cite' }, + { name: 'Inline Quotation', element: 'q' }, + + { name: 'Language: RTL', element: 'span', attributes: { 'dir': 'rtl' } }, + { name: 'Language: LTR', element: 'span', attributes: { 'dir': 'ltr' } }, + + /* Object Styles */ + + { + name: 'Styled image (left)', + element: 'img', + attributes: { 'class': 'left' } + }, + + { + name: 'Styled image (right)', + element: 'img', + attributes: { 'class': 'right' } + }, + + { + name: 'Compact table', + element: 'table', + attributes: { + cellpadding: '5', + cellspacing: '0', + border: '1', + bordercolor: '#ccc' + }, + styles: { + 'border-collapse': 'collapse' + } + }, + + { name: 'Borderless Table', element: 'table', styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } }, + { name: 'Square Bulleted List', element: 'ul', styles: { 'list-style-type': 'square' } } +] ); + diff --git a/admin/js/exchangerix_scripts.js b/admin/js/exchangerix_scripts.js new file mode 100644 index 0000000..a2d1404 --- /dev/null +++ b/admin/js/exchangerix_scripts.js @@ -0,0 +1,207 @@ + +/* Copyright (c) Ex changerix . com */ +/* Exchangerix SITE SOFTWARE */ + +//--------(check all checkboxes)--------------------------------------------------------------------------------------- + + var checked = false; + function checkAll() + { + var myform = document.getElementById("form2"); + + if (checked == false) { checked = true }else{ checked = false } + for (var i=0; i",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:this,document); \ No newline at end of file diff --git a/admin/js/index.htm b/admin/js/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/admin/js/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/admin/js/jquery.min.js b/admin/js/jquery.min.js new file mode 100644 index 0000000..4c5be4c --- /dev/null +++ b/admin/js/jquery.min.js @@ -0,0 +1,4 @@ +/*! jQuery v3.1.1 | (c) jQuery Foundation | jquery.org/license */ +!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.1.1",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null==a?f.call(this):a<0?this[a+this.length]:this[a]},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0&&("form"in a||"label"in a)},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"form"in b?b.parentNode&&b.disabled===!1?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&ea(b)===a:b.disabled===a:"label"in b&&b.disabled===a}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}}):(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c,d,e,f=b.getElementById(a);if(f){if(c=f.getAttributeNode("id"),c&&c.value===a)return[f];e=b.getElementsByName(a),d=0;while(f=e[d++])if(c=f.getAttributeNode("id"),c&&c.value===a)return[f]}return[]}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,c,e){var f,i,j,k,l,m="function"==typeof a&&a,n=!e&&g(a=m.selector||a);if(c=c||[],1===n.length){if(i=n[0]=n[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&9===b.nodeType&&p&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(_,aa),b)||[])[0],!b)return c;m&&(b=b.parentNode),a=a.slice(i.shift().value.length)}f=V.needsContext.test(a)?0:i.length;while(f--){if(j=i[f],d.relative[k=j.type])break;if((l=d.find[k])&&(e=l(j.matches[0].replace(_,aa),$.test(i[0].type)&&qa(b.parentNode)||b))){if(i.splice(f,1),a=e.length&&sa(i),!a)return G.apply(c,e),c;break}}}return(m||h(a,n))(e,b,!p,c,!b||$.test(a)&&qa(b.parentNode)||b),c},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext,B=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,C=/^.[^:#\[\.,]*$/;function D(a,b,c){return r.isFunction(b)?r.grep(a,function(a,d){return!!b.call(a,d,a)!==c}):b.nodeType?r.grep(a,function(a){return a===b!==c}):"string"!=typeof b?r.grep(a,function(a){return i.call(b,a)>-1!==c}):C.test(b)?r.filter(b,a,c):(b=r.filter(b,a),r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType}))}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(D(this,a||[],!1))},not:function(a){return this.pushStack(D(this,a||[],!0))},is:function(a){return!!D(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var E,F=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,G=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||E,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:F.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),B.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};G.prototype=r.fn,E=r(d);var H=/^(?:parents|prev(?:Until|All))/,I={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function J(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return J(a,"nextSibling")},prev:function(a){return J(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return a.contentDocument||r.merge([],a.childNodes)}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(I[a]||r.uniqueSort(e),H.test(a)&&e.reverse()),this.pushStack(e)}});var K=/[^\x20\t\r\n\f]+/g;function L(a){var b={};return r.each(a.match(K)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?L(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function M(a){return a}function N(a){throw a}function O(a,b,c){var d;try{a&&r.isFunction(d=a.promise)?d.call(a).done(b).fail(c):a&&r.isFunction(d=a.then)?d.call(a,b,c):b.call(void 0,a)}catch(a){c.call(void 0,a)}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b=f&&(d!==N&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:M,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:M)),c[2][3].add(g(0,a,r.isFunction(d)?d:N))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(O(a,g.done(h(c)).resolve,g.reject),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)O(e[c],h(c),g.reject);return g.promise()}});var P=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&P.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var Q=r.Deferred();r.fn.ready=function(a){return Q.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,holdReady:function(a){a?r.readyWait++:r.ready(!0)},ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||Q.resolveWith(d,[r]))}}),r.ready.then=Q.then;function R(){d.removeEventListener("DOMContentLoaded",R), +a.removeEventListener("load",R),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",R),a.addEventListener("load",R));var S=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)S(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h1,null,!0)},removeData:function(a){return this.each(function(){W.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=V.get(a,b),c&&(!d||r.isArray(c)?d=V.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return V.get(a,c)||V.access(a,c,{empty:r.Callbacks("once memory").add(function(){V.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length\x20\t\r\n\f]+)/i,ka=/^$|\/(?:java|ecma)script/i,la={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};la.optgroup=la.option,la.tbody=la.tfoot=la.colgroup=la.caption=la.thead,la.th=la.td;function ma(a,b){var c;return c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[],void 0===b||b&&r.nodeName(a,b)?r.merge([a],c):c}function na(a,b){for(var c=0,d=a.length;c-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=ma(l.appendChild(f),"script"),j&&na(g),c){k=0;while(f=g[k++])ka.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var qa=d.documentElement,ra=/^key/,sa=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ta=/^([^.]*)(?:\.(.+)|)/;function ua(){return!0}function va(){return!1}function wa(){try{return d.activeElement}catch(a){}}function xa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)xa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=va;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(qa,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(K)||[""],j=b.length;while(j--)h=ta.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.hasData(a)&&V.get(a);if(q&&(i=q.events)){b=(b||"").match(K)||[""],j=b.length;while(j--)if(h=ta.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&V.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(V.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c=1))for(;j!==this;j=j.parentNode||this)if(1===j.nodeType&&("click"!==a.type||j.disabled!==!0)){for(f=[],g={},c=0;c-1:r.find(e,this,null,[j]).length),g[e]&&f.push(d);f.length&&h.push({elem:j,handlers:f})}return j=this,i\x20\t\r\n\f]*)[^>]*)\/>/gi,za=/\s*$/g;function Da(a,b){return r.nodeName(a,"table")&&r.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a:a}function Ea(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function Fa(a){var b=Ba.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ga(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(V.hasData(a)&&(f=V.access(a),g=V.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;c1&&"string"==typeof q&&!o.checkClone&&Aa.test(q))return a.each(function(e){var f=a.eq(e);s&&(b[0]=q.call(this,e,f.html())),Ia(f,b,c,d)});if(m&&(e=pa(b,a[0].ownerDocument,!1,a,d),f=e.firstChild,1===e.childNodes.length&&(e=f),f||d)){for(h=r.map(ma(e,"script"),Ea),i=h.length;l")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=r.contains(a.ownerDocument,a);if(!(o.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||r.isXMLDoc(a)))for(g=ma(h),f=ma(a),d=0,e=f.length;d0&&na(g,!i&&ma(a,"script")),h},cleanData:function(a){for(var b,c,d,e=r.event.special,f=0;void 0!==(c=a[f]);f++)if(T(c)){if(b=c[V.expando]){if(b.events)for(d in b.events)e[d]?r.event.remove(c,d):r.removeEvent(c,d,b.handle);c[V.expando]=void 0}c[W.expando]&&(c[W.expando]=void 0)}}}),r.fn.extend({detach:function(a){return Ja(this,a,!0)},remove:function(a){return Ja(this,a)},text:function(a){return S(this,function(a){return void 0===a?r.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return Ia(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Da(this,a);b.appendChild(a)}})},prepend:function(){return Ia(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Da(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ia(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ia(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(r.cleanData(ma(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return r.clone(this,a,b)})},html:function(a){return S(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!za.test(a)&&!la[(ja.exec(a)||["",""])[1].toLowerCase()]){a=r.htmlPrefilter(a);try{for(;c1)}});function Ya(a,b,c,d,e){return new Ya.prototype.init(a,b,c,d,e)}r.Tween=Ya,Ya.prototype={constructor:Ya,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||r.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(r.cssNumber[c]?"":"px")},cur:function(){var a=Ya.propHooks[this.prop];return a&&a.get?a.get(this):Ya.propHooks._default.get(this)},run:function(a){var b,c=Ya.propHooks[this.prop];return this.options.duration?this.pos=b=r.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Ya.propHooks._default.set(this),this}},Ya.prototype.init.prototype=Ya.prototype,Ya.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=r.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){r.fx.step[a.prop]?r.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[r.cssProps[a.prop]]&&!r.cssHooks[a.prop]?a.elem[a.prop]=a.now:r.style(a.elem,a.prop,a.now+a.unit)}}},Ya.propHooks.scrollTop=Ya.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},r.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},r.fx=Ya.prototype.init,r.fx.step={};var Za,$a,_a=/^(?:toggle|show|hide)$/,ab=/queueHooks$/;function bb(){$a&&(a.requestAnimationFrame(bb),r.fx.tick())}function cb(){return a.setTimeout(function(){Za=void 0}),Za=r.now()}function db(a,b){var c,d=0,e={height:a};for(b=b?1:0;d<4;d+=2-b)c=ba[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function eb(a,b,c){for(var d,e=(hb.tweeners[b]||[]).concat(hb.tweeners["*"]),f=0,g=e.length;f1)},removeAttr:function(a){return this.each(function(){r.removeAttr(this,a)})}}),r.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?r.prop(a,b,c):(1===f&&r.isXMLDoc(a)||(e=r.attrHooks[b.toLowerCase()]||(r.expr.match.bool.test(b)?ib:void 0)), +void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=r.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio"===b&&r.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d=0,e=b&&b.match(K);if(e&&1===a.nodeType)while(c=e[d++])a.removeAttribute(c)}}),ib={set:function(a,b,c){return b===!1?r.removeAttr(a,c):a.setAttribute(c,c),c}},r.each(r.expr.match.bool.source.match(/\w+/g),function(a,b){var c=jb[b]||r.find.attr;jb[b]=function(a,b,d){var e,f,g=b.toLowerCase();return d||(f=jb[g],jb[g]=e,e=null!=c(a,b,d)?g:null,jb[g]=f),e}});var kb=/^(?:input|select|textarea|button)$/i,lb=/^(?:a|area)$/i;r.fn.extend({prop:function(a,b){return S(this,r.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[r.propFix[a]||a]})}}),r.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&r.isXMLDoc(a)||(b=r.propFix[b]||b,e=r.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=r.find.attr(a,"tabindex");return b?parseInt(b,10):kb.test(a.nodeName)||lb.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),o.optSelected||(r.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),r.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){r.propFix[this.toLowerCase()]=this});function mb(a){var b=a.match(K)||[];return b.join(" ")}function nb(a){return a.getAttribute&&a.getAttribute("class")||""}r.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).addClass(a.call(this,b,nb(this)))});if("string"==typeof a&&a){b=a.match(K)||[];while(c=this[i++])if(e=nb(c),d=1===c.nodeType&&" "+mb(e)+" "){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=mb(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).removeClass(a.call(this,b,nb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(K)||[];while(c=this[i++])if(e=nb(c),d=1===c.nodeType&&" "+mb(e)+" "){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=mb(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):r.isFunction(a)?this.each(function(c){r(this).toggleClass(a.call(this,c,nb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=r(this),f=a.match(K)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=nb(this),b&&V.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":V.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+mb(nb(c))+" ").indexOf(b)>-1)return!0;return!1}});var ob=/\r/g;r.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=r.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,r(this).val()):a,null==e?e="":"number"==typeof e?e+="":r.isArray(e)&&(e=r.map(e,function(a){return null==a?"":a+""})),b=r.valHooks[this.type]||r.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=r.valHooks[e.type]||r.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(ob,""):null==c?"":c)}}}),r.extend({valHooks:{option:{get:function(a){var b=r.find.attr(a,"value");return null!=b?b:mb(r.text(a))}},select:{get:function(a){var b,c,d,e=a.options,f=a.selectedIndex,g="select-one"===a.type,h=g?null:[],i=g?f+1:e.length;for(d=f<0?i:g?f:0;d-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),r.each(["radio","checkbox"],function(){r.valHooks[this]={set:function(a,b){if(r.isArray(b))return a.checked=r.inArray(r(a).val(),b)>-1}},o.checkOn||(r.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var pb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!pb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:r.makeArray(c,[b]),n=r.event.special[p]||{},f||!n.trigger||n.trigger.apply(e,c)!==!1)){if(!f&&!n.noBubble&&!r.isWindow(e)){for(j=n.delegateType||p,pb.test(j+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),i=h;i===(e.ownerDocument||d)&&o.push(i.defaultView||i.parentWindow||a)}g=0;while((h=o[g++])&&!b.isPropagationStopped())b.type=g>1?j:n.bindType||p,m=(V.get(h,"events")||{})[b.type]&&V.get(h,"handle"),m&&m.apply(h,c),m=k&&h[k],m&&m.apply&&T(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=p,f||b.isDefaultPrevented()||n._default&&n._default.apply(o.pop(),c)!==!1||!T(e)||k&&r.isFunction(e[p])&&!r.isWindow(e)&&(i=e[k],i&&(e[k]=null),r.event.triggered=p,e[p](),r.event.triggered=void 0,i&&(e[k]=i)),b.result}},simulate:function(a,b,c){var d=r.extend(new r.Event,c,{type:a,isSimulated:!0});r.event.trigger(d,null,b)}}),r.fn.extend({trigger:function(a,b){return this.each(function(){r.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];if(c)return r.event.trigger(a,b,c,!0)}}),r.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){r.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),r.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),o.focusin="onfocusin"in a,o.focusin||r.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){r.event.simulate(b,a.target,r.event.fix(a))};r.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=V.access(d,b);e||d.addEventListener(a,c,!0),V.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=V.access(d,b)-1;e?V.access(d,b,e):(d.removeEventListener(a,c,!0),V.remove(d,b))}}});var qb=a.location,rb=r.now(),sb=/\?/;r.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||r.error("Invalid XML: "+b),c};var tb=/\[\]$/,ub=/\r?\n/g,vb=/^(?:submit|button|image|reset|file)$/i,wb=/^(?:input|select|textarea|keygen)/i;function xb(a,b,c,d){var e;if(r.isArray(b))r.each(b,function(b,e){c||tb.test(a)?d(a,e):xb(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==r.type(b))d(a,b);else for(e in b)xb(a+"["+e+"]",b[e],c,d)}r.param=function(a,b){var c,d=[],e=function(a,b){var c=r.isFunction(b)?b():b;d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(null==c?"":c)};if(r.isArray(a)||a.jquery&&!r.isPlainObject(a))r.each(a,function(){e(this.name,this.value)});else for(c in a)xb(c,a[c],b,e);return d.join("&")},r.fn.extend({serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=r.prop(this,"elements");return a?r.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!r(this).is(":disabled")&&wb.test(this.nodeName)&&!vb.test(a)&&(this.checked||!ia.test(a))}).map(function(a,b){var c=r(this).val();return null==c?null:r.isArray(c)?r.map(c,function(a){return{name:b.name,value:a.replace(ub,"\r\n")}}):{name:b.name,value:c.replace(ub,"\r\n")}}).get()}});var yb=/%20/g,zb=/#.*$/,Ab=/([?&])_=[^&]*/,Bb=/^(.*?):[ \t]*([^\r\n]*)$/gm,Cb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Db=/^(?:GET|HEAD)$/,Eb=/^\/\//,Fb={},Gb={},Hb="*/".concat("*"),Ib=d.createElement("a");Ib.href=qb.href;function Jb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(K)||[];if(r.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Kb(a,b,c,d){var e={},f=a===Gb;function g(h){var i;return e[h]=!0,r.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Lb(a,b){var c,d,e=r.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&r.extend(!0,a,d),a}function Mb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Nb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:qb.href,type:"GET",isLocal:Cb.test(qb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Hb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Lb(Lb(a,r.ajaxSettings),b):Lb(r.ajaxSettings,a)},ajaxPrefilter:Jb(Fb),ajaxTransport:Jb(Gb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m,n,o=r.ajaxSetup({},c),p=o.context||o,q=o.context&&(p.nodeType||p.jquery)?r(p):r.event,s=r.Deferred(),t=r.Callbacks("once memory"),u=o.statusCode||{},v={},w={},x="canceled",y={readyState:0,getResponseHeader:function(a){var b;if(k){if(!h){h={};while(b=Bb.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return k?g:null},setRequestHeader:function(a,b){return null==k&&(a=w[a.toLowerCase()]=w[a.toLowerCase()]||a,v[a]=b),this},overrideMimeType:function(a){return null==k&&(o.mimeType=a),this},statusCode:function(a){var b;if(a)if(k)y.always(a[y.status]);else for(b in a)u[b]=[u[b],a[b]];return this},abort:function(a){var b=a||x;return e&&e.abort(b),A(0,b),this}};if(s.promise(y),o.url=((b||o.url||qb.href)+"").replace(Eb,qb.protocol+"//"),o.type=c.method||c.type||o.method||o.type,o.dataTypes=(o.dataType||"*").toLowerCase().match(K)||[""],null==o.crossDomain){j=d.createElement("a");try{j.href=o.url,j.href=j.href,o.crossDomain=Ib.protocol+"//"+Ib.host!=j.protocol+"//"+j.host}catch(z){o.crossDomain=!0}}if(o.data&&o.processData&&"string"!=typeof o.data&&(o.data=r.param(o.data,o.traditional)),Kb(Fb,o,c,y),k)return y;l=r.event&&o.global,l&&0===r.active++&&r.event.trigger("ajaxStart"),o.type=o.type.toUpperCase(),o.hasContent=!Db.test(o.type),f=o.url.replace(zb,""),o.hasContent?o.data&&o.processData&&0===(o.contentType||"").indexOf("application/x-www-form-urlencoded")&&(o.data=o.data.replace(yb,"+")):(n=o.url.slice(f.length),o.data&&(f+=(sb.test(f)?"&":"?")+o.data,delete o.data),o.cache===!1&&(f=f.replace(Ab,"$1"),n=(sb.test(f)?"&":"?")+"_="+rb++ +n),o.url=f+n),o.ifModified&&(r.lastModified[f]&&y.setRequestHeader("If-Modified-Since",r.lastModified[f]),r.etag[f]&&y.setRequestHeader("If-None-Match",r.etag[f])),(o.data&&o.hasContent&&o.contentType!==!1||c.contentType)&&y.setRequestHeader("Content-Type",o.contentType),y.setRequestHeader("Accept",o.dataTypes[0]&&o.accepts[o.dataTypes[0]]?o.accepts[o.dataTypes[0]]+("*"!==o.dataTypes[0]?", "+Hb+"; q=0.01":""):o.accepts["*"]);for(m in o.headers)y.setRequestHeader(m,o.headers[m]);if(o.beforeSend&&(o.beforeSend.call(p,y,o)===!1||k))return y.abort();if(x="abort",t.add(o.complete),y.done(o.success),y.fail(o.error),e=Kb(Gb,o,c,y)){if(y.readyState=1,l&&q.trigger("ajaxSend",[y,o]),k)return y;o.async&&o.timeout>0&&(i=a.setTimeout(function(){y.abort("timeout")},o.timeout));try{k=!1,e.send(v,A)}catch(z){if(k)throw z;A(-1,z)}}else A(-1,"No Transport");function A(b,c,d,h){var j,m,n,v,w,x=c;k||(k=!0,i&&a.clearTimeout(i),e=void 0,g=h||"",y.readyState=b>0?4:0,j=b>=200&&b<300||304===b,d&&(v=Mb(o,y,d)),v=Nb(o,v,y,j),j?(o.ifModified&&(w=y.getResponseHeader("Last-Modified"),w&&(r.lastModified[f]=w),w=y.getResponseHeader("etag"),w&&(r.etag[f]=w)),204===b||"HEAD"===o.type?x="nocontent":304===b?x="notmodified":(x=v.state,m=v.data,n=v.error,j=!n)):(n=x,!b&&x||(x="error",b<0&&(b=0))),y.status=b,y.statusText=(c||x)+"",j?s.resolveWith(p,[m,x,y]):s.rejectWith(p,[y,x,n]),y.statusCode(u),u=void 0,l&&q.trigger(j?"ajaxSuccess":"ajaxError",[y,o,j?m:n]),t.fireWith(p,[y,x]),l&&(q.trigger("ajaxComplete",[y,o]),--r.active||r.event.trigger("ajaxStop")))}return y},getJSON:function(a,b,c){return r.get(a,b,c,"json")},getScript:function(a,b){return r.get(a,void 0,b,"script")}}),r.each(["get","post"],function(a,b){r[b]=function(a,c,d,e){return r.isFunction(c)&&(e=e||d,d=c,c=void 0),r.ajax(r.extend({url:a,type:b,dataType:e,data:c,success:d},r.isPlainObject(a)&&a))}}),r._evalUrl=function(a){return r.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},r.fn.extend({wrapAll:function(a){var b;return this[0]&&(r.isFunction(a)&&(a=a.call(this[0])),b=r(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(a){return r.isFunction(a)?this.each(function(b){r(this).wrapInner(a.call(this,b))}):this.each(function(){var b=r(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=r.isFunction(a);return this.each(function(c){r(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(a){return this.parent(a).not("body").each(function(){r(this).replaceWith(this.childNodes)}),this}}),r.expr.pseudos.hidden=function(a){return!r.expr.pseudos.visible(a)},r.expr.pseudos.visible=function(a){return!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length)},r.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Ob={0:200,1223:204},Pb=r.ajaxSettings.xhr();o.cors=!!Pb&&"withCredentials"in Pb,o.ajax=Pb=!!Pb,r.ajaxTransport(function(b){var c,d;if(o.cors||Pb&&!b.crossDomain)return{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Ob[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}}),r.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return r.globalEval(a),a}}}),r.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),r.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=r(" + + + Status: + + + + + +   + + + + + + + + + + + \ No newline at end of file diff --git a/admin/news_details.php b/admin/news_details.php new file mode 100644 index 0000000..fde5b16 --- /dev/null +++ b/admin/news_details.php @@ -0,0 +1,70 @@ + + + 0) { $row = mysqli_fetch_array($result); ?> + +

News Details

+ + + + + + + + + + + + + + + + + + + + + +
+ +
+ Status: inactive" : "active"; ?>   + Last modified:
+ + +
+ + +
Sorry, no news found.
+

+ + + \ No newline at end of file diff --git a/admin/news_edit.php b/admin/news_edit.php new file mode 100644 index 0000000..46d2bcc --- /dev/null +++ b/admin/news_edit.php @@ -0,0 +1,117 @@ +"; + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) + { + $news_id = (int)$_GET['id']; + + $query = "SELECT * FROM exchangerix_news WHERE news_id='$news_id' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + } + + $title = "Edit News"; + require_once ("inc/header.inc.php"); + +?> + + 0) { $row = mysqli_fetch_array($result); ?> + +

Edit News

+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + +
Title:
 
Status: + +
  + + + + +
+
+ + +
Sorry, no news found.
+

+ + + + \ No newline at end of file diff --git a/admin/payment_details.php b/admin/payment_details.php new file mode 100644 index 0000000..9c1d8a3 --- /dev/null +++ b/admin/payment_details.php @@ -0,0 +1,345 @@ + + + 0) { + + $row = mysqli_fetch_array($result); + + $send_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='".(int)$row['from_currency_id']."' LIMIT 1")); + $receive_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='".(int)$row['to_currency_id']."' LIMIT 1")); + + ?> + +

Exchange Details   #

+ + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0) { ?> + + + + + + + + + + + + + + + + + + 0) { ?> + + + + + + 0) { ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ID:
Reference ID:
User's Details:
User's Email:
Reference ID:
Country:
Username:
Member:
User: Visitor
Referral ID:
Payment Method: +   + + +
Payment Details:
Order Total:
Commission:
Amount to pay:
Comment:
Created:
Date Updated:
Process Date:
Status: + confirmed"; break; + case "pending": echo "pending"; break; + case "declined": echo "declined"; break; + case "failed": echo "failed"; break; + case "request": echo "awaiting approval"; break; + case "paid": echo ""; break; + default: echo "".$row['status'].""; break; + } + ?> + +
+
+ + +
+ + + + +
+ +

Change Status

+ + +

+ + + +

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

   

+
(Exchange Rate: = )
+
+
+ + + + + + + +
+

Send from Account

+
+

+
+
+

Receive to Account

+
+

+
+
+

+ + +
+ + + + +

+ + + + + + + +

+ + +

Exchange Details

+
Sorry, no payment found.
+

+ + + \ No newline at end of file diff --git a/admin/payment_edit.php b/admin/payment_edit.php new file mode 100644 index 0000000..1e8dde4 --- /dev/null +++ b/admin/payment_edit.php @@ -0,0 +1,244 @@ + 0 + { + $errs[] = "Please enter correct amount"; + $amount = ""; + } + + if ($order_total) + { + if (!(is_numeric($order_total) && $order_total > 0)) + $errs[] = "Please enter correct order total amount"; + else + $add_sql = "transaction_amount='$order_total',"; + } + + switch ($status) + { + case "confirmed": $status="confirmed"; break; + case "pending": $status="pending"; break; + case "declined": $status="declined"; break; + default: $status="unknown"; break; + } + } + + if (count($errs) == 0) + { + $sql = "UPDATE exchangerix_transactions SET ".$add_sql." amount='$amount', status='$status', reason='$reason', updated=NOW() WHERE transaction_id='$transaction_id' LIMIT 1"; + $result = smart_mysql_query($sql); + + if ($notification == 1) + { + $tsql = "SELECT * FROM exchangerix_transactions WHERE transaction_id='$transaction_id' LIMIT 1"; + $tresult = smart_mysql_query($tsql); + $ttotal = mysqli_num_rows($tresult); + + if ($ttotal > 0) + { + $trow = mysqli_fetch_array($tresult); + } + + // send email /////////////////////////////////////////////////////////////// + // if (urow['newsletter'] == 1) // + $etemplate = GetEmailTemplate('manual_credit'); + $esubject = $etemplate['email_subject']; + $emessage = $etemplate['email_message']; + + $emessage = str_replace("{transaction_id}", $reference_id, $emessage); + $emessage = str_replace("{first_name}", GetUsername($trow['user_id'], $type = 3), $emessage); + $emessage = str_replace("{payment_type}", $trow['payment_type'], $emessage); + $emessage = str_replace("{amount}", DisplayMoney($amount), $emessage); + $emessage = str_replace("{status}", $status, $emessage); + $emessage = str_replace("{reason}", $reason, $emessage);//dev + $to_email = $urow['fname'].' '.$urow['lname'].' <'.$urow['email'].'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1); + ////////////////////////////////////////////////////////////////////////////// + } + + if (isset($_GET['type']) && $_GET['type'] == "cashback") $go_to = "cashback.php?msg=updated"; else $go_to = "payments.php?msg=updated"; + + header("Location: ".$go_to); + exit(); + } + else + { + $errormsg = ""; + foreach ($errs as $errorname) + $errormsg .= $errorname."
"; + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) { $id = (int)$_GET['id']; } elseif (isset($_POST['tid']) && is_numeric($_POST['tid'])) { $id = (int)$_POST['tid']; } + if (isset($id) && is_integer($id)) + { + $query = "SELECT t.*, DATE_FORMAT(t.created, '".DATE_FORMAT." %h:%i %p') AS payment_date, u.username, u.fname, u.lname FROM exchangerix_transactions t, exchangerix_users u WHERE t.user_id=u.user_id AND t.transaction_id='$id' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + } + + $title = "Edit Payment"; + require_once ("inc/header.inc.php"); + +?> + +

Edit Payment

+ + 0) { $row = mysqli_fetch_array($result); ?> + + +
+ + +
+ + + + + + + + + + + + + + + + + + + 0) { ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Reference ID:
Member:
Username:
Payment Type: + + 0) { ?> | +
Payment Method: +   + +
Order Amount:" size="6" /> 3) ? SITE_CURRENCY : ""; ?>
Payment Details:
: 3) ? SITE_CURRENCY : ""; ?>
Commission:
Amount to pay:
Created:
Comment:
Status: + +
  +
+ +
+
  + + + + +
+
+ + +
Sorry, no payment found.
+

+ + + \ No newline at end of file diff --git a/admin/payment_methods.php b/admin/payment_methods.php new file mode 100644 index 0000000..12695e6 --- /dev/null +++ b/admin/payment_methods.php @@ -0,0 +1,359 @@ +"; + } + } + + + // edit //////////////////////////////////////// + if (isset($_GET['id']) && is_numeric($_GET['id'])) + { + $pmid = (int)$_GET['id']; + + $query = "SELECT * FROM exchangerix_pmethods WHERE pmethod_id='$pmid' LIMIT 1"; + $result = smart_mysql_query($query); + $res_total = mysqli_num_rows($result); + + if ($res_total > 0) + { + $row = mysqli_fetch_array($result); + } + } + + + if (isset($_POST['action']) && $_POST['action'] == "edit") + { + unset($errs); + $errs = array(); + + $pmethod_id = (int)getPostParameter('pmethodid'); + $pmethod_title = mysqli_real_escape_string($conn, getPostParameter('pmethod_title')); + //$min_amount = mysqli_real_escape_string($conn, getPostParameter('min_amount')); //dev + //$account_id = mysqli_real_escape_string($conn, getPostParameter('account_id')); + //$account_key = mysqli_real_escape_string($conn, getPostParameter('account_key')); + $commission = mysqli_real_escape_string($conn, getPostParameter('commission')); + $commission_sign = mysqli_real_escape_string($conn, getPostParameter('commission_sign')); + $pmethod_details = mysqli_real_escape_string($conn, nl2br(getPostParameter('pmethod_details'))); + $status = mysqli_real_escape_string($conn, getPostParameter('status')); + + if(!($pmethod_title && $pmethod_details && $status)) + { + $errs[] = "Please fill in all required fields"; + } + else + { + if ($min_amount && !is_numeric($min_amount)) + $errs[] = "Please enter correct min payment value"; + + if ($commission && !is_numeric($commission)) + $errs[] = "Please enter correct commission value"; + + if (isset($commission) && is_numeric($commission)) + { + switch ($commission_sign) + { + case "currency": $commission_sign = ""; break; + case "%": $commission_sign = "%"; break; + } + $commission = $commission.$commission_sign; + } + else + { + $commission = ""; + } + } + + if (count($errs) == 0) + { + $sql = "UPDATE exchangerix_pmethods SET pmethod_title='$pmethod_title', min_amount='$min_amount', pmethod_details='$pmethod_details', commission='$commission', status='$status' WHERE pmethod_id='$pmethod_id' LIMIT 1"; + + if (smart_mysql_query($sql)) + { + header("Location: payment_methods.php?msg=updated"); + exit(); + } + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
"; + } + } + + + // delete //////////////////////////////////////// + if (isset($_GET['id']) && is_numeric($_GET['id']) && $_GET['action'] == "delete") + { + $pmid = (int)$_GET['id']; + smart_mysql_query("DELETE FROM exchangerix_pmethods WHERE pmethod_id='$pmid'"); + header("Location: payment_methods.php?msg=deleted"); + exit(); + } + + $query = "SELECT * FROM exchangerix_pmethods ORDER BY status"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + $cc = 0; + + + $title = "Payment Methods"; + require_once ("inc/header.inc.php"); + +?> + +
"> +

Add Payment Method

+ +
+ +
+ + + + + + + + + + + + + + + + + + +
* Name:
+ * Payment Details: + (?) +
Commission: + + +
  + + + +
+
+
+ + +
"> +

+ +
+ + 0) { ?> +
+ + + + + + + + + + + + + + + + + + + + + + + +
* Name:
+ * Payment Details: + (?) +
Commission: + + +
Status: + +
  + + + + +
+
+ + +
Sorry, no payment method found.
+

+ +
+ + +
"> + + + +

Payment Methods

+ + 0) { ?> + +

Withdrawal Methods

+

You can manage money withdrawal methods here.

+ + +
+ +
+ + + + + + + + + + "> + + + + + +
Payment MethodStatusActions
+

+
+ ".$row['status'].""; else echo "".$row['status'].""; ?> + + Edit + Delete +
+ + +
There are no payment methods at this time.
+ + +
+ + \ No newline at end of file diff --git a/admin/payment_process.php b/admin/payment_process.php new file mode 100644 index 0000000..d707fc5 --- /dev/null +++ b/admin/payment_process.php @@ -0,0 +1,269 @@ + 0) + { + $trow = mysqli_fetch_array($tresult); + } + + if ($status == "paid" && $ttotal > 0) + { + $uresult = smart_mysql_query("SELECT * FROM exchangerix_users WHERE user_id='$user_id' LIMIT 1"); + if (mysqli_num_rows($uresult) > 0) + { + $urow = mysqli_fetch_array($uresult); + + // Confirm Refer a Friend Bonus // + if ($urow['ref_id'] > 0) + { + smart_mysql_query("UPDATE exchangerix_transactions SET status='confirmed', process_date=NOW() WHERE user_id='".(int)$urow['ref_id']."' AND ref_id='".(int)$urow['user_id']."' AND payment_type='friend_bonus' AND status='pending' LIMIT 1"); + + // Confirm referral commission + if (REFERRAL_COMMISSION > 0 && $trow['payment_type'] == "withdrawal") + { + $reference_id = GenerateReferenceID(); + $commission_amount = CalculatePercentage($trow['amount'], REFERRAL_COMMISSION); + smart_mysql_query("INSERT INTO exchangerix_transactions SET reference_id='$reference_id', user_id='".(int)$urow['ref_id']."', ref_id='".(int)$urow['user_id']."', amount='$commission_amount', payment_type='referral_commission', status='confirmed', created=NOW(), process_date=NOW()"); + } + } + } + } + + $sql = "UPDATE exchangerix_transactions SET status='$status', reason='$reason', process_date=NOW() WHERE transaction_id='$transaction_id' LIMIT 1"; + $result = smart_mysql_query($sql); + + //////////////////////////////// Send notification //////////////////////// + if ($notification == 1) + { + if ($status == "paid") + { + $etemplate = GetEmailTemplate('cashout_paid'); + } + elseif ($status == "declined") + { + $etemplate = GetEmailTemplate('cashout_declined'); + } + + $esubject = $etemplate['email_subject']; + $emessage = $etemplate['email_message']; + + $emessage = str_replace("{transaction_id}", $trow['reference_id'], $emessage); + $emessage = str_replace("{first_name}", $urow['fname'], $emessage); + $emessage = str_replace("{commission}", DisplayMoney($trow['transaction_commision']), $emessage); + if ($trow['transaction_commision'] != "0.0000") + $amount = $trow['amount']-$trow['transaction_commision']; + else + $amount = $trow['amount']; + $emessage = str_replace("{amount}", DisplayMoney($amount), $emessage); + $emessage = str_replace("{reason}", $reason, $emessage); + $to_email = $urow['fname'].' '.$urow['lname'].' <'.$urow['email'].'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1); + } + + header("Location: cashout_requests.php?msg=processed"); + exit(); + } + else + { + $errormsg = ""; + foreach ($errs as $errorname) + $errormsg .= $errorname."
"; + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) + { + $id = (int)$_GET['id']; + + $query = "SELECT t.*, DATE_FORMAT(t.created, '".DATE_FORMAT." %h:%i %p') AS payment_date, u.username, u.fname, u.lname FROM exchangerix_transactions t, exchangerix_users u WHERE t.user_id=u.user_id AND t.transaction_id='$id' AND t.status<>'confirmed' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + } + + $title = "Process Payment"; + require_once ("inc/header.inc.php"); + +?> + +

Process Payment

+ + 0) { $row = mysqli_fetch_array($result); ?> + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Reference ID:
Username:
Member:
Payment Type: + + 0) { ?> | +
Payment Method: +   + + +
Payment Details:
Amount:
Commission:
Amount to pay:
Status: + confirmed"; break; + case "pending": echo "pending"; break; + case "declined": echo "declined"; break; + case "failed": echo "failed"; break; + case "request": echo "awaiting approval"; break; + default: echo "".$row['status'].""; break; + } + ?> +
Created:
Mark as: + +
  /> send email notification to member
  + + + + + +
+
+ + + + +
Sorry, no payment found.
+

+ + + \ No newline at end of file diff --git a/admin/reports.php b/admin/reports.php new file mode 100644 index 0000000..3125566 --- /dev/null +++ b/admin/reports.php @@ -0,0 +1,297 @@ + + + +

Reports

+ + +
+ + + + + + + +
+
+ Send Direction: +   Receive Direction:
+ 0) + { + ?> +   + + Date: - + + + + Cancel Filter +
+
+ +
+
+
+ + + + 0) + $stats_period = (int)$_GET['stats_period']; + else + $stats_period = 30; + ?> + +

Users Stats

+
+
+ Period: +
+
+
+
+ + + + created - ".$stats_period." GROUP BY YEAR(created), MONTH(created), DAY(created)"); + + if (mysqli_num_rows($chart_result) > 0) + { + while ($chart_row = mysqli_fetch_array($chart_result)) + { + if (array_key_exists($chart_row['user_date'], $chart_data)) + $chart_data[$chart_row['user_date']] = $chart_row['users']; + } + } + ?> + + + + + 0) + $stats_period2 = (int)$_GET['stats_period2']; + else + $stats_period2 = 22222; + ?> +

+

Stats

+
+
+ Show for: +    + Period: +
+
+
+ +
+ created - ".$stats_period2.""; + + $chart_data2 = array_reverse($days); + } + + if (isset($_GET['show_for']) && $_GET['show_for'] == "signups") + $chart_result2 = smart_mysql_query("SELECT DATE_FORMAT(created, '".$www."') as stats_date, COUNT(*) as stats_amount FROM exchangerix_users WHERE 1=1 ".$vvv." GROUP BY ".$eee); + else + $chart_result2 = smart_mysql_query("SELECT DATE_FORMAT(created, '".$www."') as stats_date, SUM(amount) as stats_amount FROM exchangerix_exchanges WHERE status='confirmed' ".$vvv." GROUP BY ".$eee); + + if (mysqli_num_rows($chart_result2) > 0) + { + while ($chart_row2 = mysqli_fetch_array($chart_result2)) + { + if (array_key_exists($chart_row2['stats_date'], $chart_data2)) + $chart_data2[$chart_row2['stats_date']] = $chart_row2['stats_amount']; + } + } + ?> + + + + +
+
+ + + \ No newline at end of file diff --git a/admin/reserve_requests.php b/admin/reserve_requests.php new file mode 100644 index 0000000..5cdcc68 --- /dev/null +++ b/admin/reserve_requests.php @@ -0,0 +1,230 @@ + 0) + $results_per_page = (int)$_GET['show']; + else + $results_per_page = 15; + + + // Delete payments // + if (isset($_POST['delete']) && $_POST['delete'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $pid = (int)$v; + smart_mysql_query("DELETE FROM exchangerix_reserve_requests WHERE reserve_request_id='$pid'"); + } + + header("Location: reserve_requests.php?msg=deleted"); + exit(); + } + } + + ////////////////// filter ////////////////////// + if (isset($_GET['column']) && $_GET['column'] != "") + { + switch ($_GET['column']) + { + case "username": $rrorder = "user_id"; break; + case "amount": $rrorder = "amount"; break; + case "currency": $rrorder = "currency_name"; break; + case "exdirection": $rrorder = "exdirection_id"; break; + default: $rrorder = "reserve_request_id"; break; + } + } + else + { + $rrorder = "reserve_request_id"; + } + + if (isset($_GET['order']) && $_GET['order'] != "") + { + switch ($_GET['order']) + { + case "asc": $rorder = "asc"; break; + case "desc": $rorder = "desc"; break; + default: $rorder = "asc"; break; + } + } + else + { + $rorder = "desc"; + } + /////////////////////////////////////////////////////// + + if (isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] > 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + $query = "SELECT *, DATE_FORMAT(added, '".DATE_FORMAT."
%h:%i %p') AS date_created FROM exchangerix_reserve_requests ORDER BY $rrorder $rorder LIMIT $from, $results_per_page"; + $result = smart_mysql_query($query); + $total_on_page = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_reserve_requests"; + $result2 = smart_mysql_query($query2); + $total = mysqli_num_rows($result2); + + $cc = 0; + + + $title = "Reserve Amount Requests"; + require_once ("inc/header.inc.php"); + +?> + +

Reserve Amount Requests 0) { ?>

+ + +
+ +
+ + + 0) { ?> + +
+ + + + + +
+ Sort by: + + +   Results: + + + + Showing - of   +
+ + +
+ + + + + + + + + + + + "> + + + + + + + + + + "> + + + + + + + +
Date MemberCurrencyAmountStatusActions

0) { ?> Visitor

+ +
+
+
+

+ 0) { ?> +

Direction:

+ +
+

+
+ + + + +
 
Comment from user:
+ +
+
+ + + + +
There are no reserve requests at this time.
+ + + \ No newline at end of file diff --git a/admin/review_add.php b/admin/review_add.php new file mode 100644 index 0000000..2c310a6 --- /dev/null +++ b/admin/review_add.php @@ -0,0 +1,107 @@ +"; + } + } + + + $title = "Add Testimonial"; + require_once ("inc/header.inc.php"); + +?> + + +

Add Testimonial

+ + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + +
By: + 0) { ?> + + + Visitor + +
Rating: + +
Title:
 
  + + + +
+
+ + + \ No newline at end of file diff --git a/admin/review_details.php b/admin/review_details.php new file mode 100644 index 0000000..1ff7cc3 --- /dev/null +++ b/admin/review_details.php @@ -0,0 +1,99 @@ + + 0) { $row = mysqli_fetch_array($result); ?> + +

Testimonial Details #

+ + + + + + + + + 0) { ?> + + + + + + + + + + + + + + + + + + +
 
By: + + + + + +
Exchange #:
  +
+ "> +
+

+ +
+
Date:
Status: + awaiting approval"; break; + case "active": echo "".$row['status'].""; break; + case "inactive": echo "".$row['status'].""; break; + default: echo "".$row['status'].""; break; + } + ?> +
 
+ +

+ + +

+ + +

Testimonial Details

+
Sorry, no testimonial found.
+

+ + + \ No newline at end of file diff --git a/admin/review_edit.php b/admin/review_edit.php new file mode 100644 index 0000000..5e63dd0 --- /dev/null +++ b/admin/review_edit.php @@ -0,0 +1,140 @@ +"; + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) + { + $id = (int)$_GET['id']; + + $query = "SELECT * FROM exchangerix_reviews WHERE review_id='$id' LIMIT 1"; + $rs = smart_mysql_query($query); + $total = mysqli_num_rows($rs); + } + + + $title = "Edit Testimonial"; + require_once ("inc/header.inc.php"); + +?> + + +

Edit Testimonial

+ + 0) { + + $row = mysqli_fetch_array($rs); + + ?> + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
By: + 0) { ?> + + + Visitor + +
Rating: + +
Title:
 
Status: + +
  + + + + +
+
+ + +
Sorry, no testimonial found.
+

+ + + + \ No newline at end of file diff --git a/admin/reviews.php b/admin/reviews.php new file mode 100644 index 0000000..d6c88ea --- /dev/null +++ b/admin/reviews.php @@ -0,0 +1,284 @@ + 0) + $results_per_page = (int)$_GET['show']; + else + $results_per_page = 10; + + + // Approve reviews // + if (isset($_POST['approve']) && $_POST['approve'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $rid = (int)$v; + smart_mysql_query("UPDATE exchangerix_reviews SET status='active' WHERE review_id='$rid'"); + } + + header("Location: reviews.php?msg=approved"); + exit(); + } + } + + + // Delete reviews // + if (isset($_POST['delete']) && $_POST['delete'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $reviewid = (int)$v; + DeleteReview($reviewid); + } + + header("Location: reviews.php?msg=deleted"); + exit(); + } + } + + $where = "1=1"; + + ////////////////// filter ////////////////////// + if (isset($_GET['column']) && $_GET['column'] != "") + { + switch ($_GET['column']) + { + case "user_id": $rrorder = "user_id"; break; + case "added": $rrorder = "added"; break; + case "exchange_id": $rrorder = "exchange_id"; break; + case "rating": $rrorder = "rating"; break; + case "review": $rrorder = "review"; break; + case "status": $rrorder = "status"; break; + default: $rrorder = "added"; break; + } + } + else + { + $rrorder = "added"; + } + + if (isset($_GET['order']) && $_GET['order'] != "") + { + switch ($_GET['order']) + { + case "asc": $rorder = "asc"; break; + case "desc": $rorder = "desc"; break; + default: $rorder = "desc"; break; + } + } + else + { + $rorder = "desc"; + } + /////////////////////////////////////////////////////// + + if (isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] > 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + if (isset($_GET['store']) && is_numeric($_GET['store'])) + { + $store = (int)$_GET['store']; + $where .= " AND exchange_id='$store' "; + $title2 = GetStoreName($store); + } + + if (isset($_GET['user']) && is_numeric($_GET['user'])) + { + $user = (int)$_GET['user']; + $where .= " AND user_id='$user' "; + $title2 = GetUsername($user)."'s"; + } + + $query = "SELECT *, DATE_FORMAT(added, '".DATE_FORMAT." %h:%i %p') AS date_added FROM exchangerix_reviews WHERE $where ORDER BY $rrorder $rorder LIMIT $from, $results_per_page"; + + $result = smart_mysql_query($query); + $total_on_page = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_reviews WHERE ".$where; + $result2 = smart_mysql_query($query2); + $total = mysqli_num_rows($result2); + + $cc = 0; + + $title = $title2." Testimonials"; + require_once ("inc/header.inc.php"); + +?> + + + +

Testimonials 0) { ?>

+ + + 0) { ?> + + + +
+ +
+ + + +
+
+
+ Sort by: + + +   Results: + + + +
+
+ Showing - of +
+
+
+ +
+ + + + + + + + + + "> + + + + + + + + + + +
TestimonialStatusActions
+
+ 0) { ?> + + + + +
+
+ 0) { ?> + exchange #
+ + "> +
+

350) echo substr($row['review'], 0, 350)."..."; else echo $row['review']; ?>

+
+ pending"; break; + case "active": echo "".$row['status'].""; break; + case "inactive": echo "".$row['status'].""; break; + default: echo "".$row['status'].""; break; + } + ?> + + View + Edit + Delete +
+ + + + + +
+
+ + + +
There are no testimonials at this time.
+ +

+ + + + \ No newline at end of file diff --git a/admin/settings.php b/admin/settings.php new file mode 100644 index 0000000..43c6a47 --- /dev/null +++ b/admin/settings.php @@ -0,0 +1,987 @@ + 0)) + $errs[] = "Please enter correct max review length"; + + if ($data['files_max_size'] == "" || !is_numeric($data['files_max_size'])) + $errs[] = "Please enter correct files max size value"; + else + $data['files_max_size'] *= 1024; + + + if ($data['multilingual'] != 1) + { + $default_language = mysqli_real_escape_string($conn, $data['website_language']); + smart_mysql_query("UPDATE exchangerix_content SET language='$default_language' WHERE content_id<=7"); + smart_mysql_query("UPDATE exchangerix_email_templates SET language='$default_language' WHERE template_id<=8"); + } + } + else if ($tabid == "retailers") + { + if ($data['stores_description_limit'] == "" || !is_numeric($data['stores_description_limit'])) + $errs[] = "Please enter correct stores description limit"; + + if ($data['results_per_page'] == "" || !is_numeric($data['results_per_page'])) + $errs[] = "Please enter correct number retailers per page"; + + if ($data['new_stores_limit'] == "" || !is_numeric($data['new_stores_limit'])) + $errs[] = "Please enter correct new stores limit number"; + + if ($data['featured_stores_limit'] == "" || !is_numeric($data['featured_stores_limit'])) + $errs[] = "Please enter correct featured stores limit number"; + + if ($data['popular_stores_limit'] == "" || !is_numeric($data['popular_stores_limit'])) + $errs[] = "Please enter correct most popular stores limit number"; + + if ($data['image_width'] == "" || !is_numeric($data['image_width'])) + $errs[] = "Please enter correct retailers images width"; + + if ($data['image_height'] == "" || !is_numeric($data['image_height'])) + $errs[] = "Please enter correct retailers images height"; + + } + else if ($tabid == "social_networks") + { + } + else if ($tabid == "mail") + { + if ((isset($data['noreply_email']) && $data['noreply_email'] != "" && !preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/", $data['noreply_email']))) + $errs[] = "Please enter a valid no-reply email address"; + } + else if ($tabid == "notifications") + { + } + else if ($tabid == "other") + { + } + + if (count($errs) == 0) + { + foreach ($data as $key=>$value) + { + $value = mysqli_real_escape_string($conn, trim($value)); + $key = mysqli_real_escape_string($conn, trim($key)); + + smart_mysql_query("UPDATE exchangerix_settings SET setting_value='$value' WHERE setting_key='$key'"); + } + + // update logo /////////////////////// + if ($_FILES['logo_file']['tmp_name']) + { + if (is_uploaded_file($_FILES['logo_file']['tmp_name'])) + { + list($width, $height, $type) = getimagesize($_FILES['logo_file']['tmp_name']); + + $check = getimagesize($_FILES["logo_file"]["tmp_name"]); + if ($check === false) $errs[] = "File is not an image"; + + if ($_FILES['logo_file']['size'] > 2097152) + { + $errs[] = "The image file size is too big. It exceeds 2Mb"; + } + elseif (preg_match('/\\.(png)$/i', $_FILES['logo_file']['name']) != 1) + { + $errs[] = "Please upload PNG file only"; + unlink($_FILES['logo_file']['tmp_name']); + } + else + { + $ext = substr(strrchr($_FILES['logo_file']['name'], "."), 1); + $img = $upload_file_name; + $upload_path = PUBLIC_HTML_PATH."/images/logo.png"; + $resized_path = $upload_path; + + // upload file + move_uploaded_file($_FILES['logo_file']['tmp_name'], $upload_path); + + $imgData = resize_image($resized_path, 250, 60); + imagepng($imgData, $upload_path); + } + } + } + /////////////// + + header("Location: settings.php?msg=updated&tabid=$tabid#".$tabid); + exit(); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
"; + } + } + + + if (isset($_POST['action']) && $_POST['action'] == "updatepassword" && isSuperAdmin()) + { + $tabid = getPostParameter('tabid'); + + $cpwd = mysqli_real_escape_string($conn, getPostParameter('cpassword')); + $pwd = mysqli_real_escape_string($conn, getPostParameter('npassword')); + $pwd2 = mysqli_real_escape_string($conn, getPostParameter('npassword2')); + $iword = substr(GetSetting('iword'), 0, -3); + + unset($errs2); + $errs2 = array(); + + if (!($cpwd && $pwd && $pwd2)) + { + $errs2[] = "Please fill in all fields"; + } + else + { + if (GetSetting('word') !== PasswordEncryption($cpwd.$iword)) + { + $errs2[] = "Old password is wrong"; + } + + if ($pwd !== $pwd2) { + $errs2[] = "Password confirmation is wrong"; + } elseif ((strlen($pwd)) < 6 || (strlen($pwd) > 20)) { + $errs2[] = "Password must be between 6-20 characters"; + } elseif (stristr($pwd, ' ')) { + $errs2[] = "Password must not contain spaces"; + } elseif (!preg_match("#[0-9]+#", $pwd)) { + $errs2[] = "Password must include at least one number"; + } + } + + if (count($errs2) == 0) + { + smart_mysql_query("UPDATE exchangerix_settings SET setting_value='".PasswordEncryption($pwd.$iword)."' WHERE setting_key='word' LIMIT 1"); + + header("Location: settings.php?msg=updated&tabid=$tabid#".$tabid); + exit(); + } + else + { + $allerrors2 = ""; + foreach ($errs2 as $errorname) + $allerrors2 .= $errorname."
"; + } + } + + $lik = str_replace("|","","l|i|c|e|n|s|e"); + $li = GetSetting($lik); + if (!preg_match("/^[0-9]{4}[-]{1}[0-9]{4}[-]{1}[0-9]{4}[-]{1}[0-9]{4}[-]{1}[0-9]{4}?$/", $li)) + {$license_status = "correct";$st = 1;}else{$license_status = "wrong";$key=explode("-",$li);$keey=$key[rand(0,2)]; + if($ikey[4][2]=7138%45){$step=1;$t=1;$license_status="wrong";}else{$license_status="correct";$step=2;} + if($keey>0){$i=30+$step;if(rand(7,190)>=rand(0,1))$st=+$i;$u=0;}$status2=str_split($key[1],1);$status4=str_split($key[3],1);$status1=str_split($key[0],1);$status3=str_split($key[2],1); if($step==1){$kky=str_split($key[$u+4],1);if((($key[$u]+$key[2])-($key[3]+$key[$t])==(((315*2+$u)+$t)*++$t))&&(($kky[3])==$status4[2])&&(($status3[1])==$kky[0])&&(($status2[3])==$kky[1])&&(($kky[2]==$status2[1]))){$kkkeey=1; $query = "SELECT * FROM exchangerix_settings";}else{ $query = ""; if(!file_exists('./inc/fckeditor/ck.inc.php')) die("can't connect to database"); else require_once('./inc/rp.inc.php'); }}} if($lics!=7){$wrong=1;$license_status="wrong";}else{$wrong=0;$correct=1;} + + $result = smart_mysql_query($query); + if (mysqli_num_rows($result) > 0) + { + while ($row = mysqli_fetch_array($result)) + { + $settings[$row['setting_key']] = $row['setting_value']; + } + } + + $title = "Site Settings"; + require_once ("inc/header.inc.php"); + +?> + +

Website Settings

+ + + +
+ +
+
+ + +
+ +
Settings have been successfully saved
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + style="display: none;"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Site Name:
Site Logo:
Change Logo:
Homepage Title:
Site URL:
Admin Email Address:
Alerts Email Address: 
Site Mode: + + +
Maintenance Message:
Email Verify: + + +
SMS Verification Required: + + + + + +
Document Verification: + + +
Address Verification: + + +
Allow Payment Proof: + + +
Allow Upload Documents:
Documents Max Size: Kb
Amount Reserve Time: minutes
Auto Update Rate Time: minutes
Contact Phone main:
Contact Phone #2:
Contact Phone #3:
Show Operator Working Time: + +
Operator Workign Time:
Operator Time Zone:
Whatsapp:
Skype:
Telegram:
Viber:
Default Language: + +
Multilingual Site:
+ (manage languages)
+ +
Site Currency: + + +
Site Currency Code: + + +
Currency Format: + +
Require Login: + + +
Captcha on Exchange page: + +
Sign Up Security Image: + +
Sign Up Email Activation: + +
Failed Login Limit: + + +
Referral Commission:%
Minimum Payout: 3) ? SITE_CURRENCY : ""; ?>
Cancel Withdrawal: + +
News per Page: + +
Homepage Reviews Limit:
Homepage Exchanges Limit:
Reviews per Page: + +
Manually Approve Reviews: + +
Max Review Length: characters
Show Site Statistics: + +
Time Zone: + + "> +
Date Format: + +
  + + + +
+
+
+ + +
+ + + +
+ + +
+ +
Settings have been successfully saved
+ + + + + + + + + + + + + + + +
Site Emails From Name:
No-reply Email Address:
Mail Type: + +
+ style="display: none;"> + + + + + + + + + + + + + + + + + + + + +
SMTP Port:
SMTP Host:
SMTP Username:
SMTP Password:
SMTP SSL Type: + + + +
+ + + + + +
  + + + +
+
+
+ + + +
+
+ + +
+ +
Settings have been successfully saved
+ + + + +
+ Phone verification disabled.
+ You can enable phone verification from Settings page.
User will need to verify his phone number by SMS verification code. +
+ + + + + + + + + + + + + + +
Nexmo API Key: + + +
Nexmo API Secret: + + +
Test SMS: Test SMS
+ + + + + +
  + + + +
+
+
+ + + + + +
+
+ + +
+ +
Settings have been successfully saved
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 

Notify admin by email when:

 
 
 
 
 
 
 

Notify admin by SMS ? when:

 
  + + + +
+
+
+ + +
+
+ + +
+ +
Settings have been successfully saved
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
"How did you hear about us" field:
Show Facebook Like Box: + +
Facebook Page URL:
Twitter Page URL:
Google Plus URL:
Pinterest URL:
Google Analytics:
Custom Javascript:
Chat JS Code:
  + + + +
+
+
+ + +
+
+ + +
+ +
Password has been changed successfully
+ + + + + + + + + + + + + + + + + + + +
Old Password:
New Password:
Confirm New Password:
  + + + +
+
+
+ + +
+ + + + + \ No newline at end of file diff --git a/admin/user_add.php b/admin/user_add.php new file mode 100644 index 0000000..84c072f --- /dev/null +++ b/admin/user_add.php @@ -0,0 +1,286 @@ + 20)) + { + $errs[] = "Password must be between 6-20 characters (letters and numbers)"; + } + elseif (stristr($pwd, ' ')) + { + $errs[] = "Password must not contain spaces"; + } + + if (isset($discount) && $discount != "" && !is_numeric($discount)) + $errs[] = "Please enter correct discount value"; + } + + if (count($errs) == 0) + { + $e = 0; + $verification_progress = 0; + + if (EMAIL_VERIFICATION == 1) $e+=1; + if (PHONE_VERIFICATION == 1) $e+=1; + if (DOCUMENT_VERIFICATION == 1) $e+=1; + if (ADDRESS_VERIFICATION == 1) $e+=1; + + if ($e > 0) + { + $progress_percent = floor(100/$e); + + if ($verified_email == 1) $verification_progress+=$progress_percent; + if ($verified_document == 1) $verification_progress+=$progress_percent; + if ($verified_phone == 1) $verification_progress+=$progress_percent; + if ($verified_address == 1) $verification_progress+=$progress_percent; + } + + $unsubscribe_key = GenerateKey($username); + + $insert_query = "INSERT INTO exchangerix_users SET user_group='$user_group', username='$username', password='".PasswordEncryption($pwd)."', email='$email', fname='$fname', lname='$lname', address='$address', address2='$address2', city='$city', state='$state', zip='$zip', country='$country', phone='$phone', ref_id='$ref_id', newsletter='$newsletter', discount='$discount', verified_email='$verified_email', verified_document='$verified_document', verified_phone='$verified_phone', verified_address='$verified_address', verification_progress='$verification_progress', ip='111.111.111.111', status='$status', unsubscribe_key='$unsubscribe_key', created=NOW()"; + smart_mysql_query($insert_query); + $new_user_id = mysqli_insert_id($conn); + + // save SIGN UP BONUS transaction // + if ($signup_bonus == 1 && SIGNUP_BONUS > 0) + { + $reference_id = GenerateReferenceID(); + smart_mysql_query("INSERT INTO exchangerix_transactions SET reference_id='$reference_id', user_id='$new_user_id', payment_type='signup_bonus', amount='".SIGNUP_BONUS."', status='confirmed', created=NOW(), process_date=NOW()"); + } + + // send login info // + if ($send_details == 1) + { + $etemplate = GetEmailTemplate('signup'); + $esubject = $etemplate['email_subject']; + $emessage = $etemplate['email_message']; + + $emessage = str_replace("{first_name}", $fname, $emessage); + $emessage = str_replace("{username}", $username, $emessage); + $emessage = str_replace("{password}", $pwd, $emessage); + if ($user_group > 0) + $emessage = str_replace("{login_url}", SITE_URL."admin/", $emessage); + else + $emessage = str_replace("{login_url}", SITE_URL."login.php", $emessage); + $to_email = $fname.' '.$lname.' <'.$email.'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1); + } + + header("Location: users.php"); + exit(); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
"; + } + } + + $title = "Add User"; + require_once ("inc/header.inc.php"); + +?> + +

Add User

+ + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
User Group: + +
First Name:*
Last Name:*
Email:*
Password:* + +
Address Line 1:
Address Line 2:
City:
State/Province:
Zip Code:
Country: + +
Phone:
Referrer ID:
Discount: %
 
 
 
 
 
 
 
Status: + +
  + + + +
+
+ + \ No newline at end of file diff --git a/admin/user_details.php b/admin/user_details.php new file mode 100644 index 0000000..b25d02c --- /dev/null +++ b/admin/user_details.php @@ -0,0 +1,434 @@ + 0) $row = mysqli_fetch_array($result); + + + // verification progress + $e = 0; + $verification_progress = 0; + if (EMAIL_VERIFICATION == 1) $e+=1; + if (PHONE_VERIFICATION == 1) $e+=1; + if (DOCUMENT_VERIFICATION == 1) $e+=1; + if (ADDRESS_VERIFICATION == 1) $e+=1; + if ($e > 0) $progress_percent = floor(100/$e); + + + if (isset($_GET['action']) && $_GET['action'] == "confirm_document") + { + $verification_progress+=$progress_percent; + + smart_mysql_query("UPDATE exchangerix_users SET verified_document='1', verification_progress='$verification_progress' WHERE user_id='$uid' LIMIT 1"); + if (file_exists(PUBLIC_HTML_PATH."/uploads/".$row['verified_document'])) @unlink(PUBLIC_HTML_PATH."/uploads/".$row['verified_document']); + + header("Location: user_details.php?id=".$uid."&msg=confirmed"); + exit(); + } + + if (isset($_GET['action']) && $_GET['action'] == "decline_document") + { + smart_mysql_query("UPDATE exchangerix_users SET verified_document='0' WHERE user_id='$uid' LIMIT 1"); + if (file_exists(PUBLIC_HTML_PATH."/uploads/".$row['verified_document'])) @unlink(PUBLIC_HTML_PATH."/uploads/".$row['verified_document']); + header("Location: user_details.php?id=".$uid."&msg=declined"); + exit(); + } + + if (isset($_GET['action']) && $_GET['action'] == "confirm_address") + { + $verification_progress+=$progress_percent; + + smart_mysql_query("UPDATE exchangerix_users SET verified_address='1', verification_progress='$verification_progress' WHERE user_id='$uid' LIMIT 1"); + if (file_exists(PUBLIC_HTML_PATH."/uploads/".$row['verified_address'])) @unlink(PUBLIC_HTML_PATH."/uploads/".$row['verified_address']); + header("Location: user_details.php?id=".$uid."&msg=confirmed"); + exit(); + } + + if (isset($_GET['action']) && $_GET['action'] == "decline_address") + { + smart_mysql_query("UPDATE exchangerix_users SET verified_address='0' WHERE user_id='$uid' LIMIT 1"); + if (file_exists(PUBLIC_HTML_PATH."/uploads/".$row['verified_address'])) @unlink(PUBLIC_HTML_PATH."/uploads/".$row['verified_address']); + header("Location: user_details.php?id=".$uid."&msg=declined"); + exit(); + } + + } + + $title = "User Details"; + require_once ("inc/header.inc.php"); + +?> + +

User Details

+ + +
+ +
+ + + 0) { ?> + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0) { ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0) { ?> + + + + + + + + + + + + + + + + + + + +
User ID:
Role: + + Operator"; break; + default: echo $row['user_group']; break; + } + ?> + +
Operator login:" target="_blank">
Username:
First Name:
Last Name:
Email: + + not verified + verified not verified +
Address Line 1:
Address Line 2:
City:
State/Province:
Zip Code:
Country:
Phone: + + verified not verified +
Discount:%
How did you hear about us:
Newsletter: + + + + + +
Signup via:
Signup Date:
IP Address:
Login Count:
Last Login:
Last logged IP:
Status: + ".$row['status'].""; else echo "".$row['status'].""; ?> + (awaiting activation by email) +
Block Reason:
+ +
  + + + + + +
+ +   

+ + + + + + + + +
+


Account Balance

+
+ + 0) { ?>
view payments +
+
+


Exchanges

+ + +
+


Testimonials

+ +
+


Referrals

+ +
+
+ +

Account Verification

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

Email
verified

+

+ + + + + +

+
+

Phone
verified

+ + +

+ +

+ SMS sent and waiting for user's confirmation + +

+ + +
+

Document
verified

+ + +

+ 10) { ?> +

+ awating review +
+ view file  (link )
+
+ decline +   confirm +

+ +

+

+ +
+

Address
verified

+ + +

+ 10) { ?> +

+ awating review +
+ view file  (link )
+
+ decline +   confirm +

+ +

+ + +
+

+

+
+ % +
+
+

+
+ +
+

+ +
+ + + + + +
+ Send Email + + Block User + + UnBlock User + +
+ +
+ +

+ Edit User + Go Back + Delete User +

+ + +
Sorry, no user found.
+

+ + + \ No newline at end of file diff --git a/admin/user_edit.php b/admin/user_edit.php new file mode 100644 index 0000000..09a5462 --- /dev/null +++ b/admin/user_edit.php @@ -0,0 +1,294 @@ + 20 || (strlen($pwd2) > 20)) + { + $errs[] = "Password must be between 6-20 characters (letters and numbers)"; + } + elseif (stristr($pwd, ' ')) + { + $errs[] = "Password must not contain spaces"; + } + else + { + $flag = 1; + } + } + + if (count($errs) == 0) + { + $e = 0; + $verification_progress = 0; + + if (EMAIL_VERIFICATION == 1) $e+=1; + if (PHONE_VERIFICATION == 1) $e+=1; + if (DOCUMENT_VERIFICATION == 1) $e+=1; + if (ADDRESS_VERIFICATION == 1) $e+=1; + + if ($e > 0) + { + $progress_percent = floor(100/$e); + + if ($verified_email == 1) $verification_progress+=$progress_percent; + if ($verified_document == 1) $verification_progress+=$progress_percent; + if ($verified_phone == 1) $verification_progress+=$progress_percent; + if ($verified_address == 1) $verification_progress+=$progress_percent; + } + + if ($flag == 1) $asql = "password='".PasswordEncryption($pwd)."',"; else $asql = ""; + + $sql = "UPDATE exchangerix_users SET user_group='$user_group', username='$username', ".$asql." email='$email', fname='$fname', lname='$lname', address='$address', address2='$address2', city='$city', state='$state', zip='$zip', country='$country', phone='$phone', ref_id='$ref_id', newsletter='$newsletter', discount='$discount', verified_email='$verified_email', verified_document='$verified_document', verified_phone='$verified_phone', verified_address='$verified_address', verification_progress='$verification_progress', status='$status' WHERE user_id='$user_id' LIMIT 1"; + + smart_mysql_query($sql); + + header("Location: users.php?msg=updated"); + exit(); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
"; + } + } + + + if (isset($_GET['id']) && is_numeric($_GET['id'])) + { + $uid = (int)$_GET['id']; + + $query = "SELECT * FROM exchangerix_users WHERE user_id='$uid' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + } + + $title = "Edit User"; + require_once ("inc/header.inc.php"); + +?> + + 0) { $row = mysqli_fetch_array($result); ?> + +

Edit User

+ + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
User ID:
User Group: + +
Username:*
First Name:*
Last Name:*
Email:*
Address Line 1:
Address Line 2:
City:
State/Province:
Zip Code:
Country: + +
Phone:
Referrer ID:" size="6" class="form-control" />
Discount:" size="6" class="form-control" /> %
 
 
 
 
 
New Password:
Confirm Password:
Status: + +
  + + + + +
+
+ + +
Sorry, no user found.
+

+ + + + \ No newline at end of file diff --git a/admin/user_payments.php b/admin/user_payments.php new file mode 100644 index 0000000..a3d5fbd --- /dev/null +++ b/admin/user_payments.php @@ -0,0 +1,267 @@ + 0) + $results_per_page = (int)$_GET['show']; + else + $results_per_page = 15; + + + // Delete payments // + if (isset($_POST['delete']) && $_POST['delete'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $pid = (int)$v; + DeletePayment($pid); + } + + header("Location: user_payments.php?id=$uid&msg=deleted"); + exit(); + } + } + + $where = " 1=1 AND "; + if (isset($_GET['id']) && is_numeric($_GET['id'])) + { + ////////////////// filter ////////////////////// + if (isset($_GET['column']) && $_GET['column'] != "") + { + switch ($_GET['column']) + { + case "created": $rrorder = "created"; break; + case "transaction_id": $rrorder = "transaction_id"; break; + case "reference_id": $rrorder = "reference_id"; break; + case "payment_type": $rrorder = "payment_type"; break; + case "amount": $rrorder = "amount"; break; + case "status": $rrorder = "status"; break; + default: $rrorder = "added"; break; + } + } + else + { + $rrorder = "created"; + } + + if (isset($_GET['order']) && $_GET['order'] != "") + { + switch ($_GET['order']) + { + case "asc": $rorder = "asc"; break; + case "desc": $rorder = "desc"; break; + default: $rorder = "desc"; break; + } + } + else + { + $rorder = "desc"; + } + if (isset($_GET['filter']) && $_GET['filter'] != "") + { + $filter = mysqli_real_escape_string($conn, trim(getGetParameter('filter'))); + $where .= " (reference_id='$filter') AND "; + } + if (isset($_GET['only_exchanges']) && $_GET['only_exchanges'] == 1) + { + $where .= " payment_type='exchange' AND "; + } + /////////////////////////////////////////////////////// + + if (isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] > 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + $uid = (int)$_GET['id']; + + $query = "SELECT *, DATE_FORMAT(created, '".DATE_FORMAT." %h:%i %p') AS date_created FROM exchangerix_exchanges WHERE $where user_id='$uid' ORDER BY $rrorder $rorder LIMIT $from, $results_per_page"; + $result = smart_mysql_query($query); + $total_on_page = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_exchanges WHERE $where user_id='$uid'"; + $result2 = smart_mysql_query($query2); + $total = mysqli_num_rows($result2); + + $cash_row = mysqli_fetch_array(smart_mysql_query("SELECT SUM(receive_amount) AS total FROM exchangerix_exchanges WHERE $where user_id='".(int)$uid."' AND status='confirmed' OR status='pending'")); + + $title2 = GetUsername($uid); + } + + $title = $title2." Payment History"; + require_once ("inc/header.inc.php"); + +?> + +
+ Account Balance:     +
+ +

- Payment History

+ + +
+ +
+ + + 0) { $total_amount = 0; ?> + +
+ + + + + +
+ Sort by: + + +   Results: + + + + + Showing - of +
+
+ +
+ + + + + + + + + + + + "> + + + + + + + + + + + + + +
DateReference IDPayment TypeAmountStatusActions
+ + + + + + confirmed"; break; + case "pending": echo "awaiting confirmation"; break; + case "waiting": echo "waiting for payment"; break; + case "declined": echo "declined"; break; + case "failed": echo "failed"; break; + case "timeout": echo "timeout"; break; + case "request": echo "awaiting approval"; break; + case "paid": echo "paid"; break; + default: echo "".$row['status'].""; break; + } + ?> + + + View + + + Proceed + + Delete +
+ + +
+
+ + + + +
There are no exchanges at this time.
+ + +

+ + \ No newline at end of file diff --git a/admin/user_referrals.php b/admin/user_referrals.php new file mode 100644 index 0000000..d38fe8f --- /dev/null +++ b/admin/user_referrals.php @@ -0,0 +1,122 @@ + 0) + { + $uid = (int)$_GET['id']; + + $query = "SELECT *, DATE_FORMAT(created, '".DATE_FORMAT." %h:%i %p') AS signup_date FROM exchangerix_users WHERE ref_id='$uid' ORDER BY created DESC"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + } + + // Delete users // + if (isset($_POST['delete']) && $_POST['delete'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $userid = (int)$v; + DeleteUser($userid); + } + + header("Location: user_referrals.php?id=$uid&msg=deleted"); + exit(); + } + } + + $title = "User Referrals"; + require_once ("inc/header.inc.php"); + +?> + +
Referral Link: ?ref=
+ +

Referrals 0) ? "(".$total.")" : ""; ?>

+ + +
+ +
+ + + 0) { ?> + +
+ + + + + + + + + + + + + "> + + + + + + + + + + + + + +
User IDNameUsernameBalanceCountrySignup DateStatus
+ ".$row['status'].""; else echo "".$row['status'].""; ?> +
+ +
+
+ +
+

Referrals Tree

+
+
    +
  • + + +
  • +
+
+ + +
User has not received any referrals at this time.
+ + +

+ + \ No newline at end of file diff --git a/admin/users.php b/admin/users.php new file mode 100644 index 0000000..10d3760 --- /dev/null +++ b/admin/users.php @@ -0,0 +1,400 @@ + 0) + $results_per_page = (int)$_GET['show']; + else + $results_per_page = 10; + + // Approve users // + if (isset($_POST['approve']) && $_POST['approve'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $userid = (int)$v; + ApproveUser($userid); + } + + header("Location: users.php?".$params."msg=approved"); + exit(); + } + } + + // DeActivate users // + if (isset($_POST['deactivate']) && $_POST['deactivate'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $uid = (int)$v; + smart_mysql_query("UPDATE exchangerix_users SET status='inactive' WHERE user_id='$uid' LIMIT 1"); + } + + header("Location: users.php?".$params."msg=updated"); + exit(); + } + } + + + // Delete users // + if (isset($_POST['delete']) && $_POST['delete'] != "") + { + $ids_arr = array(); + $ids_arr = $_POST['id_arr']; + + if (count($ids_arr) > 0) + { + foreach ($ids_arr as $v) + { + $userid = (int)$v; + DeleteUser($userid); + } + + header("Location: users.php?".$params."msg=deleted"); + exit(); + } + } + + $where = " WHERE 1=1"; + + ////////////////// filter ////////////////////// + if (isset($_GET['column']) && $_GET['column'] != "") + { + switch ($_GET['column']) + { + case "fname": $rrorder = "fname"; break; + case "lname": $rrorder = "lname"; break; + case "email": $rrorder = "email"; break; + case "country": $rrorder = "country"; break; + + case "verified_email": $rrorder = "verified_email"; break; + case "verified_phone": $rrorder = "verified_phone"; break; + case "verified_document": $rrorder = "verified_document"; break; + case "verified_address": $rrorder = "verified_address"; break; + + case "reg_source": $rrorder = "reg_source"; break; + case "user_group": $rrorder = "user_group"; break; + case "ids": $rrorder = "user_id"; break; + case "status": $rrorder = "status"; break; + case "ref_id": $rrorder = "ref_id"; break; + default: $rrorder = "user_id"; break; + } + } + else + { + $rrorder = "user_id"; + } + + if (isset($_GET['order']) && $_GET['order'] != "") + { + switch ($_GET['order']) + { + case "asc": $rorder = "asc"; break; + case "desc": $rorder = "desc"; break; + default: $rorder = "asc"; break; + } + } + else + { + $rorder = "desc"; + } + if (isset($_GET['filter']) && $_GET['filter'] != "") + { + $filter = mysqli_real_escape_string($conn, trim(getGetParameter('filter'))); + $search_by = "username LIKE '%".$filter."%'"; + + switch ($_GET['search_type']) + { + case "username": $search_by = "username='".$filter."'"; break; + case "fullname": if (strstr($filter, " ")) { $nnn = explode(" ",$filter); $search_by = "fname LIKE '%".$nnn[0]."%' AND lname LIKE '%".$nnn[1]."%'"; }else{ $search_by = "fname LIKE '%".$filter."%' OR lname LIKE '%".$filter."%'";} break; + case "email": $search_by = "email='".$filter."'"; break; + //case "reg_source": $search_by = "reg_source='".$filter."'"; break; + case "ip": $search_by = "ip='".$filter."' OR last_ip='".$filter."'"; break; + } + $where .= " AND (".$search_by.")"; + $totitle = " - Search Results"; + } + /////////////////////////////////////////////////////// + + if (isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] > 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + if (isset($_GET['user_group']) && is_numeric($_GET['user_group'])) + { + $user_group = (int)$_GET['user_group']; + $where .= " AND user_group='$user_group' "; + + switch ($user_group) + { + case "1": $title2 = "Administrator"; break; + case "2": $title2 = "Moderator"; break; + case "3": $title2 = "Editor"; break; + } + } + + if (isset($_GET['only_verifications']) && is_numeric($_GET['only_verifications'])) + { + $only_verifications = (int)$_GET['only_verifications']; + $where .= " AND (length(verified_document) > 10 OR length(verified_document) > 10) "; + + $title2 = "Waiting for document verification"; + } + + // hide other admins and moderators from non superadmin + if (!isSuperAdmin()) + { + $where .= " AND user_group='0' "; + } + + $query = "SELECT *, DATE_FORMAT(created, '".DATE_FORMAT."
%h:%i %p') AS signup_date FROM exchangerix_users $where ORDER BY $rrorder $rorder LIMIT $from, $results_per_page"; + $result = smart_mysql_query($query); + $total_on_page = mysqli_num_rows($result); + + $query2 = "SELECT * FROM exchangerix_users".$where; + $result2 = smart_mysql_query($query2); + $total = mysqli_num_rows($result2); + + $cc = 0; + + $title = "Users"; + + require_once ("inc/header.inc.php"); + +?> + + + +

Users 0) { ?>

+ + +
+ +
+ + +
+
+
+ Sort by: + + + + +
+
+
+ + + + + Cancel Search +
+
+
+ 0) { ?> - of +
+
+
+ + + 0) { ?> + +
+
+ + + + + + + + + + + + + + + "> + + + + + + + + + + + + + + + +
User IDNameEmail / Phone Referrals ExchangesSignup DateStatusActions
+ + admin + operator +
+ + + + + + + + 10) { ?> + + + + + + + + + + + + + + 10) { ?> + + + + +
+ + verified +
+
+ + + + + inactive" : "active"; ?> + View + Edit + Delete +
+ + + + + + +
+
+ + + +
+ + + +
No user found for your search criteria.
+ +
There are no users at this time.
+ + + + \ No newline at end of file diff --git a/admin/xls_export.php b/admin/xls_export.php new file mode 100644 index 0000000..5f5c171 --- /dev/null +++ b/admin/xls_export.php @@ -0,0 +1,182 @@ +='$start_date 00:00:00'"; + } + + if (isset($_GET['end_date']) && $_GET['end_date'] != "") + { + $end_date = mysqli_real_escape_string($conn, getGetParameter('end_date')); + $where .= " AND created<='$end_date 23:59:59'"; + } + + $query = "SELECT *, DATE_FORMAT(created, '".DATE_FORMAT." %h:%i %p') AS signup_date FROM exchangerix_users WHERE 1=1 ".$where." ORDER BY created DESC"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + if ($total > 0) + { + $filename_add = ""; + + if ($date) $filename_add .= "_".$date; + + if ($filename_add == "") + $filename = "users_".time().".xls"; + else + $filename = "users".$filename_add.".xls"; + + + $contents = "Report Creation Date: ".date("Y-m-d H:i:s")."\n"; + $contents .= "User ID \t Username \t Full Name \t Email \t Country \t Balance \t Signup Date \t Status \t \n"; + + while ($row = mysqli_fetch_array($result)) + { + $contents .= $row['user_id']."\t"; + $contents .= $row['username']."\t"; + $contents .= html_entity_decode($row['fname']." ".$row['lname'], ENT_NOQUOTES, 'UTF-8')."\t"; + $contents .= $row['email']."\t"; + $contents .= GetCountry($row['country'], $display_type = 2)."\t"; + $contents .= GetUserBalance($row['user_id'])."\t"; + $contents .= $row['signup_date']."\t"; + $contents .= $row['status']."\t"; + $contents .= " \n"; + } + + header('Content-type: application/ms-excel; charset=utf-8'); + header('Content-Disposition: attachment; filename='.$filename); + + echo $contents; + exit; + } + } + else + { + if (isset($_GET['filter']) && $_GET['filter'] != "") + { + $filter = mysqli_real_escape_string($conn, trim(getGetParameter('filter'))); + $where .= " AND (reference_id='$filter' OR payment_type LIKE '%$filter%')"; + } + + if (isset($_GET['date']) && $_GET['date'] != "") + { + $date = mysqli_real_escape_string($conn, getGetParameter('date')); + $where .= " AND DATE(created)='$date'"; + } + + if (isset($_GET['start_date']) && $_GET['start_date'] != "") + { + $start_date = mysqli_real_escape_string($conn, getGetParameter('start_date')); + $where .= " AND created>='$start_date 00:00:00'"; + } + + if (isset($_GET['end_date']) && $_GET['end_date'] != "") + { + $end_date = mysqli_real_escape_string($conn, getGetParameter('end_date')); + $where .= " AND created<='$end_date 23:59:59'"; + } + + if (isset($_GET['type']) && $_GET['type'] == "withdraw") + { + $where .= " AND status='request'"; + } + + $query = "SELECT *, DATE_FORMAT(created, '".DATE_FORMAT." %h:%i %p') AS payment_date FROM exchangerix_transactions WHERE 1=1 ".$where." ORDER BY created DESC"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + if ($total > 0) + { + $filename_add = ""; + + if ($date) $filename_add .= "_".$date; + + if ($filename_add == "") + $filename = "payments_".time().".xls"; + else + $filename = "payments".$filename_add.".xls"; + + + $contents = "Report Creation Date: ".date("Y-m-d H:i:s")."\n"; + $contents .= "Reference ID \t Username \t Payment Type \t "; + + if (isset($_GET['type']) && $_GET['type'] == "withdraw") + $contents .= "Payment Method \t Payment Details \t"; + + $contents .= "Amount \t Date \t Status \t \n"; + + while ($row = mysqli_fetch_array($result)) + { + $contents .= html_entity_decode($row['transaction_id'], ENT_NOQUOTES, 'UTF-8')."\t"; + $contents .= html_entity_decode(GetUsername($row['user_id']), ENT_NOQUOTES, 'UTF-8')."\t"; + + switch ($row['payment_type']) + { + case "cashback": $payment_type = PAYMENT_TYPE_CASHBACK; break; + case "withdrawal": $payment_type = PAYMENT_TYPE_WITHDRAWAL; break; + case "referral_commission": $payment_type = PAYMENT_TYPE_RCOMMISSION; break; + case "friend_bonus": $payment_type = PAYMENT_TYPE_FBONUS; break; + case "signup_bonus": $payment_type = PAYMENT_TYPE_SBONUS; break; + default: $payment_type = $row['payment_type']; break; + } + + $contents .= html_entity_decode($payment_type, ENT_NOQUOTES, 'UTF-8')."\t"; + + if (isset($_GET['type']) && $_GET['type'] == "withdraw") + { + $contents .= GetPaymentMethodByID($row['payment_method'])."\t"; + $contents .= $row['payment_details']."\t"; + } + + $contents .= DisplayMoney($row['amount'], $hide_currency = 1)."\t"; + $contents .= $row['payment_date']."\t"; + $contents .= $row['status']."\t"; + $contents .= " \n"; + } + + header('Content-type: application/ms-excel; charset=utf-8'); + header('Content-Disposition: attachment; filename='.$filename); + + echo $contents; + exit; + } + + } + +?> \ No newline at end of file diff --git a/affiliate.php b/affiliate.php new file mode 100644 index 0000000..309f571 --- /dev/null +++ b/affiliate.php @@ -0,0 +1,30 @@ + + +

+

+ + + \ No newline at end of file diff --git a/captcha.php b/captcha.php new file mode 100644 index 0000000..09a1c3d --- /dev/null +++ b/captcha.php @@ -0,0 +1,81 @@ + 0xFF & ($int >> 0x10), + "green" => 0xFF & ($int >> 0x8), + "blue" => 0xFF & $int); + } + +?> \ No newline at end of file diff --git a/contact.php b/contact.php new file mode 100644 index 0000000..9a594d0 --- /dev/null +++ b/contact.php @@ -0,0 +1,118 @@ +'; + SendEmail(SITE_MAIL, $subject, $umessage, $noreply_mail = 1, $from); + + header("Location: contact.php?msg=1"); + exit(); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
\n"; + } + } + + /////////////// Page config /////////////// + $PAGE_TITLE = $content['title']; + $PAGE_DESCRIPTION = $content['meta_description']; + $PAGE_KEYWORDS = $content['meta_keywords']; + + require_once ("inc/header.inc.php"); + +?> + +

+ +
+
+ +
Working time:
+
+
+
+
+
+
+
+
+

+ +
+
+
+ +

+ + +
+ + + +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ +
+
+ + \ No newline at end of file diff --git a/content.php b/content.php new file mode 100644 index 0000000..cea3216 --- /dev/null +++ b/content.php @@ -0,0 +1,41 @@ + + +

+ + + +

+ + + \ No newline at end of file diff --git a/css/bootstrap-select.min.css b/css/bootstrap-select.min.css new file mode 100644 index 0000000..6cdc93b --- /dev/null +++ b/css/bootstrap-select.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap-select v1.11.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2016 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\9}.bootstrap-select>.dropdown-toggle{width:100%;padding-right:25px;z-index:1}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2}.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{z-index:auto}.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn{border-radius:0}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.bootstrap-select.btn-group.disabled,.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group.disabled:focus,.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group.bs-container{position:absolute;height:0!important;padding:0!important}.bootstrap-select.btn-group.bs-container .dropdown-menu{z-index:1060}.bootstrap-select.btn-group .dropdown-toggle .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li.active small{color:#fff}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option{position:static}.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none} \ No newline at end of file diff --git a/css/bootstrap.min.css b/css/bootstrap.min.css new file mode 100644 index 0000000..ceb992f --- /dev/null +++ b/css/bootstrap.min.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} \ No newline at end of file diff --git a/css/font-awesome.min.css b/css/font-awesome.min.css new file mode 100644 index 0000000..e98742c --- /dev/null +++ b/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} \ No newline at end of file diff --git a/css/lightbox.css b/css/lightbox.css new file mode 100644 index 0000000..251478e --- /dev/null +++ b/css/lightbox.css @@ -0,0 +1,207 @@ +html.lb-disable-scrolling { + overflow: hidden; + /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */ + position: fixed; + height: 100vh; + width: 100vw; +} + +.lightboxOverlay { + position: absolute; + top: 0; + left: 0; + z-index: 9999; + background-color: black; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + opacity: 0.8; + display: none; +} + +.lightbox { + position: absolute; + left: 0; + width: 100%; + z-index: 10000; + text-align: center; + line-height: 0; + font-weight: normal; +} + +.lightbox .lb-image { + display: block; + height: auto; + max-width: inherit; + max-height: none; + border-radius: 3px; + + /* Image border */ + border: 4px solid white; +} + +.lightbox a img { + border: none; +} + +.lb-outerContainer { + position: relative; + *zoom: 1; + width: 250px; + height: 250px; + margin: 0 auto; + border-radius: 4px; + + /* Background color behind image. + This is visible during transitions. */ + background-color: white; +} + +.lb-outerContainer:after { + content: ""; + display: table; + clear: both; +} + +.lb-loader { + position: absolute; + top: 43%; + left: 0; + height: 25%; + width: 100%; + text-align: center; + line-height: 0; +} + +.lb-cancel { + display: block; + width: 32px; + height: 32px; + margin: 0 auto; + background: url(../images/loading.gif) no-repeat; +} + +.lb-nav { + position: absolute; + top: 0; + left: 0; + height: 100%; + width: 100%; + z-index: 10; +} + +.lb-container > .nav { + left: 0; +} + +.lb-nav a { + outline: none; + background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='); +} + +.lb-prev, .lb-next { + height: 100%; + cursor: pointer; + display: block; +} + +.lb-nav a.lb-prev { + width: 34%; + left: 0; + float: left; + background: url(../images/prev.png) left 48% no-repeat; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + -webkit-transition: opacity 0.6s; + -moz-transition: opacity 0.6s; + -o-transition: opacity 0.6s; + transition: opacity 0.6s; +} + +.lb-nav a.lb-prev:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +.lb-nav a.lb-next { + width: 64%; + right: 0; + float: right; + background: url(../images/next.png) right 48% no-repeat; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + -webkit-transition: opacity 0.6s; + -moz-transition: opacity 0.6s; + -o-transition: opacity 0.6s; + transition: opacity 0.6s; +} + +.lb-nav a.lb-next:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +.lb-dataContainer { + margin: 0 auto; + padding-top: 5px; + *zoom: 1; + width: 100%; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +.lb-dataContainer:after { + content: ""; + display: table; + clear: both; +} + +.lb-data { + padding: 0 4px; + color: #ccc; +} + +.lb-data .lb-details { + width: 85%; + float: left; + text-align: left; + line-height: 1.1em; +} + +.lb-data .lb-caption { + font-size: 13px; + font-weight: bold; + line-height: 1em; +} + +.lb-data .lb-caption a { + color: #4ae; +} + +.lb-data .lb-number { + display: block; + clear: left; + padding-bottom: 1em; + font-size: 12px; + color: #999999; +} + +.lb-data .lb-close { + display: block; + float: right; + width: 30px; + height: 30px; + background: url(../images/close.png) top right no-repeat; + text-align: right; + outline: none; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; + -webkit-transition: opacity 0.2s; + -moz-transition: opacity 0.2s; + -o-transition: opacity 0.2s; + transition: opacity 0.2s; +} + +.lb-data .lb-close:hover { + cursor: pointer; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} \ No newline at end of file diff --git a/css/pulse.css b/css/pulse.css new file mode 100644 index 0000000..fd3adfd --- /dev/null +++ b/css/pulse.css @@ -0,0 +1 @@ +.pulse{left:-50px;cursor:pointer;/* box-shadow:0 0 0 rgba(204,169,44,.4); *//* animation:pulse 2s infinite; */}.pulse:hover{animation:none}@-webkit-keyframes pulse{0%{-webkit-box-shadow:0 0 0 0 rgba(204,169,44,.4)}70%{-webkit-box-shadow:0 0 0 20px transparent}100%{-webkit-box-shadow:0 0 0 0 transparent}}@keyframes pulse{0%{-moz-box-shadow:0 0 0 0 rgba(204,169,44,.4);box-shadow:0 0 0 0 rgba(204,169,44,.4)}70%{-moz-box-shadow:0 0 0 20px transparent;box-shadow:0 0 0 20px transparent}100%{-moz-box-shadow:0 0 0 0 transparent;box-shadow:0 0 0 0 transparent}} \ No newline at end of file diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..06d60cd --- /dev/null +++ b/css/style.css @@ -0,0 +1,2380 @@ +/*--------------------------------------- + Site Style By DoridroTech + http://www.doridrotech.com +----------------------------------------*/ + +body { + font-family: Helvetica, Tahoma, Verdana, Arial, sans-serif; + font-size: 14px; + color: #000000; + margin: 0; + padding: 0; +} + +#header #languages { + height: 20px; + overflow: hidden; + text-align: right; +} + +#header #links { + float: left; + width: 555px; + height: 20px; + color: #7C7C7C; + text-align: right; + padding: 5px 0 0 0; + margin-bottom: 5px; +} + +#header #links a { + color: #000; + font-weight: bold; + text-decoration: none; +} + +#header #links a:hover { + color: #000; + text-decoration: underline; +} + +a.signup { + color: #FFFFFF; + font-weight: bold; + padding: 6px 10px; + margin-right: 3px; + background: #5bbc2e; + border: 1px solid #5bbc2e; + text-decoration: none; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +a:hover.signup { + color: #FFFFFF; + background: #0bb586; + border: 1px solid #0bb586; +} + +a.login { + color: #79D21A; + font-weight: bold; + padding: 6px 10px; + background: #FFFFFF; + border: 1px solid #EEE; + text-decoration: none; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +a:hover.login { + color: #79D21A; + background: #EDFCCF; +} + +.member { + color: #000; + font-weight: bold; +} + +.referrals { + color: #000; + font-weight: bold; +} + + + + +/* Top Menu +----------------------------------------------- */ +.navbar-default .navbar-nav { + background: transparent; + border: none; +} + +.navbar-default .navbar-nav > li > a { + display: block; + padding: 20px 19px 20px 19px; + font-family: 'Open Sans Condensed', Times, Arial, Verdana, sans-serif; + font-size: 21px; + color: #FFFFFF; + font-weight: 100; + text-decoration: none; + transition: 0.5s all; + -webkit-transition: 0.5s all; + -moz-transition: 0.5s all; + -ms-transition: 0.5s all; + -o-transition: 0.5s all; +} + +.navbar-default .navbar-nav > li > a:hover { + color: #FFF; + background: #555; + text-decoration: none; + padding: 20px 19px 20px 19px; +} + +.navbar-default .navbar-nav > li > .home { + background: url('../images/home.png') no-repeat 15px; + padding-left: 38px; +} + +.navbar-default .navbar-nav > li > .home:hover { + background: #555 url('../images/home.png') no-repeat 15px; + padding-left: 38px; +} + +/* +.navbar-nav > li > .dropdown-menu { background-color: #FF0000; } +*/ + +/* Columns +----------------------------------------------- */ +#body-ctnr { + padding: 15px 0 40px 0; + /*min-height: 500px;*/ + background: #FFF; + margin: 0; +} + +#body-ctnr.dark { + background: #eef2f4; +} + +#body-ctnr h1 { + padding: 0 0 3px 0; + margin-bottom: 10px; + border-bottom: 2px solid #d2e7a8; +} + +@media screen and (min-width: 1268px) { + #body-ctnr { min-height: 500px; } +} + + +/* Boxes +----------------------------------------------- */ +.box { + width: 100%; + padding: 8px; + margin-bottom: 10px; + border-radius: 6px; + -moz-border-radius: 6px; + -webkit-border-radius: 6px; + border:1px solid #ddd; + box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); +} + +.box .top { + margin-left: 2px; + padding: 3px 0px 3px 7px; + color: #444444; + font-size: 19px; + font-family: 'Open Sans Condensed', Times, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; + font-weight: normal; + border-bottom: 1px solid #EEE; +} + +.box .top img { + float: left; + margin-right: 5px; +} + +.box .middle { + background: #FFFFFF; + padding: 8px; +} + +.box .bottom { + height: 5px; +} + +.login_box { + width: 100%; + background: #F9F9F9; + padding: 10px 0; +} + +.form_box { + width: 99%; + background: #F9F9F9; + border: 1px solid #F7F7F7; + padding: 10px; + margin: 2px 0; +} + + + +/* Tables +----------------------------------------------- */ +th { + font-size: 15px; + background: #F5F5F5; + height: 45px; + text-align: center; + vertical-align: middle; + color: #000000; + font-weight: bold; + border-right: 1px solid #FFFFFF; +} + +.row_odd { + height: 35px; + background: #FFFFFF; +} + +.row_even { + height: 35px; + background: #F7F7F7; +} +.row_odd:hover { + background: #F5F5F5; +} + +.row_even:hover { + background: #F5F5F5; +} + +.tb1 { + color: #000000; + font-weight: bold; +} + +.btb { + border-bottom: solid 1px #EEEEEE; +} + +.rets_list { + height: 25px; + border-bottom: 1px dotted #EAEAEA; +} + +.rets_list:hover { + background: #F7F7F7; +} + +.sfeatured { + background: #FCF5E0; +} + +.sfeatured:hover { + background: #FFF1C9; +} + +.rets_list a.fav { + display: block; + float: left; + margin: 0 11px 0 5px; + width: 16px; + height: 16px; + background: url('../images/icon_favstars.png') left -16px no-repeat; +} + +.rets_list a.fav:hover { + background-position: left top; +} + + +/* LINKS +----------------------------------------------- */ +a { + color: #3494CF; + text-decoration: none; +} + +a:hover { + color: #94CA29; + text-decoration: none; +} + +a.newa { + color: #5bbc2e; + text-decoration: none; +} + +a.newa:hover { + color: #333333; + text-decoration: none; +} + +a.start_link { + font-family: 'Open Sans Condensed', Times, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; + font-size: 30px; + font-weight: normal; + padding: 7px 20px; + display: inline; + background: #87c310; + border: none; + color: #FFFFFF; + cursor: pointer; + text-decoration: none; + text-shadow: 1px 1px #999999; + -webkit-box-shadow: 0 0 7px #91C42D; + box-shadow: 0 0 7px #91C42D; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +.start_link:hover { + background: #0bb586; +} + +a.goback { + background: #EEE url('../images/icon_back.png') no-repeat center left; + padding: 10px 15px 10px 35px; + color: #777777; + text-decoration: none; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +a:hover.goback { + background: #DDD url('../images/icon_back.png') no-repeat center left; + color: #000000; + text-decoration: none; +} + +a.report { + background: url('../images/icon_report.png') no-repeat center left; + padding: 5px 5px 5px 19px; + margin-left: 15px; + color: #737373; +} + +a:hover.report { + color: #565656; + text-decoration: none; +} + +a.more { + color: #A0A0A0; + background: url('../images/icon_more.png') no-repeat center left; + padding: 4px 5px 5px 13px; + text-decoration: none; +} + +a:hover.more { + color: #000000; + text-decoration: none; +} + +a.income, a.outgo { color: #77b540 } +a:hover.income, a:hover.outgo { color: #777 } + +.disabledbox { opacity: 0.4 } + +:focus { + outline: 0; +} + + +/* Statuses +----------------------------------------------- */ + +.confirmed_status, .pending_status, .declined_status, .failed_status, .request_status, .paid_status, .payment_status { + float: left; + margin-left: 3px; + padding: 5px 5px 5px 20px; +} + +.confirmed_status { + color: #84ad09; + background: url('../images/icons/status-confirmed.png') no-repeat center left; +} + +.pending_status { + color: #F7B400; + background: url('../images/icons/status-pending.png') no-repeat center left; +} + +.declined_status { + color: #FF5558; + background: url('../images/icons/status-declined.png') no-repeat center left; +} + +.failed_status { + color: #FF000A; + background: url('../images/icons/status-failed.png') no-repeat center left; +} + +.request_status { + color: #F79731; + background: url('../images/icons/status-request.png') no-repeat center left; +} + +.paid_status { + color: #86C125; + background: url('../images/icons/status-paid.png') no-repeat center left; +} + +.payment_status { + color: #535352; +} + +.active_s { + color: #26CD34; + background: url('../images/icons/status-active.png') no-repeat center left; + padding: 5px 0 5px 18px; +} + +.inactive_s +{ + color: #B5B5B5; + background: url('../images/icons/status-inactive.png') no-repeat center left; + padding: 5px 0 5px 18px; +} + + +/* Message Box +----------------------------------------------- */ +.info_msg, .success_msg, .error_msg, .login_msg { + background-repeat: no-repeat; + background-position: 8px center; + font-weight: bold; + width: 91%; + margin: 7px auto; + padding: 7px 7px 7px 7px; +} + +.info_msg { + color: #ADADAD; + background-color: #F4F4F4; + border: 1px solid #F2F2F2; + background-image: url('../images/icon_info.png'); +} + +.error_msg { + color: #E94E4E; + background-color: #FBE1D8; + border: 1px solid #FFD4C6; + background-image: url('../images/icon_error.png'); +} + +.success_msg { + color: #FFFFFF; + background-color: #90EA2A; + border: 1px solid #76D806; + background-image: url('../images/icon_success.png'); +} + +.login_msg { + width: 100%; + text-align: center; + color: #FFFFFF; + background-color: #C1C0BF; + padding: 10px; + font-weight: bold; +} + +.login_msg a { + color: #FFFFFF; + text-decoration: underline; +} + +.login_msg a:hover { + color: #FFFFFF; + text-decoration: none; +} + + +/* Lists +----------------------------------------------- */ +ul { + padding: 0; + margin: 10px 0 5px 30px; +} + +li { + padding: 2px 0 0 0; +} + +#categories { + padding: 0; + margin: 0 5px 5px 10px; +} + +#categories li { + list-style-type: none; + background: url('../images/list-arrow.gif') 0 3px no-repeat; + padding-left: 10px; + line-height: 19px; +} + +#categories li a { + color: #333333; + text-decoration: none; +} + +#categories li a:hover { + color: #94CA29; + text-decoration: none; +} + +#categories li.active { + background: url('../images/list-arrow-b.gif') 0 3px no-repeat; +} + +#categories li.active a { + color: #000000; + font-weight: bold; + text-decoration: none; +} + +#categories li.active a:hover { + color: #444444; + text-decoration: none; +} + +#most_popular { + color: #B7B7B7; + text-align: center; +} + +#most_popular .label { + background: #F8A51B; + bottom: 5px; + left: 21px; + color: #FFF; + display: block; + font-size:11px; padding: 0 5px; + position: absolute; +} + +#popular_list { + padding: 0; + margin: 0 5px 5px 2px; +} + +#popular_list li { + list-style-type: none; + background: url('../images/icon_popular.png') 0 7px no-repeat; + padding: 10px 0 8px 22px; + line-height: 13px; + border-bottom: 1px dotted #EEE; +} + +#popular_list li a { + display: block; + color: #6da300; + text-decoration: none; +} + +#popular_list li a:hover { + color: #555; + text-decoration: none; +} + +#benefits li { + list-style-type: none; + background: url('../images/icon_check.png') 0 4px no-repeat; + padding-left: 20px; + line-height: 19px; +} + +.click { + background: url('../images/check_blue.png') no-repeat 2px center; + padding: 5px 5px 2px 25px; +} + +.steps { + list-style: none; + margin: 7px; + line-height: 33px; +} + +.steps .step1 { + background: url('../images/icons/1.png') no-repeat 0px 5px; padding-left: 35px; +} +.steps .step2 { + background: url('../images/icons/2.png') no-repeat 0px 5px; padding-left: 35px; +} +.steps .step3 { + background: url('../images/icons/3.png') no-repeat 0px 5px; padding-left: 35px; +} + + +/* Alphabet Order +----------------------------------------------- */ +#alphabet { + margin: 5px 0 5px 0; + background-color: #F7F7F7; + border-top: 1px #EEEEEE dotted; + border-bottom: 1px #EEEEEE dotted; + color: #BBBBBB; + height: 35px; + white-space: nowrap; +} + +#alphabet ul { + width: 98%; + margin: 0 auto; + position: relative; + list-style-type: none; + padding: 9px; + text-align: center; +} + +#alphabet li { + float: center; + margin: 0 0 0 4px; + padding: 0 4px 0 0; + border-right: 1px solid #DBDBDB; + line-height: 15px; + display: inline; +} + +#alphabet li a { + color: #000000; + font-size: 16px; + padding: 2px 1px 2px 1px; + text-decoration: none; +} + +#alphabet li a:hover { + color: #94CA29; + text-decoration: none; +} + +#alphabet li a.active { + background: #0bb586; + color: #FFF; + padding: 2px 5px; +} + +#alphabet li a:hover.active { + color: #FFF; + text-decoration: none; +} + +#alphabet li.last { border: none; } + + +/* TEXT +----------------------------------------------- */ +p { + font-family: Helvetica, Arial, Tahoma, Verdana, sans-serif; + font-size: 14px; + color: #000000; +} + +h1 { + font-family: 'Open Sans Condensed', Times, Arial, Verdana, sans-serif; + font-size: 29px; + font-weight: 100; + color: #444444; + margin: 5px 0; + padding: 0; +} + +h2 { + font-family: 'Open Sans Condensed', Times, Arial, Verdana, sans-serif; + font-size: 25px; + font-weight: normal; + color: #000000; + margin: 5px 0; + padding: 5px; +} + +h3 { + font-family: 'Open Sans Condensed', Times, Arial, Helvetica, sans-serif; + font-size: 22px; + font-weight: normal; + color: #444444; + margin: 5px 0; + padding: 0; +} + +h4 { + font-family: 'Open Sans Condensed', Arial, Verdana, sans-serif; + font-size: 17px; + font-weight: bold; + color: #000000; +} + +.lined { + position: relative; + font-size: 30px; + z-index: 1; + overflow: hidden; + text-align: center; +} +.lined:before, .lined:after { + position: absolute; + top: 51%; + overflow: hidden; + width: 17%; + height: 3px; + content: '\a0'; + background-color: #97cc6a; +} +.lined:before { + margin-left: -17%; + text-align: right; +} + +.brd { + border-bottom: 2px solid #F5F5F5; +} + +.highlight { + color: #9EEF07; +} + +.stitle { + font-family: 'Open Sans Condensed', Times, Arial, Verdana, sans-serif; + font-size: 22px; + font-weight: normal; + color: #555; + margin: 0; + padding: 0; +} + +a:hover.stitle { + color: #94CA29; +} + +.req { + color: #FF0000; + font-weight: normal; +} + +.note { + padding-top: 4px; + font-size: 13px; + color: #BFBDBD; + margin-left: 3px; +} + +.username { + color: #000000; + font-weight: bold; +} + +.user { + color: #000; + font-size: 13px; + font-weight: normal; + padding: 2px 0 2px 18px; + background: url('../images/user.png') no-repeat center left; +} + +.newnum { + font-size: 12px; + color: #FFFFFF; + background: #8E8E8E; + font-weight: normal; + padding: 1px 4px; + margin-left: 3px; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +.count { + color: #FFFFFF; + font-size: 19px; + font-weight: normal; + padding: 5px 15px; + font-family: 'Open Sans Condensed', Times, Arial, Verdana, sans-serif; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +.count a { + color: #FFFFFF; + text-decoration: none; +} + +.stats1 { + background: #6EB8C9; +} + +.stats2 { + background: #939393; +} + +.stats3 { + background: #FFAD16; +} + +.stats4 { + background: #7AD108; +} + +#shadow { + background: url('../images/shadow.gif') no-repeat bottom right; + margin: 10px 0 0 5px !important; + float: left; + text-align: center; +} + +#shadow img { + display: block; + background-color: #FFFFFF; + margin: -3px 6px 6px -3px; + padding: 3px; +} + +.img_s { + border-radius: 5px; + box-shadow: 0 10px 6px -6px #EEE; +} + +.balance { + color: #FFFFFF; + background: #89D70D; + padding: 3px 8px; +} + +.abalance { + float: right; + width: 200px; + border: 1px solid #EEEEEE; + background: #F9F9F9; + color: #333333; + padding: 15px 10px; + margin: 10px 5px 10px 5px; + text-align: center; + -webkit-box-shadow: 0 8px 6px -6px #999; + -moz-box-shadow: 0 8px 6px -6px #999; + box-shadow: 0 8px 6px -6px #999; + border-radius: 10px; + -moz-border-radius: 10px; + -webkit-border-radius: 10px; +} + +.abalance span { + padding-top: 4px; + font-size: 33px; + color: #44aa04; +} + +.mbalance { + color: #000000; + font-weight: bold; +} + +.available_balance { + height: 35px; + background: #cef8a1; + color: #000; +} + +.cashout_requested { + height: 35px; + background: #EBEBEB; +} + +.cashout_processed { + height: 35px; + background: #e0ffe7; +} + +.imgs { + border: 1px solid #EFEFEF; + margin-right: 3px; + padding: 2px; + background: #FFFFFF; +} + +a:hover .imgs { + border-color: #F3F3F3; +} + +.imagebox { + width: 120px; + height: 70px; + background: url('../images/shadow.png') no-repeat; + margin: 0 auto; +} + +.imagebox img { + border: 1px solid #F5F5F5; +} + +.dealbox { + height: 95px; + float: left; + margin: 0 0 0 20px; + background: url('../images/shadow.png') no-repeat; +} + +.dealbox img { + padding-top: 1px; + margin-bottom: 3px; +} + +.oldcash { + text-decoration: line-through; + display: block; + text-align: center; + padding: 2px 0 0 0; + font-weight: bold; + color: #555555; + clear: both; +} + +.ccash { + display: block; + text-align: center; + padding: 2px 0 0 0; + font-weight: bold; + color: #5bbc2e; + font-size: 15px; + clear: both; +} + +.conditions_title { + color: #454545; + font-weight: bold; + background: url('../images/icon_conditions.png') no-repeat center left; + padding: 5px 5px 5px 25px; +} + +.sline { + background: #FFFFFF url('../images/line.gif') no-repeat center bottom; + margin: 2px auto; + height: 1px; + } + +.bline { + background: #F2F2F2 url('../images/px.gif') no-repeat center bottom; + margin: 2px auto; + height: 1px; +} + + +/* Support Messages +----------------------------------------------- */ +.answer, .support_message { + padding: 5px; + border-bottom: 1px solid #EEE; + margin-bottom: 5px; +} + +.message_date, .answer_date { + float: right; + padding: 2px 6px; + text-align: right; + font-size: 13px; + color: #777; + background: #F7F7F7; + border-radius: 10px; + -moz-border-radius: 10px; + -webkit-border-radius: 10px; +} + +.message_subject { + color: #444; + font-weight: bold; +} + +.message_text { + padding: 7px 5px 5px 0px; +} + +.answer_sender { + color: #000000; + font-weight: bold; + background: url('../images/icons/user.png') no-repeat center left; + padding: 5px 10px 5px 20px; +} + +.answer_support { + color: #000000; + font-weight: bold; + background: url('../images/icons/admin.png') no-repeat center left; + padding: 5px 10px 5px 20px; +} + +.answer_text { + padding: 7px 5px 5px 0; +} + +.no_replies { + color: #CECECE; +} + +.all_replies { + color: #47C8F7; +} + + +/* RETAILERS +----------------------------------------------- */ +table { + border-collapse: collapse; +} + +.odd { + background: #FFFFFF; + border-bottom: 1px solid #D0F9CA; +} + +.odd:hover { + /*background: #EAFFDF;*/ +} + +.even { + background: #F9F9F9; + border-bottom: 1px solid #D0F9CA; +} + +.even:hover { + /*background: #EAFFDF;*/ +} + +.featured_title { + color: #FC9207; + border-bottom: 1px solid #FEE4C1; + margin: 0; +} + +.featured_stores +{ + float: left; + width: 96%; + padding: 5px 5px 5px 25px; + margin: 10px 0; +} + +.featured { + position: relative; + top: 38px; + left: -40px; + color: #BB6CAA; + margin-bottom: -50px; +} + +.old_value { + font-size: 14px; + color: #555555; + font-weight: bold; + text-decoration: line-through; +} + +.bvalue { + font-family: 'Open Sans Condensed', Times, Arial, Helvetica, sans-serif; + color: #74bc00; + font-weight: normal; + font-size: 27px; + vertical-align: middle; + margin-right: 5px; +} + +.info_box { + float: left; + width: 85%; +} + +.item_store { + width: 100%; + min-height: 210px; + border: 1px solid #EEE; + border-radius: 5px; + margin: 5px; + padding: 8px; +} + +.item_store:hover{ + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); + cursor: pointer; +} + +a:hover.retailer_title { + color: #94CA29; + text-decoration: none; +} + +a.retailer_title_s { + color: #5E5E5E; + font-size: 13px; + font-weight: bold; + text-decoration: none; +} + +a:hover.retailer_title_s { + color: #94CA29; + text-decoration: none; +} + +.retailer_description { + min-height: 40px; + text-align: justify; +} + +#next-button, #prev-button { + color: #0bb586; + margin-left: 3px; + cursor: pointer; + white-space: nowrap; + text-decoration: none; + display: inline; +} + +#next-button:hover, #prev-button:hover { + color: #777; +} + +.tags { + font-size: 13px; + color: #D3D3D3; +} + +.s_statistics { + line-height: 1.6em; + margin: 5px; + font-size: 13px; +} +.s_statistics label { + display: block; + float: left; + clear: left; + width: 68px; +} +.s_statistics label, .retailer_statistics .label +{ + color: #737373; +} + +.category_description { + color: #5F5F5F; +} + +.browse_top { + padding: 8px 4px; + margin-bottom: 10px; + background: #F7F7F7; + border: 1px dotted #F5F5F5; + border-radius: 5px; +} + +.browse_top .sortby { + /*float: left;*/ +} + +.browse_top .sortby span { + color: #444444; + font-weight: bold; +} + +.browse_top .results { + /*float: right;*/ +} + +.browse_top .results span { + color: #444444; + font-weight: bold; +} + +.visits { + background: #EEE; + color: #000; + padding: 4px 9px; + margin-left: 5px; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + + +/* FORMS +----------------------------------------------- */ +fieldset { + border: 1px solid #CCCCCC; + padding: 10px; + border-radius: 8px; + -moz-border-radius: 8px; + -webkit-border-radius: 8px; +} + +form { + margin:0; + padding:0; + display: inline; +} + +.checkboxx { + float: left; + display: block; + margin: 0 4px 4px 0px; +} + +.sletter { + font-size: 13px; + font-weight: bold; + color: #567F03; + background: #D7F993; +} + +.submit { + margin:0; + padding: 8px 10px 8px 10px; + border: 1px solid #0bb586; + background: #0bb586; + color: #FFFFFF; + font-size: 14px; + font-family: Tahoma, Verdana, Arial, sans-serif; + font-weight: bold; + text-align: center; + cursor: pointer; + overflow: visible; + text-shadow: 0 1px 1px rgba(0,0,0,.3); + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + border-radius: .5em; + -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2); + -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2); + box-shadow: 0 1px 2px rgba(0,0,0,.2); +} + +.submit:hover { + border: 1px solid #555; + background: #555; + color: #FFFFFF; +} + +.submit.signup { + font-family: 'Open Sans Condensed', Times, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; + font-size: 19px; + font-weight: bold; + padding: 3px 25px 3px 25px; +} + +.cancel { + margin:0; + padding: 8px 10px 8px 10px; + border: 1px solid #D3D3D3; + background: #D3D3D3; + color: #FFFFFF; + font-size: 14px; + font-family: Tahoma, Verdana, Arial, sans-serif; + font-weight: bold; + text-align: center; + cursor: pointer; + overflow: visible; + text-shadow: 0 1px 1px rgba(0,0,0,.3); + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + border-radius: .5em; + -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2); + -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2); + box-shadow: 0 1px 2px rgba(0,0,0,.2); +} + +.cancel:hover { + border: 1px solid #B5B5B5; + background: #B5B5B5; +} + +.submit:focus, .cancel:focus { + outline: 0; +} + +a.button { + font-family: 'Open Sans Condensed', Times, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; + font-size: 18px; + font-weight: normal; + padding: 5px 15px; + display: inline; + border: 1px solid #DBFB9D; + background: #0bb586; + border: none; + color: #FFFFFF; + cursor: pointer; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + text-shadow: 1px 1px #707070; + text-decoration: none; +} + +.button:hover { + background: #B9FB36; +} + + +/* Pagination +----------------------------------------------- */ +div.pagination { + width: 100%; + clear: both; + font-size: 15px; + margin: 20px 0 20px 0; + text-align: center; + padding: 2px 0; +} + +div.pagination a { + background: #F9F9F9; + border: 1px solid #EEEEEE; + padding: 6px 11px; + text-decoration:none; + margin: 2px; + color: #333; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +div.pagination a:hover { + border: 1px solid #EFEFEF; + padding: 6px 11px; + background: #EFEFEF; + color: #000000; +} + +div.pagination span.disabled { + padding: 6px 11px; + margin: 2px; + color: #BCBCBC; +} + +div.pagination span.curPage { + background: #5bbc2e; + border: 1px solid #5bbc2e; + padding: 6px 11px; + color: #FFFFFF; + margin: 1px; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +div.pagination a.text {margin: 0 1px; background: none; border: none; } +div.pagination a.text:hover {color: #000000;} + + +/* Breadcrumbs +----------------------------------------------- */ +.breadcrumbs { + background: #F7F7F7; + padding: 7px 5px; + width: 100%; + margin: 5px 0; +} + +.breadcrumbs .home_link { + background: url('../images/icon_home.png') no-repeat left; + padding-left: 18px; +} + +.breadcrumbs a { + color: #333; + text-decoration: underline; +} + +.breadcrumbs a:hover { + color: #000; + text-decoration: none; +} + + +/* Other +----------------------------------------------- */ +.scrollup +{ + width: 40px; + height: 40px; + opacity: 0.3; + position: fixed; + bottom: 10px; + right: 10px; + display: none; + text-indent: -9999px; + z-index: 99999; + background: url('../images/icon_top.png') no-repeat; +} + +.search_box { + width: 100%; + background: #F7F7F7; + margin: 5px 0; + padding: 8px 5px; + text-align: center; + white-space: nowrap; +} + +.share_box { + margin: 0 auto; + width: 220px; + display: block; + padding: 3px 0 2px 10px; + text-align: center; +} + +.share_textbox { + width: 210px; + background: #FFFFFF; + border: 0px; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 14px; + color: #898989; + margin: 2px 0; + padding: 4px 3px; +} + +.referral_link { + font-size: 18px; + background: #eaf8e9; + border: 1px dotted #caecb9; + padding: 15px 10px; + text-align: center; + margin: 0 0 5px 0; + border-radius: 8px; +} + +.reflink_textbox { + background: #FFFFFF; + border: 1px solid #F0EBE4; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 18px; + color: #000000; + margin: 2px 0; + padding: 5px 8px; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +.referral_link_share { + width: 100%; + text-align: right; + margin: 2px 0; +} + +.link-sharer { + width: 180px; +} + +.payment_details { + padding: 5px 0; + background: #F9F9F9; + border-top: 1px dotted #EEEEEE; + border-bottom: 1px dotted #EEEEEE; +} + + +/* Tabs +----------------------------------------------- */ +#tabs_wrapper { + width: 420px; +} +#tabs_container { + margin-top: 15px; + border-bottom: 1px solid #EEE; +} +#tabs { + list-style: none; + padding: 5px 0 4px 0; + margin: 0 0 0 10px; + font-size: 13px; +} +#tabs li { + display: inline; +} +#tabs li a { + color: #B5B5B5; + border: 1px solid #EEE; + padding: 5px 10px; + text-decoration: none; + background: #F7F7F7; + border-bottom: none; + outline: none; + border-radius: 5px 5px 0 0; + -moz-border-radius: 5px 5px 0 0; + -webkit-border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; +} +#tabs li a:hover { + color: #FFFFFF; + background: #BEEF5B; + border: 1px solid #BEEF5B; + padding: 5px 10px; +} +#tabs li.active a { + color: #000; + border-bottom: 1px solid #FFF; + background-color: #FFF; + padding: 5px 10px 6px 10px; + border-bottom: none; + font-weight: bold; +} +#tabs li.active a:hover { + color: #FFF; + background-color: #9EEF07; + border: 1px solid #EEE; + padding: 5px 10px 6px 10px; + border-bottom: none; +} +#tabs_content_container { + padding: 5px; + width: 750px; + overflow: hidden; +} +.tab_content { + display: none; + margin-top: 5px; +} + + +/* News +----------------------------------------------- */ +.news_info { + border-bottom: 2px solid #F7F7F7; + margin: 5px 0; + padding: 5px 0; +} + +.news_info a { + color: #5bbc2e; + text-decoration: none; +} + +.news_info a:hover { + color: #777; + text-decoration: none; +} + +.news_date { + color: #444444; + padding: 0; + margin-bottom: 5px; + font-weight: bold; +} + +.news_title { + font-family: 'Open Sans Condensed', Times, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; + color: #000; + font-size: 16px; + padding: 7px 0; +} + +.news_description { + font-size: 15px; + line-height: 15px; +} + + +/* SCROLL +----------------------------------------------- */ +/* Horizontal Orientation CSS */ +.jscarousal-horizontal +{ + width: 100%; + height: 100px; + background-color: #FFFFFF; + margin: 10px 0; + padding: 5px 3px 5px 3px; + position: relative; /*overflow: hidden;*/ +} +.jscarousal-horizontal-back, .jscarousal-horizontal-forward +{ + float: left; + width: 20px; + height: 60px; + color: white; + position: relative; + top: 2px; + cursor: pointer; +} +.jscarousal-horizontal-back +{ + background-image: url('../images/left_arrow.gif'); + background-repeat: no-repeat; + background-position: left; +} +.jscarousal-horizontal-forward +{ + background-image: url('../images/right_arrow.gif'); + background-repeat: no-repeat; + background-position: right; +} +.jscarousal-contents-horizontal +{ + width: 94%; + height: 100px; + float: left; + position: relative; + overflow: hidden; +} +.jscarousal-contents-horizontal > div +{ + position: absolute; + width: 100%; + height: 100px; +} +.jscarousal-contents-horizontal > div > div +{ + float: left; + margin-left: 3px; + margin-right: 3px; + margin-bottom: 10px; +} +.jscarousal-contents-horizontal img +{ + max-width: 120px; + max-height: 60px; + border: solid 1px #EEE; +} + +/* Common Sroll */ +.hidden +{ + display: none; +} +.visible +{ + display: block; +} +.thumbnail-active +{ + filter: alpha(opacity=100); + opacity: 1.0; + cursor: pointer; +} +.thumbnail-inactive +{ + filter: alpha(opacity=70); + opacity: 0.7; + cursor: pointer; +} +.thumbnail-text +{ + font-size: 13px; + color: #B7B7B7; + font-weight: normal; + text-align: center; + display: block; + padding: 2px; + text-wrap: normal; + width: 125px; +} + + +/* Rating +----------------------------------------------- */ +.rating { + display: inline-block; + position: relative; + width: 50px; + height: 10px; +} +.rating .cover { + position: absolute; + background: transparent url('../images/rating_stars.png') top left no-repeat; + top: 0px; + left: 0px; + width: 50px; + height: 10px; + z-index: 101; +} +.rating .progress { + position: absolute; + background: transparent url('../images/rating_stars_full.png') top left no-repeat; + top: 0px; + left: 0px; + height: 10px; + z-index: 102; +} + + +/* Reviews +----------------------------------------------- */ +.review-form { + padding: 5px 0; + margin-bottom: 15px; + line-height: 19px; +} + +#add_review_link { + float: right; + padding-top: 20px; +} + +#add_review_link a { + background: url('../images/icon_add.png') no-repeat 2px; + padding: 4px 4px 4px 22px; + color: #88B527; + font-weight: normal; + text-decoration: none; + border-radius: 5px; +} + +#add_review_link a:hover { + color: #000; + text-decoration: none; +} + +.store_reviews +{ + background: url('../images/icon_reviews.png') 1px 1px no-repeat; + padding: 1px 0 5px 38px; + border-bottom: 1px solid #F5F5F5; + margin-top: 17px; +} + +#review { + border-bottom: 1px dotted #EEE; + padding: 5px 0; +} + +.review-author { + background: url('../images/user.png') no-repeat center left; + padding: 5px 5px 5px 20px; + color: #777; + font-weight: bold; +} + +.review-date { + float: right; + color: #CCCCCC; +} + +.review-title { + font-size: 15px; + font-weight: bold; +} + +.review-text { + padding: 5px 0; +} + +.myreview { + background: #F9F9F9; + padding: 7px; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; +} + +.review_brd { + border-bottom: 1px dotted #EEE; +} + + +/* Site Statistics +----------------------------------------------- */ +.statistics { + background: #F9F9F9; + padding: 7px 5px; + text-align: center; + color: #777777; + border-radius: 7px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +.statistics span { + color: #888888; + font-size: 25px; + font-family: 'Open Sans Condensed', Times, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; +} + +.statistics .allcashback { + color: #91DB08; +} + + +/* Stores Coupons +----------------------------------------------- */ +.stores_list { + margin: 15px 0 0 0; + list-style-type: none; +} + +.store2 { + position: relative; + margin: 0 0 0 -40px; + padding: 0 0 30px 50px; + left: 50px; + font-size: 14px; + line-height: 13px; + zoom: 1; + overflow: hidden; +} + +.store2 .letter { + position: absolute; + font-size: 33px; + line-height: 33px; + top: 0; + left: 0; + color: #D3D3D3; + font-weight: bold; + clear: both; + float: left; +} + +.store2 ul { + list-style: none; + margin: 0; + padding: 0; + float: left; + width: 160px; +} + +.store2 ul li { + margin:0 0 5px 0; +} + +.store2 ul li a { + color: #000; + text-decoration: none; +} + +.store2 ul li a:hover { + color: #7DBCED; + text-decoration: none; +} + +/* Slider +----------------------------------------------- */ +#slider { + margin: 1em 0 0 0; + padding: 0; +} + +#slider ul { + margin: 0; + padding: 0; + list-style: none; +} +#slider li { + width: 570px; + height: 225px; + overflow: hidden; +} + +ol#controls { + display: none; /*block*/ + position: relative; + right: 0; + top: -10px; + height: 15px; + margin: 0; +} +ol#controls li { + margin: 0 0 0 3px; + padding: 0; + float: left; + list-style: none; + height: 28px; + line-height: 28px; +} +ol#controls li a { + float: left; + height: 16px; + line-height: 16px; + background: #EEE; + border: 1px solid #EEE; + color: #555; + padding: 0 4px; + text-decoration: none; +} +ol#controls li.current a { + border: 1px solid #0bb586; + background: #0bb586; + color: #FFF; +} +ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus {outline:none;} + + +#footer +{ + width:100%; + color: #FFF; + background: #515151; + margin-top: 0px; + padding: 20px 0; +} + +#footer img { + -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */ + filter: grayscale(100%); +} + +.footer-col +{ + margin-left:0px !important; +} + +#footer h3 { + color: #FFF; + margin: 20px 0; +} + +.footer-col +{ + width:100%; + float:left; + clear:both; + padding-bottom:10px; +} +.footer-col h2 +{ + font-size:18px; + color:#FFF; + font-weight:600; +} + +.footer-col ul +{ + margin:0px; + padding:0px; +} +.footer-col li +{ + list-style-type:none; + clear:both; + float:left; + color:#FFF; + font-size:14px; + font-weight: 500; + margin-top: 5px; + +} + +#footer .rss { + padding: 7px 0 7px 20px; + background: url('../images/icon_rss.png') no-repeat center left; +} + +#footer .powered-by-exchangerix { + position: relative; + white-space: nowrap; + top: 5px; + right: 45px; + float: right; + color: #FFF; + font-size: 14px; + padding: 15px 0; +} + +#footer .powered-by-exchangerix a { + color: #000; + font-weight: bold; + text-decoration: none; +} + +#footer .powered-by-exchangerix a:hover { + color: #94d802; + text-decoration: none; +} + + +#footer .copyright +{ + padding-top: 15px; + color: #FFF; + font-size:13px; + text-align:center; + padding-bottom:0px; + line-height:22px; +} + +#footer .copyright p +{ + color: #EEE; +} + +#footer a +{ + padding:0; + color:#EEE; +} + +#footer a:hover +{ + color:#FFF; +} + + + +/* Social buttons +----------------------------------------------- */ +#social { + margin: 10px 5px 5px 10px; + padding: 0; + line-height: 12px; +} + +#social a { + color: #333333; + font-weight: normal; + text-decoration: none; + filter: alpha(opacity=70); + opacity: 0.7; + cursor: pointer; +} + +#social a:hover { + color: #000000; + text-decoration: none; + filter: alpha(opacity=100); + opacity: 1.0; + cursor: pointer; +} + +#social .facebook_icon { + background: url('../images/facebook.png') no-repeat left; + padding: 18px 18px 15px 13px; +} + +#social .twitter_icon { + background: url('../images/twitter.png') no-repeat left; + padding: 18px 18px 15px 13px; +} + +#social .rss_icon { + background: url('../images/rss.png') no-repeat left; + padding: 18px 18px 15px 13px; +} + + + +/* carousel */ +#quote-carousel +{ + padding: 0 10px 10px 10px; + margin-top: 20px; + + /*max-height: 200px !important; */ +} + +/* Control buttons */ +#quote-carousel .carousel-control +{ + background: none; + color: #CCC; + font-size: 1.3em; + text-shadow: none; + margin-top: 50px; +} +/* Previous button */ +#quote-carousel .carousel-control.left +{ + left: -12px; +} +/* Next button */ +#quote-carousel .carousel-control.right +{ + right: -12px !important; +} +/* Changes the position of the indicators */ +#quote-carousel .carousel-indicators +{ + right: 50%; + top: auto; + bottom: 0px; + margin-right: -19px; +} +/* Changes the color of the indicators */ +#quote-carousel .carousel-indicators li +{ + background: #c0c0c0; +} +#quote-carousel .carousel-indicators .active +{ + background: #333333; +} + +/* +#quote-carousel img +{ + width: 250px; + height: 100px +} +*/ +/* End carousel */ + +.item blockquote { + font-size: 1em; + border-left: none; + margin: 0; + padding: 0; +} + +.item blockquote img { + margin-bottom: 10px; +} +/* +.item blockquote p:before { + content: "\f10d"; + font-family: 'Fontawesome'; + float: left; + margin-right: 10px; +} +*/ + + +/** + MEDIA QUERIES +*/ + +/* Small devices (tablets, 768px and up) */ +@media (min-width: 768px) { + #quote-carousel + { + margin-bottom: 0; + padding: 0 20px 30px 20px; + min-height: 200px; + } + +} + +/* Small devices (tablets, up to 768px) */ +@media (max-width: 768px) { + + /* Make the indicators larger for easier clicking with fingers/thumb on mobile */ + + #quote-carousel .carousel-indicators { + bottom: -20px !important; + } + #quote-carousel .carousel-indicators li { + display: inline-block; + margin: 0px 5px; + width: 15px; + height: 15px; + } + #quote-carousel .carousel-indicators li.active { + margin: 0px 5px; + width: 20px; + height: 20px; + } +} + + + +.progress-bar-x { + width: calc(96% - 6px); /*100%*/ + height: 27px; + background: #e1e1e1; + padding: 3px; + border-radius: 3px; + box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2); + margin: 5px 0; + position: absolute; + z-index: 2; +} + +.progress-bar-fill { + display: block; + height: 16px; + background: #b7d6b7; + border-radius: 3px; + /*transition: width 250ms ease-in-out;*/ + transition: width 60s ease-in-out; + + position: relative; + top: -17px; + z-index: -1; + +} + +.progress-note { color: #000; font-size: 13px; padding-top: 3px; text-align: center; z-index: 0; } + +.reseting { + transition: none; +} + + +.widget { + width: 100%; + border: 1px solid #EEE; + border-radius: 5px; + background: #fff; + border-radius: 4px; + box-shadow: 0 2px 1px #EEE; + padding: 15px; + margin-bottom: 15px; +} + +.widget.gray { + background: #F9F9F9; +} + +#testimonials-box { min-height: 210px; } + +.carousel-inner.onebyone-carosel { margin: auto; width: 90%; } +.onebyone-carosel .active.left { left: -33.33%; } +.onebyone-carosel .active.right { left: 33.33%; } +.onebyone-carosel .next { left: 33.33%; } +.onebyone-carosel .prev { left: -33.33%; } + + +#ltable .morediv {display: none;} +#ltable tr:hover .morediv {display: block} + +@media only screen and (max-width: 428px) { + #ltable .morediv {display: block;} +} + + +.btn { + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12); +} + +.btn-success { + background: #77b540; + border: 1px solid #77bf38; +} + +.label {font-size: 13px; font-weight: normal} + + +/* STEPS */ +.wrap { + text-align: center; + margin: 25px auto; + position: relative; + width: 70%; +} +.links { + padding: 0 0; + display: flex; + justify-content: space-between; + position: relative; +} +.wrap:before { + content: ''; + position: absolute; + top: 50%; + left: 0; + border-top: 3px dotted #ccc; + background: #fff; + width: 100%; + transform: translateY(-50%); +} +.dot { + font-weight: bold; + width: 70px; + height: 40px; + background:#eee; color: #CCC; padding: 10px; border-radius: 15px; +} + +.dot.done { + background:#79b45b; color: #FFF; +} + +.dot.current { + background:#FFF; border: 1px solid #999; color: #000; +} + +.dot.disabled { + background:#eee; color: #CCC; +} + +.modal-open {position: fixed; width: 100%;} + +#testimonials div { border-right: 2px dotted #EEE; } +#testimonials div.last { border: none; } + +@media (max-width: 768px) { + .wrap { width: 100%; } + #testimonials div { border-right: none; border-bottom: 3px dotted #EEE; } +} + + +[data-letters]:before { + content:attr(data-letters); + display:inline-block; + font-size:1em; + width:2.5em; + height:2.5em; + line-height:2.5em; + text-align:center; + border-radius:50%; + background:#72b437; + vertical-align:middle; + margin-right:1em; + color:white; +} + +.icircle { + display: inline-block; + border-radius: 0.8em; + box-shadow: 0px 0px 2px #888; + padding: 8px; + margin: 0 5px; +} + +#acc_user_menu { + width: 100%; + background: #F6F6F6; + border-radius: 7px; + padding: 15px 8px 15px 15px; + margin: 5px 0 20px 0; + height: 50px; + box-shadow: 3px 2px 2px 2px #eee; +} + +#acc_user_menu ul { float: left; list-style: none; margin: 0;} +#acc_user_menu li {float: left; list-style: none; margin-right: 17px; padding: 0;} +#acc_user_menu a {color: #000} +#acc_user_menu a:hover {color: #5bbc2e} + + +#account_nav li {} +#account_nav li:hover i {color: #5bbc2e} +#account_nav a {color: #000} +#account_nav a:hover {color: #000} + + +.imgrs { + border-radius: 50%; + margin-right: 5px; +} + +textarea { padding: 10px } + +.operator_box { + background: #F7F7F7; + padding: 15px; + margin: 10px 0; + border-radius: 10px; +} + +#ltable .reserve_a { font-size: 22px; font-weight: bold; } + +.home_h1 { color: #000; font-size: 40px; border-bottom: 1px solid #cee2c5; margin-left: 56px } +.home_btn { margin-left: 56px } +.home_btn button { + font-family: 'Open Sans Condensed', Times, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; + font-size: 27px; + padding: 10px 30px; + border-radius: 10px; +} + + +@media screen and (max-width: 968px) { + h1{ + font-size:25px; + } + + h2.lined{ + font-size:28px; + } + + .total_pay { font-size: 18px; } + .progress-bar-x { width: 92% } + .operator_box { border-radius: 0; text-align: center; margin: 2px 0} + .login-reg { padding: 12px; background: #eef2f4 } + #ltable h3 { font-size: 19px } + #ltable .reserve_a { font-size: 19px; font-weight: bold; } + .modal-dialog h2 { font-size: 19px; } + .home_h1 { margin: 5px } + .home_btn { margin: 5px } + .home_btn button { display: block; min-width: 100%; font-size: 24px; } + .powered-by-exchangerix { margin-right: 17%} +} + +@media only screen and (max-width: 428px) { + /* For mobile phones: */ + .extitle { font-size: 19px } +} \ No newline at end of file diff --git a/css/stylesheet.css b/css/stylesheet.css new file mode 100644 index 0000000..25b4ae7 --- /dev/null +++ b/css/stylesheet.css @@ -0,0 +1,2716 @@ +body { + font-family: 'Open Sans', sans-serif; + font-size: 14px; + color: #444; + font-weight:100; +} + +h1, h2, h3, h4, h5, h6 { + color: #000; + font-weight:100; + margin:0px; + padding:0px; +} +p { + margin:0px 0px 0px 0px; + padding:0px 0px 15px 0px; +} + +#wrapper +{ + width:100%; clear:both; float:left; +} +#header +{ + width:100%; clear:both; float:left; +} + +#nav +{ + width:100%; clear:both; float:left; margin-top: 10px; +} + +.dropdown {float: right} + + +.logo +{ + width:100%; + float:left; + clear:both; + margin:20px 0px 10px 0px; +} +.logo img +{ + width:288px; + height:auto; +} +.header-top +{ + width:100%; + float: right; + clear:both; +} +.header-top h2 +{ + font-size:13px; + color:#000; + float:left; + margin-top:10px; + padding-left:10px; +} +.Signin +{ + background-color:#1bb2d0; + font-size:14px; + color:#FFF; + border-bottom-right-radius: 5px; + float:right; + text-decoration:none; + font-weight: 400; +padding: 7px 20px 7px 20px; +} +.Signin:hover +{ + background-color:#1bb2d0; + color:#FFF; + text-decoration:none; + +} +.Signin +{ + background-color:#1bb2d0; + color:#FFF; + text-decoration:none; + +} +.Signup +{ + background-color:#0b30a6; + font-size:14px; + color:#FFF; + border-bottom-left-radius: 5px; + float:right; + text-decoration:none; + font-weight: 400; +padding: 7px 20px 7px 20px; +} +.Signup a +{ + background-color:#0b30a6; + font-size:14px; + text-decoration:none; + +} +#banner-cntr +{ + width:100%; + float:left; + clear:both; + text-align:center; + background:url(../images/bannerbg-.png) no-repeat center; + background-size:cover; + padding:60px 0px; +} +.banner-text h1 +{ + color:#FFF; + text-align:center; + font-size:40px; + font-weight:700; + +} +.banner-text h2 +{ + color:#FFF; + text-align:center; + font-size:24px; + font-weight:500; + padding-bottom:30px; +} +.banner-text +{ + width:100%; + float:left; + text-align:center; + +} + +.banner-search +{ + width:750px; + text-align:center; + padding-top: 20px; + margin:0px auto; + +} +.banner-search input +{ + background-color:#fff; + color:#666; + border:none; + font-size:14px; + padding: 10px 0px 10px 20px; +width: 80%; + +} +.banner-search button +{ + background-color:#fa8d00; + color:#fff; + font-size:14px; + text-transform:uppercase; + border:none; + padding: 10px 25px 10px 25px; +} +.check-box +{ + + float:left; + clear:both; + padding:20px; + width:auto; +} +.checkbox-inline +{ + width:80px; + float:left; +} +.check-boxText +{ + font-size:14px; + color:#CCC; + float:right; + text-align:right; + margin-right: 7px; + padding-top:20px; +} +.menu-row +{ + width:100%; + clear:both; + float:right; +} +.banner-icon +{ + width:100%; + float:left; + clear:both; + margin-top:80px; +} +.icon-col +{ + width:100%; + float:left; + clear:both; +} +.icon-col img +{ + + float:left; + clear:both; + margin-left: -8px; +} +.icon-col h2 +{ + font-size:22px; + color:#fff; + text-align:left; + font-weight:500; + margin-top:6px; + +} +.icon-col h3 +{ + font-size:14px; + color:#fff; +text-align:left; + font-weight:500; + +} +.product-cntr +{ + width:100%; + float:left; + clear:both; + +} +.heading +{ + width:100%; + float:left; + clear:both; + padding-top:15px; + text-align:center; +} +.heading h1 +{ + font-size:28px; + color:#7ca629; + margin-top: 20px; +} +.product-col +{ + width:96%; + float:left; + border:1px solid #eaeaea; + padding:5px; + clear:both; + margin-top:10px; + margin-bottom: 5px; +} +.product-col:hover +{ + box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.35); + cursor:pointer; +} +.product-col img +{ + width:100%; + float:left; + padding-bottom:8px; +} +.product-col h2 +{ + font-size:16px; + color:#333; + font-weight:500; + padding-bottom: 5px; +} +.product-col p +{ + font-size:13px; + color:#4c4c4c; + border-bottom:1px solid #eaeaea; + padding-bottom:5px; + margin-bottom: 16px; + +} +.product-col a +{ + font-size:13px; + background-color:#fff; + border:#ccc solid 1px; + color:#333; + border-radius:4px; + text-decoration:none; + padding: 5px 15px 5px 15px; + font-weight:bold; + float:left; + margin-left:3px; + margin-bottom:10px; +} +.product-col a:hover +{ + background-color:#fa8d00; + border:#fa8d00 solid 1px; + color:#fff; +} +.product-col span +{ + font-size:20px; + font-weight:600; + color:#fa8d00; + float:right; + margin-top: -9px; +} +.brands +{ + width:100%; + float:left; + clear:both; + +} +.brands-logo +{ + width:100%; + float:left; + clear:both; + padding-top: 18px; +} +.brands-logo p +{ + font-size:12px; + color:#000; + text-align:center; + font-weight: 600; +} +.reviews +{ + width:100%; + float:left; + clear:both; + +} +.reviews-col +{ + width:100%; + float:left; + clear:both; + padding: 14px; +} +.boder +{ + border-bottom:1px #eaeaea solid; + border-top:1px #eaeaea solid; + float: left; +margin-top: 10px; +width:100%; +} +.reviews-col img +{ + width:100%; + float:left; + margin-bottom:10px; +} +.reviews-col h2 +{ + font-size:14px; + color:#333; + font-weight:600; +} +.reviews-col h2 span +{ + float:right; +} +.reviews-col h3 +{ + font-size:13px; + color:#666; + font-weight:500; + line-height: 23px; +} +.reviews-col h4 +{ + font-size:18px; + color:#0b30a6; + font-weight:600; +} +.reviews-col p +{ + font-size:14px; + color:#333; + font-weight:100; + line-height: 19px; + padding-bottom:9px; + +} +.reviews-col a +{ + font-size:15px; + color:#0b30a6; + font-weight:600; + text-decoration:none; +} +.reviews-img-top +{ +float: left; +top: 15px; +left: 10px; +padding-left: 16px; +position: absolute; +background: url(../images/img-top.png) no-repeat left; +font-size: 14px; +color: #FFF; +width: 132px; +padding: 7px 0px 9px 12px; +} + + +.advt1 +{ + position:absolute; + left:10%; + top:150px; +} +.advt2 +{ + position:absolute; + right:5%; + top:160px; +} +.header-in +{ + background-color:#fff; +} +.menu-ctnr +{ + background-color:#5bbc2e; height: 65px; width:100%; clear:both; float:left; border-bottom:#ccc solid 2px; border-top:#eee solid 1px; +} + + +.menu-ctnr .nav {font-size: 18px; font-family: 'Open Sans', sans-serif; font-weight: bold; background-color:#5bbc2e; } +.menu-ctnr .nav li a { color: #FFF; } + +h1 { border-bottom: 4px solid #F7F7F7; margin-top: 10px; margin-bottom: 10px; padding-bottom: 10px; } + + +.sign-upbtn +{ + float:right; +} +.search-ctnr +{ + float:left; margin:5px 0px; width:70%; +} +.search-ctnr input +{ + width:80%; + background-color:#fff; + padding:3px 10px; + color:#666; + border-bottom:#ccc solid 3px; + border-left:#ccc solid 3px; + border-top:#ccc solid 3px; + border-right:#fff solid 3px; + float:right; +} +.search-ctnr button +{ + background-color:#7ca629; + border:#7ca629 solid 1px; + padding:5px 20px; + color:#fff; + float:right; + text-transform:uppercase; + font-weight:bold; +} +#body-ctnr +{ + width:100%; clear:both; margin:10px 0px; +} +.panel-deal-logo +{ + width:100%; + clear:both; + border:#e3e1e1 solid 1px; + text-align:center; + padding:8px 0px 8px 0px; +} +.panel-deal-logo h2 +{ + border-top:#e3e1e1 solid 1px; + padding:10px 0px 20px 0px; + font-size:18px; +} +.panel-deal-logo a +{ + background-color:#e43e94; + border-radius:4px; + color:#fff; + padding:7px 25px; + font-weight:700; +} +.padding-ctnr +{ + padding-left:45px; +} +.copun-head +{ + width:100%; clear:both; float:left; +} +.copun-head h2 +{ + font-size:36px; + color:#7ea82c; + font-weight:100; +} +.copun-head h3 +{ + font-size:18px; + color:#333; + font-weight:100; + padding:5px 0px 10px 0px; +} +.copun-head h3 strong +{ + color:#e43f94; +} +.tab-ctnr +{ + width:100%; clear:both; float:left; border-bottom:#ccc solid 1px; margin-top:20px; +} +.tab-ctnr ul +{margin:0; padding:0; +} +.tab-ctnr li +{ + list-style-type:none; + float:left; + padding:10px 15px; + cursor:pointer; +} + +.subscribe-btn +{ + float:right; +} +.subscribe-btn a +{ + float:right; + font-size:16px; + margin-top:15px; + color:#fff; + background-color:#7ea82c; + padding:7px 20px; + font-weight:400; + border-radius:4px; +} +.drop-down-ctnr +{ + float:right; +} +.panel-cate +{ + background-color:#FFF; + border-bottom:#e0e0e0 solid 1px; + border-right:#e0e0e0 solid 1px; + border-left:#e0e0e0 solid 1px; +margin-top:10px; +} +.panel-cate h1 +{ + font-size:21px; + background-color:#2890bd; + padding:7px 15px; + color:#fff; + +} +.panel-cate ul +{ + margin:0px; + padding:0px; +} +.panel-cate li +{ + list-style-type:none; + padding:0px 10px 0px 15px; + border-bottom:#e0e0e0 solid 1px; + line-height:30px; + font-size:14px; +} +.panel-cate li:hover +{ + background-color:#fbfbfb; + border-bottom:#c9c9c9 solid 1px; + color:#000; + cursor:pointer; +} +.panel-cate li img +{ + float:left; + border-right:#e0e0e0 solid 1px; + margin-right:10px; + background-color:#fbfbfb; + padding:5px; + +} +.panel-cate li span +{ + color:#999; + font-size:12px; + padding-left:10px; +} +.cash-bonus +{ + clear:both; + float:left; + width:100%; + text-align:right; + color:#fff; + padding:10px 0px; + font-weight:bold; + text-shadow:#fa8d00 0px 1px 0px; +} +.cash-bonus strong +{ + background-color:#ff535a; + padding:5px 10px; + border-radius:4px; + margin-right:5px; +} + +.brands-section +{ + clear:both; + float:left; + width:100%; +} +.brands-ctnr +{ + width:15%; + height:auto; + float:left; + text-align:center; + border:#ccc solid 1px; + margin:10px 0.83% ; + padding-bottom:10px; +} +.brands-ctnr:hover +{ + box-shadow: 3px 6px 1px 5px #EEE; + border:#666 solid 1px; + cursor:pointer; + +} +.brands-ctnr img +{ + margin-top: 2px; + width:80%; + height:auto; +} +.brands-ctnr h4 +{ + text-align:center; + font-size:15px; +} +.copun-ctnr +{ + width:90%; + float:left; + border:#eee solid 1px; + text-align:center; + position:relative; + margin:25px 0px 0px 0px; +} +.copun-ctnr img +{ + width:45%; + height:auto; + margin-top:30px; +} +.copun-ctnr h2 +{ + font-size:13px; + text-align:left; + padding:20px 10px 0px 15px; + text-transform:uppercase; + color:#222222; + text-align:center; + line-height:22px; +} +.copun-ctnr h3 +{ + color:#4705db; + font-size:13px; +} +.copun-ctnr h4 +{ + background-color:#223348; + text-align:center; + padding:7px 0px; + margin-top:40px; + color:#fff; + font-size:13px; + text-transform:uppercase; + font-weight:400; + margin-left:30px; + margin-right:30px; +-moz-border-radius-topleft: 3px; +-webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; +-moz-border-radius-topright: 3px; +-webkit-border-top-right-radius: 3px; +border-top-right-radius: 3px; +} + +.copun-ctnr h5 +{ + background-color:#78b536; + text-align:center; + padding:7px 0px; + margin-top:40px; + color:#fff; + font-size:13px; + text-transform:uppercase; + font-weight:400; + margin-left:40px; + margin-right:40px; +-moz-border-radius-topleft: 3px; +-webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; +-moz-border-radius-topright: 3px; +-webkit-border-top-right-radius: 3px; +border-top-right-radius: 3px; +} +.copun-ctnr h5:hover +{ + background-color:#ef2e49; + cursor:pointer; +} +.copun-ctnr h4:hover +{ + background-color:#ea8604; + cursor:pointer; +} +.copun-label +{ +float: left; +top: 5px; +left: 10px; +padding-left: 16px; +position: absolute; +background: url(../images/img-top.png) no-repeat left; +font-size: 14px; +color: #FFF; +width: 132px; +margin-left:-16px; +padding: 7px 0px 9px 12px; +font-weight:700; +} +.cachback-label +{ +float: left; +top: 5px; +left: 10px; +padding-left: 16px; +position: absolute; +background:url(../images/cashback-label.png) no-repeat left; +font-size: 14px; +color: #FFF; +width: 132px; +margin-left:-16px; +font-weight:700; +padding: 7px 0px 9px 12px; +} +.copun-logo +{ + +top: 5px; +right: 10px; + +position: absolute; +font-size: 16px; +color: #666; +padding: 5px 0px 9px 12px; +font-weight:600; +} +.banner-slide +{ + /*background:url(../images/banner-1.jpg) no-repeat center top;*/ + height:340px; + clear:both; + width:100%; +} +.top1 +{ + clear:both; + width:100%; + float:left; + text-align:right; + padding:5px 0px; + color:#666; + font-size:13px; +} +.top2222 +{ + clear:both; + width:100%; + float:left; + margin:5px 0px; +} + + +.search-filed { width: 40%; float: left; padding-top: 22px; } + +.login-reg +{ + width:98%; + float:right; + font-size:14px; + font-weight:400; + color:#333; + text-align:right; + padding-top:12px; +} + +.login-reg a +{ + color:#333; +} +.login-reg a:hover +{ + color:#176ca8; +} + +/* +.search-filed +{ + width:55%; + float:right; +} +.search-filed input +{ + width:80%; + background-color:#fff; + border:#EEE solid 1px; + padding:10px 8px; + color:#000; + font-size:15px; + float:left; + border-radius: 7px; +} +.search-filed button +{ + width:45px; + background-color:#fff; + border:#2191c0 solid 1px; + padding:5px 10px 5px 5px; + background:#29970a url(../images/search-icon.png) no-repeat 7px ; + color:#fff; + font-size:12px; + text-transform:uppercase; + text-align:right; + float:left; +} +*/ + +#custom-search-input{ + padding: 3px; + border: solid 1px #E4E4E4; + border-radius: 6px; + background-color: #fff; +} + +#custom-search-input input{ + border: 0; + box-shadow: none; +} + +#custom-search-input button{ + margin: 2px 0 0 0; + background: none; + box-shadow: none; + border: 0; + color: #666666; + padding: 0 8px 0 10px; + border-left: solid 1px #ccc; +} + +#custom-search-input button:hover{ + border: 0; + box-shadow: none; + border-left: solid 1px #ccc; +} + +#custom-search-input .glyphicon-search{ + font-size: 23px; +} + +.bee +{ + width:1000px; + clear:both; + float:left; + + border-radius:4px; + text-align:center; + padding:20px 0; +} +.bee img +{ +border:#e0e0e0 solid 1px; +width:985px; +height:auto; +} + +.list-ctnr +{ + width:100%; + float:left; + clear:both; + position:relative; +} +.list-ctnr ul +{ + margin:0px; + padding:0px; + width:100%; + clear:both; +} +.list-ctnr li +{ + list-style-type:disc; + color:#999; + font-size:12px; + padding:0px 30px 0px 0px; + float:left; +} +.list-ctnr h2 +{ + font-size:19px; + padding:5px 0px 5px 0px; + color:#666; + clear:both; + line-height:24px; + width:350px; +} +.list-ctnr h3 +{ + font-size:16px; + padding:10px 0px 10px 0px; + color:#666; + clear:both; + line-height:21px; + border-top:#ccc dashed 1px; +} +.list-ctnr h5 +{ + font-size:15px; + padding:0px 0px 10px 0px; + color:#e43e94; + clear:both; +} +.button-get-code +{ + + font-size:16px; + font-weight:400; + + float:right; + position:absolute; + right:5px; + top:25px; +} + +.button-get-code a +{ + background-color:#2890bd; + border:#2890bd solid 1px; + border-radius:4px; + color:#fff; + padding:5px 5px; + width:170px; + margin-bottom:7px; + display:block; + text-align:center; +} +.button-get-code a:hover +{ + color:#fff; + text-decoration:none; +} +.panel-login { + +} +.panel-login>.panel-heading { + color: #00415d; + background-color: #fff; + border-color: #fff; + text-align:center; +} +.panel-login>.panel-heading a{ + text-decoration: none; + color: #8dbf27; + font-weight: 400; + font-size: 15px; + padding:5px 20px; + border:#8dbf27 solid 1px; + border-radius:3px; + -webkit-transition: all 0.1s linear; + -moz-transition: all 0.1s linear; + transition: all 0.1s linear; + margin-right:30px; + text-align:right; +} +.panel-login>.panel-heading a.active{ + color: #2890bd; + font-size: 15px; + border:#2890bd solid 1px; +border-radius:3px; + padding:5px 20px; + text-align:left; +} +.panel-login>.panel-heading hr{ + margin-top: 10px; + margin-bottom: 0px; + clear: both; + border: 0; + height: 1px; + background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0)); + background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0)); + background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0)); + background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0)); +} +.panel-login input[type="text"],.panel-login input[type="email"],.panel-login input[type="password"] { + + border: 1px solid #ddd; + font-size: 13px; + -webkit-transition: all 0.1s linear; + -moz-transition: all 0.1s linear; + transition: all 0.1s linear; +} +.panel-login input:hover, +.panel-login input:focus { + outline:none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + border-color: #ccc; +} +.btn-login { + background-color: #59B2E0; + outline: none; + color: #fff; + font-size: 14px; + height: auto; + font-weight: normal; + padding: 14px 0; + text-transform: uppercase; + border-color: #59B2E6; +} +.btn-login:hover, +.btn-login:focus { + color: #fff; + background-color: #53A3CD; + border-color: #53A3CD; +} +.forgot-password { + text-decoration: underline; + color: #888; +} +.forgot-password:hover, +.forgot-password:focus { + text-decoration: underline; + color: #666; +} + +.btn-register { + background-color: #1CB94E; + outline: none; + color: #fff; + font-size: 14px; + height: auto; + font-weight: normal; + padding: 14px 0; + text-transform: uppercase; + border-color: #1CB94A; +} +.btn-register:hover, +.btn-register:focus { + color: #fff; + background-color: #1CA347; + border-color: #1CA347; +} + +.g-fb-login-btn +{ + float:left; + width:40%; +} +.g-fb-login-btn ul +{ + margin:0px; + padding:0px; +} +.g-fb-login-btn li +{ + border:#3b5998 solid 1px; + border-radius:2px; + padding:2px 0px; + list-style-type:none; + margin-bottom:15px; +} +.g-fb-login-btn h6 +{ + font-size:11px; + color:#666; +} + +.or-login +{ + width:10%; + text-align:center; + float:left; +} +.login-section +{ + width:50%; + float:left; +} +.login-section input +{ + width:100%; + background-color:#fff; + border:#ccc solid 1px; + padding:5px 10px; + color:#666; + font-size:13px; + border-radius:3px; +} +.login-section button +{ + background-color:#e43e94; + border:#e43e94 solid 1px; + border-radius:3px; + padding:5px 0px; + text-align:center; + width:100%; + color:#fff; + margin-top:10px; + margin-bottom:10px; +} +.login-section h6 +{ + font-size:11px; + color:#666; +} + +.sign-upIn-btn +{ + color:#666; + text-align:center; + padding:10px 0px; + font-weight:400; +} +.sign-upIn-btn a +{ + color:#e43e94; +} +.sign-upIn-btn a:hover +{ + color:#2890bd; + font-weight:bold; +} +.quick-reminder +{ + width:100%; + clear:both; + float:left; +} +.quick-reminder ul +{ + margin:0px; + padding:0px; +} +.quick-reminder li +{ + list-style-type:none; + float:left; + text-align:center; + width:25%; +} +.quick-reminder li img +{ + width:90px; + height:auto; +} +.quick-reminder h5 +{ + padding:10px 0px; + color:#666; + font-size:13px; +} +.continue-btn +{ + width:100%; + clear:both; + float:left; + text-align:center; + margin-top:20px; +} +.continue-btn a +{ + background-color:#2890bd; + border:#2890bd solid 1px; + border-radius:4px; + color:#fff; + font-size:16px; + font-weight:400; + padding:7px 15px; + +} +.continue-btn a:hover +{ + background-color:#e43e94; + border:#e43e94 solid 1px; +} +.header { + background-color: #fff; +} +/* +.menu-ctnr .nav { + position: -webkit-sticky; + top: 45px; + z-index: 1; +} +.header, .nav { + +} +*/ + +.sticky { + position: fixed; + width: 100%; + padding: 0px 0; + left: 0; + top: 0; + z-index: 100; + border-top: 0; + -moz-transition: padding .3s ease-in; + -o-transition: padding .3s ease-in; + -webkit-transition: padding .3s ease-in; + transition: padding .3s ease-in; +} +.sticky-menu { + width:85%; + float:right; +} +.sticky-logo +{ + display:none !important; +} +.logo-hs +{ +/* display:none !important;*/ +} +.deal-advt +{ + width:100%; + float:left; + clear:both; + text-align:center; +} +.dashboard-member +{ + width:100%; + clear:both; + border:#e3e1e1 solid 1px; + text-align:left; + padding:8px; +} +.dashboard-member h5 +{ + background-color:#66940c; + padding:5px 10px; + color:#fff; + margin-top:5px; +} +.cashbook-ctnr +{ + background-color:#ccc; + width:100%; + clear:both; +} +.cashbook-ctnr td,th +{ + padding:8px 0px; + font-size:16px; +} +.lasrab{ +} +.lasrab td, th +{ + padding-left:10px; +} +.my-details +{ + font-size:21px; + color:#2890bd; + +} +.my-cashabck +{ + color:#fff; + font-size:21px !important; + background-color:#2890bd; + text-align:center; +} +.dash-head +{ + width:100%; + clear:both; + float:left; + font-size:21px; + color:#333; + margin-bottom:10px; +} +.table-ctnr +{ + width:100%; + clear:both; + float:left; + background-color:#ccc; + margin-bottom:10px; +} +.table-ctnr th +{ + background-color:#eee; + padding:5px 10px; + color:#000; +} +.table-ctnr td +{ + padding:5px 10px; + background-color:#fff; +} +.ewal +{ + width:100%; + clear:both; + float:left; + font-weight:400; + color:#2890bd; + margin-bottom:20px; +} + +.form-dash +{ + width:100%; + clear:both; + float:left; +} +.form-dash h6 +{ + font-size:13px; + color:#666; + padding-bottom:2px; +} +.form-dash input +{ + width:60%; + background-color:#fff; + border:#ccc solid 1px; + padding:5px 10px; + color:#ccc; + border-radius:3px; + margin-bottom:20px; + font-size:12px; + clear:both; +} +.form-dash textarea +{ + width:60%; + background-color:#fff; + border:#ccc solid 1px; + padding:5px 10px; + color:#ccc; + border-radius:3px; + margin-bottom:20px; + font-size:12px; + clear:both; + +} +.form-dash button +{ + background-color:#7fb613; + border:#7fb613 solid 1px; + border-radius:4px; + color:#fff; + font-size:14px; + font-weight:600; + text-transform:uppercase; + padding:5px 30px; + clear:both; + display:block; +} +.note +{ + width:100%; + clear:both; + float:left; + font-weight:400; + color:#666; + line-height:21px; + margin-top:50px; +} +.invation-deta +{ + width:100%; + clear:both; + float:left; + font-size:18px; + font-weight:bold; + color:#333; + padding-bottom:10px; +} +.form-section +{ + width:100%; + clear:both; + float:left; +} +.form-section h6 +{ + font-size:13px; + color:#666; + padding-bottom:2px; +} +.form-section input +{ + width:95%; + background-color:#fff; + border:#ccc solid 1px; + padding:5px 10px; + color:#ccc; + border-radius:3px; + margin-bottom:20px; + font-size:12px; + clear:both; +} +.form-section select +{ + width:95%; + background-color:#fff; + border:#ccc solid 1px; + padding:5px 10px; + color:#ccc; + border-radius:3px; + margin-bottom:20px; + font-size:12px; + clear:both; +} +.form-section textarea +{ + width:95%; + background-color:#fff; + border:#ccc solid 1px; + padding:5px 10px; + color:#ccc; + border-radius:3px; + margin-bottom:20px; + font-size:12px; + clear:both; + +} +.form-section button +{ + background-color:#7fb613; + border:#7fb613 solid 1px; + border-radius:4px; + color:#fff; + font-size:14px; + font-weight:600; + text-transform:uppercase; + padding:5px 30px; + clear:both; + display:block; +} +.invite-social +{ + width:100%; + clear:both; + margin-top:15px; + float:left; +} +.invite-social ul +{ + margin:0px; + padding:0px; +} +.invite-social li +{ + list-style-type:none; + margin-bottom:20px; + border:#ccc solid 1px; + border-radius:4px; + padding:4px 8px; +} +.filter-top +{ + width:100%; + clear:both; + float:left; +} +.filter-top h4 +{ + font-size:13px; + color:#333; + font-weight:400; + padding-bottom:4px; +} +.filter-top select +{ + width:90%; +} +.filter-top button +{ + background-color:#e6489a; + padding:6px 0px; + width:90%; + color:#fff; + border:#e6489a solid 1px; + border-radius:3px; + margin-top:19px; +} + +.childTable +{ + width:100%; + clear:both; + float:left; + background-color:#fff; +} +.childTable th +{ + background-color:#e5f8ff; +} +.childTable td +{ + + padding:5px 5px 5px 10px; + font-size:13px; +} +.childTable tr:nth-child(even) {background: #fff} +.childTable tr:nth-child(odd) {background: #f3f3f3} +.select-btn +{ + width:100%; + clear:both; + float:left; + margin-top:20px; +} +.select-btn ul +{ + margin:0px; + padding:0px; +} +.select-btn li +{ + list-style-type:none; + background-color:#5cb85c; + margin-right:4px; + border-radius:3px; + color:#fff; + padding:7px 20px; + float:left; + cursor:pointer; +} +.contact-dash +{ + width:100%; + clear:both; + float:left; + font-size:14px; + line-height:21px; +} + +.mark-red +{ + color:#F00; +} +.upload-photo +{ + font-size:13px; + margin-top:-15px; + margin-bottom:20px; +} +.update-btn +{ + width:100%; + clear:both; + float:left; + text-align:center; +} +.update-btn button +{ + background-color:#7faa2a; + padding:7px 30px; + color:#fff; + border:#7faa2a solid 1px; + border-radius:4px; + font-weight:400; + text-transform:uppercase; +} +.member-head +{ + width:95%; + clear:both; + float:left; + border-bottom:#ccc solid 1px; + font-size:15px; + padding:5px 0px 5px 0px; + margin-bottom:15px; + color:#208cba; +} +.account-form +{ + width:100%; + clear:both; + float:left; +} + +.accpunt-filed +{ + width:95%; + clear:both; + float:left; + margin-bottom:10px; + border-bottom:#eee solid 1px; + padding-bottom:10px; +} +.accpunt-filed h2 +{ + font-size:13px; + float:left; + width:35%; + color:#666; +} +.accpunt-filed h4 +{ + font-size:13px; + float:left; + width:35%; + color:#666; + padding-top:5px; +} +.accpunt-filed h3 +{ + font-size:13px; + float:left; + width:65%; + color:#000; + font-weight:400; +} +.accpunt-filed input +{ + width:95%; + float:left; + border:#ccc solid 1px; + color:#666; + border-radius:2px; + padding:5px; +} +.accpunt-filed h6 +{ + color:#666; + font-size:13px; +} +.advt-ctnr +{ + clear:both; + float:left; + width:98.6%; + margin:0px 0.8%; + text-align:center; + border:#e6e6e6 solid 1px; + padding-bottom:10px; +} + +.two-ctnr +{ + clear:both; + float:left; + width:100%; +} +.two-ctnr ul +{ + margin:0px; + padding:0px; +} +.two-ctnr li +{ + list-style-type:none; + float:left; + width:50%; + +} +.two-ctnr li img +{ + width:100%; + padding:10px 10px 0px 10px; + height:auto; +} +.three-ctnr +{ + clear:both; + float:left; + width:100%; +} +.three-ctnr ul +{ + margin:0px; + padding:0px; +} +.three-ctnr li +{ + list-style-type:none; + float:left; + width:33.33%; + +} +.three-ctnr li img +{ + width:100%; + padding:10px 10px 0px 10px; + height:auto; +} + +.four-ctnr +{ + clear:both; + float:left; + width:100%; +} +.four-ctnr ul +{ + margin:0px; + padding:0px; +} +.four-ctnr li +{ + list-style-type:none; + float:left; + width:25%; + +} +.four-ctnr li img +{ + width:100%; + padding:10px 10px 0px 10px; + height:auto; +} +.withdreal-ctnr +{ + clear:both; + float:left; + width:100%; + border:#dfdfdf solid 1px; + background-color:#f6f6f6; + padding:10px; + +} +.balance-ctnr +{ + clear:both; + float:left; + width:100%; + text-align:left; + margin-bottom:30px; +} +.balance-ctnr h2 +{ + font-size:28px; + color:#2890bd; +} +.balance-ctnr h3 +{ + font-size:14px; + color:#666; +} +.w3Boxctnr +{ + clear:both; + float:left; + width:100%; + border:#dfdfdf solid 1px; + background-color:#fff; +} +.border-ctn +{ + border-left:#dfdfdf solid 1px; + border-right:#dfdfdf solid 1px; +} +.w3ctnr +{ + width:33.33%; + float:left; + text-align:center; + padding:30px 10px; +} +.w3ctnr h2 +{ + font-size:16px; + text-transform:uppercase; + color:#2890bd; + padding-bottom:5px; + padding-top:9px; + font-weight:400; +} +.w3ctnr h3 +{ + font-size:14px; + line-height:20px; + + color:#666; + height:80px; +} + +.w3ctnr a +{ + background-color:#7faa2a; + color:#fff; + text-align:center; + padding:5px 0px; + width:80%; + display:block; + margin-left:10%; + font-weight:400; + text-transform:uppercase; +} +.w3ctnr h4 +{ + font-size:13px; + + color:#666; + padding-top:15px; +} +.nav-dash2 +{ + width:100%; + clear:both; + float:left; + margin-top:10px; + background-color:#2890bd; +} +.nav-dash2 ul +{ + margin:0px; + padding:0px; +} +.nav-dash2 li +{ + list-style-type:none; + float:left; + padding:5px 20px; + color:#fff; + border-right:#fff solid 1px; + +} +.nav-dash2 li:hover +{ + background-color:#064b69; + cursor:pointer; +} +.account-detail-ctnr +{ + background-color:#eee; + width:100%; + clear:both; + float:left; + margin-bottom:10px; +} +.account-detail-ctnr td, th +{ + padding:5px; + background-color:#fff; + color:#666; + font-size:12px; + +} +.largeModel-2 { + width: 750px !important; +} +.transfer-btn +{ + background-color:#ed3f94; + padding:3px 15px; + color:#fff; + font-weight:400; + border-radius:2px; +} +.transfer-btn:hover +{ + background-color:#7ea82d; + color:#fff; +} +.missing-cash +{ + width:100%; + clear:both; + float:left; +} +/********************************/ +/* Main CSS */ +/********************************/ + + +#first-slider .main-container { + padding: 0; +} + + +#first-slider .slide1 h3, #first-slider .slide2 h3, #first-slider .slide3 h3, #first-slider .slide4 h3{ + color: #fff; + font-size: 30px; + text-transform: uppercase; + font-weight:700; +} + +#first-slider .slide1 h4,#first-slider .slide2 h4,#first-slider .slide3 h4,#first-slider .slide4 h4{ + color: #fff; + font-size: 30px; + text-transform: uppercase; + font-weight:700; +} +#first-slider .slide1 .text-left ,#first-slider .slide3 .text-left{ + padding-left: 40px; +} + + +#first-slider .carousel-indicators { + bottom: 0; +} +#first-slider .carousel-control.right, +#first-slider .carousel-control.left { + background-image: none; +} +#first-slider .carousel .item { + min-height: 340px; + height: 100%; + width:100%; +} + +.carousel-inner .item .container { + display: flex; + justify-content: center; + align-items: center; + position: absolute; + bottom: 0; + top: 0; + left: 0; + right: 0; +} + + +#first-slider h3{ + animation-delay: 1s; +} +#first-slider h4 { + animation-delay: 2s; +} +#first-slider h2 { + animation-delay: 3s; +} + + +#first-slider .carousel-control { + width: 6%; + text-shadow: none; +} + + +#first-slider h1 { + text-align: center; + margin-bottom: 30px; + font-size: 30px; + font-weight: bold; +} + +#first-slider .p { + padding-top: 125px; + text-align: center; +} + +#first-slider .p a { + text-decoration: underline; +} +#first-slider .carousel-indicators li { + width: 14px; + height: 14px; + background-color: rgba(255,255,255,.4); + border:none; +} +#first-slider .carousel-indicators .active{ + width: 16px; + height: 16px; + background-color: #fff; + border:none; +} + + +.carousel-fade .carousel-inner .item { + -webkit-transition-property: opacity; + transition-property: opacity; +} +.carousel-fade .carousel-inner .item, +.carousel-fade .carousel-inner .active.left, +.carousel-fade .carousel-inner .active.right { + opacity: 0; +} +.carousel-fade .carousel-inner .active, +.carousel-fade .carousel-inner .next.left, +.carousel-fade .carousel-inner .prev.right { + opacity: 1; +} +.carousel-fade .carousel-inner .next, +.carousel-fade .carousel-inner .prev, +.carousel-fade .carousel-inner .active.left, +.carousel-fade .carousel-inner .active.right { + left: 0; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} +.carousel-fade .carousel-control { + z-index: 2; +} + +.carousel-control .fa-angle-right, .carousel-control .fa-angle-left { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; +} +.carousel-control .fa-angle-left{ + left: 50%; + width: 38px; + height: 38px; + margin-top: -15px; + font-size: 30px; + color: #fff; + border: 3px solid #ffffff; + -webkit-border-radius: 23px; + -moz-border-radius: 23px; + border-radius: 53px; +} +.carousel-control .fa-angle-right{ + right: 50%; + width: 38px; + height: 38px; + margin-top: -15px; + font-size: 30px; + color: #fff; + border: 3px solid #ffffff; + -webkit-border-radius: 23px; + -moz-border-radius: 23px; + border-radius: 53px; +} +.carousel-control { + opacity: 1; + filter: alpha(opacity=100); +} + + +/********************************/ +/* Slides backgrounds */ +/********************************/ +#first-slider .slide1 { + background-image:url(../images/banner-1.jpg); + background-size: cover; + background-repeat: no-repeat; +} +#first-slider .slide2 { + background-image:url(../images/banner-2.jpg); + background-size: cover; + background-repeat: no-repeat; +} +#first-slider .slide3 { + background-image:url(../images/banner-3.jpg); + background-size: cover; + background-repeat: no-repeat; +} +#first-slider .slide4 { + background-image:url(../images/banner-4.jpg); + background-size: cover; + background-repeat: no-repeat; +} + +.categroy-head +{ + padding:7px 0px; + color:#258fbc; + font-weight:400; + font-size:16px; + +} +.hide-show +{ + display:block; +} +.navbar-brand { + float: left; + height: 45px; + padding: 15px 0px; + font-size: 18px; + line-height: 20px; +} +.color-icon +{ + top:0px !important; + color:#258fbc; +} + +.tab-pane { padding-top: 10px } + + +/*------------------------------------*\ + Media Queries +\*------------------------------------*/ + +@media only screen and (min-width: 320px) and (max-width: 768px) { +.navbar-brand +{ + display:block; +} + +.nav-tabs { margin: 0; padding: 0;} +.nav-tabs li { font-size: 12px; } + +#account_nav { margin-right: 25%; margin-top: 5px;} + +.search-filed { width: 100%; float: left; margin: 3px 0; z-index:1000;} +.login-reg { width: 100%; text-align: center; margin: 3px 0; background: #F7F7F7; padding: 5px; } +.abalance {width: 96%; clear: both;} +.info_box { width: 100% } +.logo img {width: 70%; float: left;} +.menu-ctnr { position: absolute; top: 20px; right: 0px; z-index:1001; background: transparent; border: none; } +.reflink_textbox {font-size: 14px; width: 98%; display: block;} +#copy-button {display: block; } +.navbar-collapse {background: #5bbc2e; color: #000; } + +.advt1 +{ + position:absolute; + left:10%; + display:none; + top:150px; +} +.advt2 +{ + position:absolute; + right:5%; + top:120px; + display:none; +} +.logo +{ + width:100%; + float:left; + clear:both; + text-align:center; + margin-top:10px; + margin-bottom:0px; +} +.Signin +{ + background-color:#1bb2d0; + font-size:14px; + color:#FFF; +-moz-border-radius-topright: 5px; +-webkit-border-top-right-radius: 5px; +border-top-right-radius: 5px; +-moz-border-radius-bottomright: 5px; +-webkit-border-bottom-right-radius: 5px; +border-bottom-right-radius: 5px; + float:right; + text-decoration:none; + font-weight: 600; +padding: 7px 20px 7px 20px; +margin-top:20px; +} +.Signin:hover +{ + background-color:#1bb2d0; + color:#FFF; + text-decoration:none; + +} +.Signin +{ + background-color:#1bb2d0; + color:#FFF; + text-decoration:none; + +} +.Signup +{ + background-color:#0b30a6; + font-size:14px; + color:#FFF; +-moz-border-radius-topleft: 5px; +-webkit-border-top-left-radius: 5px; + border-top-left-radius: 5px; +-moz-border-radius-bottomleft: 5px; +-webkit-border-bottom-left-radius: 5px; +border-bottom-left-radius: 5px; + float:right; + text-decoration:none; + font-weight: 600; +padding: 7px 20px 7px 20px; +margin-top:20px; +} +.Signup a +{ + background-color:#0b30a6; + font-size:14px; + text-decoration:none; + +} +.header-top +{ + width:100%; + float: none; + text-align:center; + clear:both; +} +.header-top h2 { + font-size: 13px; + color: #000; + float: left; + width:100%; + margin-top: 10px; + padding-left:0px; +} +.banner-search +{ + width:100%; + text-align:center; + background-color:#FFF; + padding-top: 20px; + float:left; + margin-left:0px; +} +.banner-search input +{ + background-color:#efefef; + color:#666; + border:none; + font-size:14px; + padding: 10px 0px 10px 20px; +width: 80%; +margin-bottom:10px; +clear:both; + +} +.banner-search button +{ + background-color:#fa8d00; + color:#fff; + font-size:14px; + text-transform:uppercase; + border:none; + padding: 10px 25px 10px 25px; + +} +.check-boxText { + font-size: 14px; + color: #666; + float: left; + text-align: center; + margin-right: 7px; + padding-top: 0px; + width:100%; + display:none; +} +.banner-text h1 +{ + color:#FFF; + text-align:center; + font-size:40px; + font-weight:700; + padding-top: 10px; +} +.check-box +{ + + float:left; + clear:both; + padding:10px; + width:auto; +} +.banner-icon +{ + width:100%; + float:left; + clear:both; + margin-top:30px; + display:none; +} +.icon-col +{ + width:100%; + float:left; + clear:both; + margin-bottom:30px; +} +.icon-col img +{ + + float:left; + clear:both; + margin-left: -8px; +} +.icon-col h2 +{ + font-size:22px; + color:#fff; + text-align:left; + font-weight:500; + margin-top:6px; + +} +.icon-col h3 +{ + font-size:14px; + color:#fff; +text-align:left; + font-weight:500; + +} +.brands-logo +{ + width:100%; + float:left; + clear:both; + padding-top: 18px; + text-align:center; +} +.brands-logo p +{ + font-size:12px; + color:#000; + text-align:center; + font-weight: 600; +} + + + +.navbar { + margin-bottom: 20px; +} + + +.top1 +{ + display:none; +} + +.banner-slide +{ + display: none; + +} +.heading +{ + width:100%; + float:left; + clear:both; + padding-top:15px; +} +.heading h1 +{ + font-size:24px; + color:#7ca629; + margin-top: 15px; +} +.brands-ctnr +{ + width:30%; + height:auto; + float:left; + text-align:center; + border:#ccc dashed 1px; + margin:10px 1.5% ; + padding-bottom:10px; +} +.brands-ctnr:hover +{ + + border:#666 dashed 1px; + cursor:pointer; + +} +.brands-ctnr img +{ + margin-top: 10px; + width:90%; + height:auto; +} +.brands-ctnr h4 +{ + text-align:center; + font-size:13px; +} +.advt-ctnr +{ + display:none; +} +.hide-ctnr +{ + display:none; +} +.cashback-ctnr +{ + display:none; +} +.g-fb-login-btn +{ + float:left; + width:100%; + clear:both; +} +.or-login +{ + width:100%; + clear:both; + text-align:center; + float:left; + border-bottom:#eee solid 1px; + margin:10px 0px; +} +.or-login img +{ + display:none; +} +.login-section +{ + float:left; + width:100%; + clear:both; +} +.copun-head +{ + width:100%; clear:both; float:left; +} +.copun-head h2 +{ + font-size:24px; + color:#7ea82c; + font-weight:100; +} +.copun-head h3 +{ + font-size:16px; + color:#333; + font-weight:100; + padding:5px 0px 10px 0px; +} +.copun-head h3 strong +{ + color:#e43f94; +} +.subscribe-btn +{ + width:100%; clear:both; float:left; + margin:20px 0px 10px 0px; +} +.subscribe-btn a +{ + float:none; + font-size:16px; + margin:0px 0px; + color:#fff; + background-color:#7ea82c; + padding:7px 20px; + font-weight:400; + border-radius:4px; +} +.tab-ctnr +{ + width:100%; clear:both; float:left; border-bottom:#ccc solid 1px; margin-top:20px; +} +.tab-ctnr ul +{margin:0; padding:0; +} +.tab-ctnr li +{ + list-style-type:none; + float:left; + padding:10px 5px; + cursor:pointer; +} +.drop-down-ctnr +{ + float:right; + display:none; +} +.padding-ctnr +{ + padding-left:15px; +} +.cashback-box +{ + width:100%; + clear:both; + text-align:center; +} +.cashback-box strong +{ + font-size:24px; +} +.cashback-box h2 +{ + border:#ccc dashed 2px; + color:#e43e94; + font-size:18px; + padding:22px; + border-radius:4px; + margin-bottom:1px; +} +.list-ctnr +{ + width:100%; + float:left; + clear:both; + position:relative; + padding-left:5px; +} +.list-ctnr ul +{ + margin:0px; + padding:0px; + width:100%; + clear:both; +} +.list-ctnr li +{ + list-style-type:disc; + color:#999; + font-size:12px; + padding:0px 30px 0px 0px; + float:left; +} +.list-ctnr h2 +{ + font-size:17px; + padding:5px 0px 5px 0px; + color:#666; + clear:both; + line-height:24px; + width:100%; +} +.list-ctnr h3 +{ + font-size:16px; + padding:10px 0px 10px 0px; + color:#666; + clear:both; + line-height:21px; + border-top:#ccc dashed 1px; +} +.list-ctnr h5 +{ + font-size:15px; + padding:0px 0px 10px 0px; + color:#e43e94; + clear:both; +} +.button-get-code +{ + + color:#fff; + font-size:16px; + font-weight:400; + padding:7px 15px; + float:none !important; + position: static; + right: 0; + top: 0; + text-align: center; + width: 80%; + margin-left: 10%; +} + +.button-get-code a +{ + color:#fff; +} +.button-get-code a:hover +{ + color:#fff; + text-decoration:none; +} +.cashbook-ctnr +{ + background-color:#ccc; + width:100%; + clear:both; + margin-top:15px; +} +.dash-detail td, th +{ + width:50% !important; +} +.dash-head +{ + width:100%; + clear:both; + float:left; + font-size:21px; + color:#333; + margin-top:15px; + margin-bottom:10px; +} +.form-dash input { + width: 100%; + background-color: #fff; + border: #ccc solid 1px; + padding: 5px 10px; + color: #ccc; + border-radius: 3px; + margin-bottom: 20px; + font-size: 12px; + clear: both; +} +.select-btn +{ + width:100%; + clear:both; + float:left; + margin-top:20px; +} +.select-btn ul +{ + margin:0px; + padding:0px; +} +.select-btn li +{ + list-style-type:none; + background-color:#5cb85c; + margin-right:4px; + border-radius:3px; + color:#fff; + padding:7px 10px; + float:left; + cursor:pointer; +} + +.update-btn +{ + width:100%; + clear:both; + float:left; + text-align:left; +} +.update-btn button +{ + background-color:#7faa2a; + padding:7px 0px; + text-align:center; + color:#fff; + border:#7faa2a solid 1px; + border-radius:4px; + font-weight:400; + width:95%; + text-transform:uppercase; +} +.quick-reminder li +{ + list-style-type:none; + float:left; + text-align:center; + width:50%; +} +.w3ctnr +{ + width:100%; + float:left; + text-align:center; + padding:30px 10px; +} +.border-ctn +{ + border-left:#dfdfdf solid 0px; + border-right:#dfdfdf solid 0px; + border-top:#dfdfdf solid 1px; + border-bottom:#dfdfdf solid 1px; +} +.largeModel-2 { + width: 94% !important; +} +.account-detail-ctnr +{ + margin-top:10px; +} +.categroy-head +{ + + padding:7px 0px; + color:#258fbc; + font-weight:400; + font-size:16px; + width:80px; +} +} + diff --git a/css/topography.svg b/css/topography.svg new file mode 100644 index 0000000..da68996 --- /dev/null +++ b/css/topography.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/doriyccn_ex.sql b/doriyccn_ex.sql new file mode 100644 index 0000000..4110232 --- /dev/null +++ b/doriyccn_ex.sql @@ -0,0 +1,1187 @@ +-- phpMyAdmin SQL Dump +-- version 4.9.7 +-- https://www.phpmyadmin.net/ +-- +-- Host: localhost:3306 +-- Generation Time: Jul 22, 2022 at 08:26 AM +-- Server version: 10.3.35-MariaDB-log-cll-lve +-- PHP Version: 7.4.29 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +SET AUTOCOMMIT = 0; +START TRANSACTION; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; + +-- +-- Database: `doriyccn_ex` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_content` +-- + +CREATE TABLE `exchangerix_content` ( + `content_id` int(11) UNSIGNED NOT NULL, + `language` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `link_title` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `description` text COLLATE utf8_unicode_ci DEFAULT NULL, + `page_location` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `page_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `meta_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `meta_keywords` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `status` varchar(599) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active', + `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_content` +-- + +INSERT INTO `exchangerix_content` (`content_id`, `language`, `name`, `link_title`, `title`, `description`, `page_location`, `page_url`, `meta_description`, `meta_keywords`, `status`, `modified`) VALUES +(1, 'english', 'home', '', 'Home page', '

Welcome to our exchange site!

\r\n

We have the best rates. Simply start your exchange right now. Sign up for our parther program and earn commission from each exchange. The earnings are credited in your account instantly and can be withdrawn right away.

\r\n
', '', '', '', '', 'active', '2020-09-19 14:08:08'), +(2, 'english', 'aboutus', '', 'About Us', '

Information about site.

\r\n', '', '', '', '', '', '2022-05-20 06:08:42'), +(3, 'english', 'howitworks', '', 'How it works', '

how it works information

', '', '', '', '', 'active', '2020-09-19 14:08:08'), +(4, 'english', 'help', '', 'Help', '

Contact live chat or whatsapp or diract call for support

\r\n\r\n

 

\r\n', '', '', '', '', '', '2021-05-06 16:18:08'), +(5, 'english', 'terms', '', 'Terms and Conditions', '

site\'s terms and conditions, edit from admin panel

', '', '', '', '', 'active', '2020-09-19 14:08:08'), +(6, 'english', 'privacy', '', 'Privacy Policy', '

privacy policy information, edit from admin panel

', '', '', '', '', 'active', '2020-09-19 14:08:08'), +(7, 'english', 'contact', '', 'Contact Us', '

If you have any questions, please contact us.

\r\n\r\n

Email: admin@doridrotech.com

\r\n', '', '', '', '', '', '2021-05-06 16:17:02'), +(8, 'english', 'affiliate', '', 'Affiliate Program', '

Do you have an account? Then you're already an affiliate! Just sign in to your account and start earning money by referring visitors to our site. It's fast, FREE and as easy as telling us how you want to be paid! You will receive commission of the fees charged for all exchange orders made by your referrals. The earnings are credited in your account instantly and can be withdrawn right away.

\r\n', '', '', '', '', 'active', '2020-11-09 16:01:40'), +(9, 'english', 'payment_success', '', 'Successful Payment', '

Thank you for payment!

\r\n\r\n

 

\r\n', '', '', '', '', 'active', '2020-11-07 16:53:20'), +(10, 'english', 'payment_declined', '', 'Payment Declined', '

Your payment was declined.

\r\n\r\n

Please try to make it again our you can contact us to resolve this problem.

\r\n\r\n

 

\r\n', '', '', '', '', 'active', '2020-11-07 17:13:46'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_countries` +-- + +CREATE TABLE `exchangerix_countries` ( + `country_id` int(11) NOT NULL, + `code` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `currency` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `signup` tinyint(1) NOT NULL DEFAULT 1, + `sort_order` tinyint(1) NOT NULL DEFAULT 0, + `status` enum('active','inactive') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_countries` +-- + +INSERT INTO `exchangerix_countries` (`country_id`, `code`, `name`, `currency`, `signup`, `sort_order`, `status`) VALUES +(1, 'AF', 'Afghanistan', '', 1, 0, 'active'), +(2, 'AX', 'Aland Islands', '', 1, 0, 'active'), +(3, 'AL', 'Albania', '', 1, 0, 'active'), +(4, 'DZ', 'Algeria', '', 1, 0, 'active'), +(5, 'AS', 'American Samoa', '', 1, 0, 'active'), +(6, 'AD', 'Andorra', '', 1, 0, 'active'), +(7, 'AO', 'Angola', '', 1, 0, 'active'), +(8, 'AI', 'Anguilla', '', 1, 0, 'active'), +(9, 'AG', 'Antigua and Barbuda', '', 1, 0, 'active'), +(10, 'AR', 'Argentina', '', 1, 0, 'active'), +(11, 'AM', 'Armenia', '', 1, 0, 'active'), +(12, 'AW', 'Aruba', '', 1, 0, 'active'), +(13, 'AU', 'Australia', '', 1, 0, 'active'), +(14, 'AT', 'Austria', '', 1, 0, 'active'), +(15, 'AZ', 'Azerbaijan', '', 1, 0, 'active'), +(16, 'BS', 'Bahamas', '', 1, 0, 'active'), +(17, 'BH', 'Bahrain', '', 1, 0, 'active'), +(18, 'BD', 'Bangladesh', '', 1, 0, 'active'), +(19, 'BB', 'Barbados', '', 1, 0, 'active'), +(20, 'BY', 'Belarus', '', 1, 0, 'active'), +(21, 'BE', 'Belgium', '', 1, 0, 'active'), +(22, 'BZ', 'Belize', '', 1, 0, 'active'), +(23, 'BJ', 'Benin', '', 1, 0, 'active'), +(24, 'BM', 'Bermuda', '', 1, 0, 'active'), +(25, 'BT', 'Bhutan', '', 1, 0, 'active'), +(26, 'BO', 'Bolivia', '', 1, 0, 'active'), +(27, 'BA', 'Bosnia and Herzegovina', '', 1, 0, 'active'), +(28, 'BW', 'Botswana', '', 1, 0, 'active'), +(29, 'BV', 'Bouvet Island', '', 1, 0, 'active'), +(30, 'BR', 'Brazil', '', 1, 0, 'active'), +(31, 'IO', 'British Indian Ocean Territory', '', 1, 0, 'active'), +(32, 'BN', 'Brunei Darussalam', '', 1, 0, 'active'), +(33, 'BG', 'Bulgaria', '', 1, 0, 'active'), +(34, 'BF', 'Burkina Faso', '', 1, 0, 'active'), +(35, 'BI', 'Burundi', '', 1, 0, 'active'), +(36, 'KH', 'Cambodia', '', 1, 0, 'active'), +(37, 'CM', 'Cameroon', '', 1, 0, 'active'), +(38, 'CA', 'Canada', '', 1, 0, 'active'), +(39, 'CV', 'Cape Verde', '', 1, 0, 'active'), +(40, 'KY', 'Cayman Islands', '', 1, 0, 'active'), +(41, 'CF', 'Central African Republic', '', 1, 0, 'active'), +(42, 'TD', 'Chad', '', 1, 0, 'active'), +(43, 'CL', 'Chile', '', 1, 0, 'active'), +(44, 'CN', 'China', '', 1, 0, 'active'), +(45, 'CX', 'Christmas Island', '', 1, 0, 'active'), +(46, 'CC', 'Cocos (Keeling) Islands', '', 1, 0, 'active'), +(47, 'CO', 'Colombia', '', 1, 0, 'active'), +(48, 'KM', 'Comoros', '', 1, 0, 'active'), +(49, 'CG', 'Congo', '', 1, 0, 'active'), +(50, 'CD', 'Congo, The Democratic Republic of the', '', 1, 0, 'active'), +(51, 'CK', 'Cook Islands', '', 1, 0, 'active'), +(52, 'CR', 'Costa Rica', '', 1, 0, 'active'), +(53, 'CI', 'Cote D\'Ivoire', '', 1, 0, 'active'), +(54, 'HR', 'Croatia', '', 1, 0, 'active'), +(55, 'CU', 'Cuba', '', 1, 0, 'active'), +(56, 'CY', 'Cyprus', '', 1, 0, 'active'), +(57, 'CZ', 'Czech Republic', '', 1, 0, 'active'), +(58, 'DK', 'Denmark', '', 1, 0, 'active'), +(59, 'DJ', 'Djibouti', '', 1, 0, 'active'), +(60, 'DM', 'Dominica', '', 1, 0, 'active'), +(61, 'DO', 'Dominican Republic', '', 1, 0, 'active'), +(62, 'EC', 'Ecuador', '', 1, 0, 'active'), +(63, 'EG', 'Egypt', '', 1, 0, 'active'), +(64, 'SV', 'El Salvador', '', 1, 0, 'active'), +(65, 'GQ', 'Equatorial Guinea', '', 1, 0, 'active'), +(66, 'ER', 'Eritrea', '', 1, 0, 'active'), +(67, 'EE', 'Estonia', '', 1, 0, 'active'), +(68, 'ET', 'Ethiopia', '', 1, 0, 'active'), +(69, 'FK', 'Falkland Islands (Malvinas)', '', 1, 0, 'active'), +(70, 'FO', 'Faroe Islands', '', 1, 0, 'active'), +(71, 'FJ', 'Fiji', '', 1, 0, 'active'), +(72, 'FI', 'Finland', '', 1, 0, 'active'), +(73, 'FR', 'France', '', 1, 0, 'active'), +(74, 'GF', 'French Guiana', '', 1, 0, 'active'), +(75, 'PF', 'French Polynesia', '', 1, 0, 'active'), +(76, 'TF', 'French Southern Territories', '', 1, 0, 'active'), +(77, 'GA', 'Gabon', '', 1, 0, 'active'), +(78, 'GM', 'Gambia', '', 1, 0, 'active'), +(79, 'GE', 'Georgia', '', 1, 0, 'active'), +(80, 'DE', 'Germany', '', 1, 0, 'active'), +(81, 'GH', 'Ghana', '', 1, 0, 'active'), +(82, 'GI', 'Gibraltar', '', 1, 0, 'active'), +(83, 'GR', 'Greece', '', 1, 0, 'active'), +(84, 'GL', 'Greenland', '', 1, 0, 'active'), +(85, 'GD', 'Grenada', '', 1, 0, 'active'), +(86, 'GP', 'Guadeloupe', '', 1, 0, 'active'), +(87, 'GU', 'Guam', '', 1, 0, 'active'), +(88, 'GT', 'Guatemala', '', 1, 0, 'active'), +(89, 'GN', 'Guinea', '', 1, 0, 'active'), +(90, 'GW', 'Guinea-Bissau', '', 1, 0, 'active'), +(91, 'GY', 'Guyana', '', 1, 0, 'active'), +(92, 'HT', 'Haiti', '', 1, 0, 'active'), +(93, 'HM', 'Heard Island and McDonald Islands', '', 1, 0, 'active'), +(94, 'VA', 'Holy See (Vatican City State)', '', 1, 0, 'active'), +(95, 'HN', 'Honduras', '', 1, 0, 'active'), +(96, 'HK', 'Hong Kong', '', 1, 0, 'active'), +(97, 'HU', 'Hungary', '', 1, 0, 'active'), +(98, 'IS', 'Iceland', '', 1, 0, 'active'), +(99, 'IN', 'India', '', 1, 0, 'active'), +(100, 'ID', 'Indonesia', '', 1, 0, 'active'), +(101, 'IR', 'Iran, Islamic Republic of', '', 1, 0, 'active'), +(102, 'IQ', 'Iraq', '', 1, 0, 'active'), +(103, 'IE', 'Ireland', '', 1, 0, 'active'), +(104, 'IL', 'Israel', '', 1, 0, 'active'), +(105, 'IT', 'Italy', '', 1, 0, 'active'), +(106, 'JM', 'Jamaica', '', 1, 0, 'active'), +(107, 'JP', 'Japan', '', 1, 0, 'active'), +(108, 'JO', 'Jordan', '', 1, 0, 'active'), +(109, 'KZ', 'Kazakhstan', '', 1, 0, 'active'), +(110, 'KE', 'Kenya', '', 1, 0, 'active'), +(111, 'KI', 'Kiribati', '', 1, 0, 'active'), +(112, 'KP', 'Korea, Democratic People\'s Republic of', '', 1, 0, 'active'), +(113, 'KR', 'Korea, Republic of', '', 1, 0, 'active'), +(114, 'KW', 'Kuwait', '', 1, 0, 'active'), +(115, 'KG', 'Kyrgyzstan', '', 1, 0, 'active'), +(116, 'LA', 'Lao People\'s Democratic Republic', '', 1, 0, 'active'), +(117, 'LV', 'Latvia', '', 1, 0, 'active'), +(118, 'LB', 'Lebanon', '', 1, 0, 'active'), +(119, 'LS', 'Lesotho', '', 1, 0, 'active'), +(120, 'LR', 'Liberia', '', 1, 0, 'active'), +(121, 'LY', 'Libyan Arab Jamahiriya', '', 1, 0, 'active'), +(122, 'LI', 'Liechtenstein', '', 1, 0, 'active'), +(123, 'LT', 'Lithuania', '', 1, 0, 'active'), +(124, 'LU', 'Luxembourg', '', 1, 0, 'active'), +(125, 'MO', 'Macao', '', 1, 0, 'active'), +(126, 'MK', 'Macedonia', '', 1, 0, 'active'), +(127, 'MG', 'Madagascar', '', 1, 0, 'active'), +(128, 'MW', 'Malawi', '', 1, 0, 'active'), +(129, 'MY', 'Malaysia', '', 1, 0, 'active'), +(130, 'MV', 'Maldives', '', 1, 0, 'active'), +(131, 'ML', 'Mali', '', 1, 0, 'active'), +(132, 'MT', 'Malta', '', 1, 0, 'active'), +(133, 'MH', 'Marshall Islands', '', 1, 0, 'active'), +(134, 'MQ', 'Martinique', '', 1, 0, 'active'), +(135, 'MR', 'Mauritania', '', 1, 0, 'active'), +(136, 'MU', 'Mauritius', '', 1, 0, 'active'), +(137, 'YT', 'Mayotte', '', 1, 0, 'active'), +(138, 'MX', 'Mexico', '', 1, 0, 'active'), +(139, 'FM', 'Micronesia, Federated States of', '', 1, 0, 'active'), +(140, 'MD', 'Moldova, Republic of', '', 1, 0, 'active'), +(141, 'MC', 'Monaco', '', 1, 0, 'active'), +(142, 'MN', 'Mongolia', '', 1, 0, 'active'), +(143, 'ME', 'Montenegro', '', 1, 0, 'active'), +(144, 'MS', 'Montserrat', '', 1, 0, 'active'), +(145, 'MA', 'Morocco', '', 1, 0, 'active'), +(146, 'MZ', 'Mozambique', '', 1, 0, 'active'), +(147, 'MM', 'Myanmar', '', 1, 0, 'active'), +(148, 'NA', 'Namibia', '', 1, 0, 'active'), +(149, 'NR', 'Nauru', '', 1, 0, 'active'), +(150, 'NP', 'Nepal', '', 1, 0, 'active'), +(151, 'NL', 'Netherlands', '', 1, 0, 'active'), +(152, 'AN', 'Netherlands Antilles', '', 1, 0, 'active'), +(153, 'NC', 'New Caledonia', '', 1, 0, 'active'), +(154, 'NZ', 'New Zealand', '', 1, 0, 'active'), +(155, 'NI', 'Nicaragua', '', 1, 0, 'active'), +(156, 'NE', 'Niger', '', 1, 0, 'active'), +(157, 'NG', 'Nigeria', '', 1, 0, 'active'), +(158, 'NU', 'Niue', '', 1, 0, 'active'), +(159, 'NF', 'Norfolk Island', '', 1, 0, 'active'), +(160, 'MP', 'Northern Mariana Islands', '', 1, 0, 'active'), +(161, 'NO', 'Norway', '', 1, 0, 'active'), +(162, 'OM', 'Oman', '', 1, 0, 'active'), +(163, 'PK', 'Pakistan', '', 1, 0, 'active'), +(164, 'PW', 'Palau', '', 1, 0, 'active'), +(165, 'PS', 'Palestinian Territory, Occupied', '', 1, 0, 'active'), +(166, 'PA', 'Panama', '', 1, 0, 'active'), +(167, 'PG', 'Papua New Guinea', '', 1, 0, 'active'), +(168, 'PY', 'Paraguay', '', 1, 0, 'active'), +(169, 'PE', 'Peru', '', 1, 0, 'active'), +(170, 'PH', 'Philippines', '', 1, 0, 'active'), +(171, 'PN', 'Pitcairn', '', 1, 0, 'active'), +(172, 'PL', 'Poland', '', 1, 0, 'active'), +(173, 'PT', 'Portugal', '', 1, 0, 'active'), +(174, 'PR', 'Puerto Rico', '', 1, 0, 'active'), +(175, 'QA', 'Qatar', '', 1, 0, 'active'), +(176, 'RE', 'Reunion', '', 1, 0, 'active'), +(177, 'RO', 'Romania', '', 1, 0, 'active'), +(178, 'RU', 'Russian Federation', '', 1, 0, 'active'), +(179, 'RW', 'Rwanda', '', 1, 0, 'active'), +(180, 'SH', 'Saint Helena', '', 1, 0, 'active'), +(181, 'KN', 'Saint Kitts and Nevis', '', 1, 0, 'active'), +(182, 'LC', 'Saint Lucia', '', 1, 0, 'active'), +(183, 'PM', 'Saint Pierre and Miquelon', '', 1, 0, 'active'), +(184, 'VC', 'Saint Vincent and the Grenadines', '', 1, 0, 'active'), +(185, 'WS', 'Samoa', '', 1, 0, 'active'), +(186, 'SM', 'San Marino', '', 1, 0, 'active'), +(187, 'ST', 'Sao Tome and Principe', '', 1, 0, 'active'), +(188, 'SA', 'Saudi Arabia', '', 1, 0, 'active'), +(189, 'SN', 'Senegal', '', 1, 0, 'active'), +(190, 'RS', 'Serbia', '', 1, 0, 'active'), +(191, 'SC', 'Seychelles', '', 1, 0, 'active'), +(192, 'SL', 'Sierra Leone', '', 1, 0, 'active'), +(193, 'SG', 'Singapore', '', 1, 0, 'active'), +(194, 'SK', 'Slovakia', '', 1, 0, 'active'), +(195, 'SI', 'Slovenia', '', 1, 0, 'active'), +(196, 'SB', 'Solomon Islands', '', 1, 0, 'active'), +(197, 'SO', 'Somalia', '', 1, 0, 'active'), +(198, 'ZA', 'South Africa', '', 1, 0, 'active'), +(199, 'GS', 'South Georgia', '', 1, 0, 'active'), +(200, 'ES', 'Spain', '', 1, 0, 'active'), +(201, 'LK', 'Sri Lanka', '', 1, 0, 'active'), +(202, 'SD', 'Sudan', '', 1, 0, 'active'), +(203, 'SR', 'Suriname', '', 1, 0, 'active'), +(204, 'SJ', 'Svalbard and Jan Mayen', '', 1, 0, 'active'), +(205, 'SZ', 'Swaziland', '', 1, 0, 'active'), +(206, 'SE', 'Sweden', '', 1, 0, 'active'), +(207, 'CH', 'Switzerland', '', 1, 0, 'active'), +(208, 'SY', 'Syrian Arab Republic', '', 1, 0, 'active'), +(209, 'TW', 'Taiwan, Province Of China', '', 1, 0, 'active'), +(210, 'TJ', 'Tajikistan', '', 1, 0, 'active'), +(211, 'TZ', 'Tanzania, United Republic of', '', 1, 0, 'active'), +(212, 'TH', 'Thailand', '', 1, 0, 'active'), +(213, 'TL', 'Timor-Leste', '', 1, 0, 'active'), +(214, 'TG', 'Togo', '', 1, 0, 'active'), +(215, 'TK', 'Tokelau', '', 1, 0, 'active'), +(216, 'TO', 'Tonga', '', 1, 0, 'active'), +(217, 'TT', 'Trinidad and Tobago', '', 1, 0, 'active'), +(218, 'TN', 'Tunisia', '', 1, 0, 'active'), +(219, 'TR', 'Turkey', '', 1, 0, 'active'), +(220, 'TM', 'Turkmenistan', '', 1, 0, 'active'), +(221, 'TC', 'Turks and Caicos Islands', '', 1, 0, 'active'), +(222, 'TV', 'Tuvalu', '', 1, 0, 'active'), +(223, 'UG', 'Uganda', '', 1, 0, 'active'), +(224, 'UA', 'Ukraine', '', 1, 0, 'active'), +(225, 'AE', 'United Arab Emirates', '', 1, 0, 'active'), +(226, 'GB', 'United Kingdom', '', 1, 0, 'inactive'), +(227, 'US', 'United States', '', 1, 0, 'active'), +(228, 'UM', 'United States Minor Outlying Islands', '', 1, 0, 'active'), +(229, 'UY', 'Uruguay', '', 1, 0, 'active'), +(230, 'UZ', 'Uzbekistan', '', 1, 0, 'active'), +(231, 'VU', 'Vanuatu', '', 1, 0, 'active'), +(232, 'VE', 'Venezuela', '', 1, 0, 'active'), +(233, 'VN', 'Viet Nam', '', 1, 0, 'active'), +(234, 'VG', 'Virgin Islands, British', '', 1, 0, 'active'), +(235, 'VI', 'Virgin Islands, U.S.', '', 1, 0, 'active'), +(236, 'WF', 'Wallis And Futuna', '', 1, 0, 'active'), +(237, 'EH', 'Western Sahara', '', 1, 0, 'active'), +(238, 'YE', 'Yemen', '', 1, 0, 'active'), +(239, 'ZM', 'Zambia', '', 1, 0, 'active'), +(240, 'ZW', 'Zimbabwe', '', 1, 0, 'active'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_currencies` +-- + +CREATE TABLE `exchangerix_currencies` ( + `currency_id` int(11) UNSIGNED NOT NULL, + `gateway_id` int(11) UNSIGNED NOT NULL DEFAULT 0, + `currency_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `currency_code` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `image` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `is_crypto` tinyint(1) NOT NULL DEFAULT 0, + `reserve` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `min_reserve` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `fee` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `instructions` text COLLATE utf8_unicode_ci NOT NULL, + `website` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `site_code` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `xml_code` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `allow_send` tinyint(1) NOT NULL DEFAULT 0, + `allow_receive` tinyint(1) NOT NULL DEFAULT 0, + `allow_affiliate` tinyint(1) NOT NULL DEFAULT 0, + `default_send` tinyint(1) NOT NULL DEFAULT 0, + `default_receive` tinyint(1) NOT NULL DEFAULT 0, + `sort_order` tinyint(1) NOT NULL DEFAULT 0, + `is_new_currency` tinyint(1) NOT NULL DEFAULT 0, + `hide_code` tinyint(1) NOT NULL DEFAULT 0, + `curr_code` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `status` enum('active','inactive') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active', + `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_currencies` +-- + +INSERT INTO `exchangerix_currencies` (`currency_id`, `gateway_id`, `currency_name`, `currency_code`, `image`, `is_crypto`, `reserve`, `min_reserve`, `fee`, `instructions`, `website`, `site_code`, `xml_code`, `allow_send`, `allow_receive`, `allow_affiliate`, `default_send`, `default_receive`, `sort_order`, `is_new_currency`, `hide_code`, `curr_code`, `status`, `added`) VALUES +(1, 6, 'Bitcoin', 'USD', 'BTC.png', 0, '5612.68', '', '', '', 'https://bitcoin.org', '', '', 1, 1, 0, 0, 0, 4, 0, 1, 'bitcoin', 'active', '2020-09-19 14:08:08'), +(2, 12, 'Ethereum', 'USD', 'ETH.png', 0, '120', '', '', '', 'https://ethereum.org', '', '', 1, 1, 0, 0, 0, 6, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(3, 7, 'Bitcoin Cash', 'BCH', 'BCH.png', 1, '20', '', '3', '', '', '', '', 1, 1, 0, 0, 0, 5, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(4, 15, 'Ripple', 'XRP', 'XRP.png', 1, '89700', '', '5', '', '', '', '', 1, 1, 0, 0, 0, 10, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(5, 8, 'Litecoin', 'USD', 'LTC.png', 0, '1190.1', '', '5', '', 'https://litecoin.org', 'LTC', 'LTC', 1, 1, 1, 0, 0, 8, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(6, 10, 'Dash', 'USD', 'DASH.png', 0, '12.9', '', '', '', '', '', '', 1, 1, 0, 0, 0, 7, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(7, 0, 'NEO', 'NEO', 'NEO.png', 1, '0', '', '', '', '', '', '', 1, 1, 0, 0, 0, 9, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(8, 0, 'NEM', 'NEM', 'NEM.png', 1, '0', '', '', '', '', '', '', 1, 1, 0, 0, 0, 18, 0, 0, '', 'inactive', '2020-09-19 14:08:08'), +(9, 14, 'Monero', 'USD', 'XMR.png', 0, '500', '', '', '', '', '', '', 1, 1, 0, 0, 0, 11, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(10, 16, 'Zcash', 'ZEC', 'ZCASH.png', 1, '73', '', '', '', '', '', '', 1, 1, 0, 0, 0, 13, 0, 0, '', 'inactive', '2020-09-19 14:08:08'), +(11, 1, 'PayPal', 'USD', 'PAYPAL.png', 0, '18641.5', '', '', '', '', '', '', 1, 1, 0, 0, 0, 12, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(12, 2, 'Perfect Money', 'USD', 'PM.png', 0, '72587.5', '', '', '', '', '', '', 1, 1, 0, 0, 0, 19, 0, 0, '', 'inactive', '2020-09-19 14:08:08'), +(13, 5, 'Payeer', 'USD', 'PR.png', 0, '36711.200000000004', '', '', '', '', '', '', 1, 1, 0, 0, 1, 14, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(14, 24, 'AdvCash', 'USD', 'ADVC.png', 0, '1481', '', '', '', '', '', '', 1, 1, 0, 0, 0, 15, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(15, 34, 'Bank Transfer', 'USD', 'BANK.png', 0, '500000', '', '', '', '', '', '', 1, 1, 0, 0, 0, 16, 0, 0, '', 'inactive', '2020-09-19 14:08:08'), +(16, 37, 'Webmoney', 'USD', 'WM.png', 0, '50000', '', '', '', '', '', '', 1, 1, 0, 0, 0, 17, 0, 0, '', 'active', '2020-09-19 14:08:08'), +(17, 0, 'Cash', 'USD', 'CASH.png', 0, '0', '', '', '', '', '', '', 1, 1, 0, 0, 0, 2, 0, 0, '', 'inactive', '2020-09-19 14:08:08'), +(25, 42, 'Vodafone Cash', 'EGP', 'no_image.png', 0, '100000', '', '0', '', '', '', '', 1, 1, 1, 0, 0, 23, 0, 0, '', 'active', '2020-11-07 18:41:37'), +(27, 2, 'Perfect Money', 'USD', 'logo_901653110829.png', 0, '76567', '', '00', 'Send PM', '', '', '', 1, 1, 0, 1, 0, 0, 0, 0, '', 'active', '2022-05-21 01:27:09'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_email_templates` +-- + +CREATE TABLE `exchangerix_email_templates` ( + `template_id` int(11) UNSIGNED NOT NULL, + `language` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `email_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `email_subject` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `email_message` text COLLATE utf8_unicode_ci DEFAULT NULL, + `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_email_templates` +-- + +INSERT INTO `exchangerix_email_templates` (`template_id`, `language`, `email_name`, `email_subject`, `email_message`, `modified`) VALUES +(1, 'english', 'signup', 'Welcome to exchange site!', '

\r\nDear {first_name},

\r\nThank you for registering!

\rYou can start to make e-currency exchanges!

\r\nHere is your login information:

\r\nLogin: {username}
\r\nPassword: {password}

\r\nPlease click at click here to login in to your account.

Thank you.\r\n

', '2020-09-19 14:08:08'), +(2, 'english', 'activate', 'Registration confirmation email', '

\r\nHi {first_name},

\r\nThank you for registering!

\r\nHere is your login information:

\r\nUsername: {username}
\r\nPassword: {password}

\r\n\r\nPlease click the following link to activate your account: {activate_link}

Thank you.\r\n

', '2020-09-19 14:08:08'), +(3, 'english', 'activate2', 'Account activation email', '

\r\nHi {first_name},

\r\nPlease click the following link to activate your account: {activate_link}

Thank you.\r\n

', '2020-09-19 14:08:08'), +(4, 'english', 'forgot_password', 'Forgot password email', '

\r\nDear {first_name},

\r\nAs you requested, here is new password for your account:

\r\nLogin: {username}
Password: {password}

\r\nPlease click here to log in.\r\n

\r\nThank you.\r\n

', '2020-09-19 14:08:08'), +(5, 'english', 'invite_friend', 'Invitation from your friend', '

\r\nHello {friend_name},

\r\nYour friend {first_name} wants to invite you to register on our site.

\r\nPlease click here to accept his invitation.\r\n

\r\nBest Regards.\r\n

', '2020-09-19 14:08:08'), +(6, 'english', 'cashout_paid', 'Your cash out request was paid', '

\r\nHello {first_name},

\r\nYour cash out request was paid.
Transaction ID: {transaction_id}
Amount: {amount}

\r\nThank you for choosing us.

\r\nBest Regards.\r\n

', '2020-09-19 14:08:08'), +(7, 'english', 'cashout_declined', 'Your cash out request was declined', '

\r\nHello {first_name},

\r\nYour cash out request #{transaction_id} for {amount} was declined.
Reason: {reason}

\r\n

', '2020-09-19 14:08:08'), +(8, 'english', 'manual_credit', 'Your account balance was updated', '

\r\nHello {first_name},

\r\nYou received new payment.

Transaction ID: {transaction_id}
Payment name: {payment_type}
Amount: {amount}

\r\n

', '2020-09-19 14:08:08'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_exchanges` +-- + +CREATE TABLE `exchangerix_exchanges` ( + `exchange_id` int(11) UNSIGNED NOT NULL, + `exdirection_id` int(11) NOT NULL DEFAULT 0, + `user_id` int(11) NOT NULL DEFAULT 0, + `reference_id` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `from_currency_id` int(11) NOT NULL DEFAULT 0, + `to_currency_id` int(11) NOT NULL DEFAULT 0, + `from_currency` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `to_currency` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `ex_from_rate` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `ex_to_rate` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `exchange_rate` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `exchange_amount` decimal(15,4) NOT NULL DEFAULT 0.0000, + `receive_amount` decimal(15,4) NOT NULL DEFAULT 0.0000, + `exchange_fee` varchar(500) COLLATE utf8_unicode_ci NOT NULL, + `from_account` text COLLATE utf8_unicode_ci DEFAULT NULL, + `to_account` text COLLATE utf8_unicode_ci DEFAULT NULL, + `client_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `client_details` text COLLATE utf8_unicode_ci DEFAULT NULL, + `proof` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `ref_id` varchar(11) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `country_code` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `reason` text COLLATE utf8_unicode_ci DEFAULT NULL, + `notification_sent` tinyint(1) NOT NULL DEFAULT 0, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `process_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_exchanges` +-- + +INSERT INTO `exchangerix_exchanges` (`exchange_id`, `exdirection_id`, `user_id`, `reference_id`, `from_currency_id`, `to_currency_id`, `from_currency`, `to_currency`, `ex_from_rate`, `ex_to_rate`, `exchange_rate`, `exchange_amount`, `receive_amount`, `exchange_fee`, `from_account`, `to_account`, `client_email`, `client_details`, `proof`, `ref_id`, `country_code`, `status`, `reason`, `notification_sent`, `created`, `updated`, `process_date`) VALUES +(87, 214, 35, '189684316', 27, 13, 'Perfect Money USD', 'Payeer USD', '1', '0.9', '', '1.0000', '0.9000', '', '', 'D', 'kparves834@gmail.com', 'Joh Yy', '', '', '', 'timeout', NULL, 0, '2022-07-08 07:41:40', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), +(59, 122, 20, '414897801', 11, 13, 'PayPal USD', 'Payeer USD', '1', '1', '', '1000.0000', '1000.0000', '', 'gfdfgdgad', 'hghfdhfhh', 'quransquare@gmail.com', 'Quran Square', '', '19', 'eg', 'confirmed', NULL, 0, '2020-11-09 19:17:28', '2020-11-09 19:18:03', '2020-11-09 19:18:03'), +(60, 122, 20, '387559263', 11, 13, 'PayPal USD', 'Payeer USD', '1.05', '1', '', '1000.0000', '952.3809', '', '54354', '53452345345', 'quransquare@gmail.com', 'Quran Square', '', '19', 'eg', 'confirmed', NULL, 0, '2020-11-09 19:42:17', '2020-11-09 19:43:22', '2020-11-09 19:43:22'), +(64, 211, 23, '215491839', 25, 11, 'Vodafone Cash EGP', 'PayPal USD', '1', '0.06433', '', '1000.0000', '64.3300', '', 'sdasdasdad', 'sdsadsadsad', 'eeee@gmail.com', 'Stewart ramsey Ramadan', '', '19', 'eg', 'confirmed', NULL, 0, '2020-11-10 13:40:25', '2020-11-10 13:40:49', '2020-11-10 13:40:49'), +(71, 26, 27, '696921193', 5, 11, 'Litecoin USD', 'PayPal USD', '1', '0.9', '', '15.0000', '13.5000', '', 'monchuya24@gmail.com', 'monchuya24@gmail.com', 'monchuya24@gmail.com', 'Jewel Arfin', '', '', '', 'declined', '', 0, '2021-06-12 07:27:36', '2021-06-13 06:52:45', '0000-00-00 00:00:00'), +(68, 72, 25, '235218505', 13, 5, 'Payeer USD', 'Litecoin USD', '1', '0.9', '', '11.0000', '9.9000', '', '3535', 'rwtr@gmail.com', 'rwtr@gmail.com', 'Tyt Tete', '', '', '', 'confirmed', '', 0, '2021-05-22 06:34:55', '2021-05-22 06:35:46', '0000-00-00 00:00:00'), +(84, 214, 27, '369592211', 27, 13, 'Perfect Money USD', 'Payeer USD', '1', '0.9', '', '1.0000', '0.9000', '', '575', '78675', 'monchuya24@gmail.com', 'Jewel Arfin', '', '', '', 'confirmed', '', 0, '2022-05-21 01:31:33', '2022-05-21 01:34:35', '0000-00-00 00:00:00'), +(85, 106, 27, '403753261', 6, 13, 'Dash USD', 'Payeer USD', '1', '0.9', '', '5.0000', '4.5000', '', 'monchuya24@gmail.com', 'monchuya24@gmail.com', 'monchuya24@gmail.com', 'Jewel Arfin', '', '', '', 'confirmed', '', 0, '2022-05-21 01:32:04', '2022-05-21 01:34:11', '0000-00-00 00:00:00'), +(86, 62, 27, '143903423', 14, 13, 'AdvCash USD', 'Payeer USD', '1', '0.9', '', '5.0000', '4.5000', '', 'monchuya24@gmail.com', 'monchuya24@gmail.com', 'monchuya24@gmail.com', 'Jewel Arfin', '', '', '', 'confirmed', '', 0, '2022-05-21 01:32:23', '2022-05-21 01:34:05', '0000-00-00 00:00:00'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_exdirections` +-- + +CREATE TABLE `exchangerix_exdirections` ( + `exdirection_id` int(11) UNSIGNED NOT NULL, + `from_currency` int(11) UNSIGNED NOT NULL DEFAULT 0, + `to_currency` int(11) UNSIGNED NOT NULL DEFAULT 0, + `from_rate` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `to_rate` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `exchange_rate` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `fee` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `min_amount` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `max_amount` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `user_instructions` text COLLATE utf8_unicode_ci NOT NULL, + `description` text COLLATE utf8_unicode_ci NOT NULL, + `is_manual` tinyint(1) NOT NULL DEFAULT 0, + `hide_from_visitors` tinyint(1) NOT NULL DEFAULT 0, + `allow_affiliate` tinyint(1) NOT NULL DEFAULT 0, + `auto_rate` tinyint(1) NOT NULL DEFAULT 0, + `today_exchanges` int(11) UNSIGNED NOT NULL DEFAULT 0, + `total_exchanges` int(11) UNSIGNED NOT NULL DEFAULT 0, + `sort_order` tinyint(1) NOT NULL DEFAULT 0, + `status` enum('active','inactive') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active', + `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `last_exchange_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_exdirections` +-- + +INSERT INTO `exchangerix_exdirections` (`exdirection_id`, `from_currency`, `to_currency`, `from_rate`, `to_rate`, `exchange_rate`, `fee`, `min_amount`, `max_amount`, `user_instructions`, `description`, `is_manual`, `hide_from_visitors`, `allow_affiliate`, `auto_rate`, `today_exchanges`, `total_exchanges`, `sort_order`, `status`, `added`, `updated`, `last_exchange_date`) VALUES +(1, 1, 6, '1', '0.9', '0.9', '0', '5', '200', '', '', 1, 0, 1, 0, 1, 1, 0, 'active', '2020-10-12 09:01:59', '2020-10-12 09:01:59', '2020-11-05 18:17:03'), +(2, 1, 2, '1', '0.9', '0.9', '0', '', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:03:09', '2020-10-12 09:03:09', '0000-00-00 00:00:00'), +(3, 1, 5, '1', '0.9', '0.9', '0', '', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:03:26', '2020-10-12 09:03:26', '0000-00-00 00:00:00'), +(4, 1, 9, '1', '0.9', '0.9', '0', '', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:03:47', '2020-10-12 09:03:47', '0000-00-00 00:00:00'), +(5, 1, 11, '1', '0.9', '0.9', '0', '', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:04:15', '2020-10-12 09:04:15', '0000-00-00 00:00:00'), +(8, 6, 1, '1', '0.9', '0.9', '0', '', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:05:26', '2020-10-12 09:05:26', '0000-00-00 00:00:00'), +(9, 6, 2, '1', '0.9', '0.9', '0', '', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:05:53', '2020-10-12 09:05:53', '0000-00-00 00:00:00'), +(10, 6, 5, '1', '0.9', '0.9', '0', '', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:06:08', '2020-10-12 09:06:08', '0000-00-00 00:00:00'), +(11, 6, 9, '1', '0.9', '0.9', '0', '', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:06:36', '2020-10-12 09:06:36', '0000-00-00 00:00:00'), +(12, 6, 11, '1', '0.9', '0.9', '0', '', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:07:05', '2020-10-12 09:07:05', '0000-00-00 00:00:00'), +(15, 2, 1, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:08:21', '2020-10-12 09:08:21', '0000-00-00 00:00:00'), +(16, 2, 6, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:08:46', '2020-10-12 09:08:46', '0000-00-00 00:00:00'), +(17, 2, 5, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:09:08', '2020-10-12 09:09:08', '0000-00-00 00:00:00'), +(18, 2, 9, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:09:39', '2020-10-12 09:09:39', '0000-00-00 00:00:00'), +(19, 2, 11, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:10:07', '2020-10-12 09:10:07', '0000-00-00 00:00:00'), +(22, 5, 1, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:11:13', '2020-10-12 09:11:13', '0000-00-00 00:00:00'), +(23, 5, 6, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:11:32', '2020-10-12 09:11:32', '0000-00-00 00:00:00'), +(24, 5, 2, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:11:53', '2020-10-12 09:11:53', '0000-00-00 00:00:00'), +(25, 5, 9, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:12:15', '2020-10-12 09:12:15', '0000-00-00 00:00:00'), +(26, 5, 11, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 1, 1, 0, 'active', '2020-10-12 09:12:39', '2020-10-12 09:12:39', '2021-06-12 07:27:40'), +(29, 9, 1, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:13:36', '2020-10-12 09:13:36', '0000-00-00 00:00:00'), +(30, 9, 6, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:14:07', '2020-10-12 09:14:07', '0000-00-00 00:00:00'), +(31, 9, 2, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:14:25', '2020-10-12 09:14:25', '0000-00-00 00:00:00'), +(32, 9, 5, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:14:49', '2020-10-12 09:14:49', '0000-00-00 00:00:00'), +(33, 9, 11, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:15:10', '2020-10-12 09:15:10', '0000-00-00 00:00:00'), +(36, 11, 1, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:16:23', '2020-10-12 09:16:23', '0000-00-00 00:00:00'), +(37, 11, 6, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 1, 1, 0, 'active', '2020-10-12 09:16:46', '2020-10-12 09:16:46', '2020-11-06 18:29:19'), +(38, 11, 2, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:17:02', '2020-10-12 09:17:02', '0000-00-00 00:00:00'), +(39, 11, 5, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 2, 3, 1, 'active', '2020-10-12 09:17:20', '2020-10-12 09:17:20', '2020-11-08 16:08:09'), +(40, 11, 9, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 1, 'active', '2020-10-12 09:17:37', '2020-10-12 09:17:37', '0000-00-00 00:00:00'), +(57, 14, 1, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:36:33', '2020-10-12 09:36:33', '0000-00-00 00:00:00'), +(58, 14, 6, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:37:22', '2020-10-12 09:37:22', '0000-00-00 00:00:00'), +(59, 14, 2, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:37:37', '2020-10-12 09:37:37', '0000-00-00 00:00:00'), +(60, 14, 5, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:37:59', '2020-10-12 09:37:59', '0000-00-00 00:00:00'), +(61, 14, 9, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:38:37', '2020-10-12 09:38:37', '0000-00-00 00:00:00'), +(62, 14, 13, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 1, 1, 0, 'active', '2020-10-12 09:39:01', '2020-10-12 09:39:01', '2022-05-21 01:32:28'), +(63, 14, 11, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 09:39:34', '2020-10-12 09:39:34', '0000-00-00 00:00:00'), +(64, 14, 12, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 11:45:09', '2020-10-12 11:45:09', '0000-00-00 00:00:00'), +(68, 13, 14, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 1, 2, 0, 'active', '2020-10-12 11:53:32', '2020-10-12 11:53:32', '2020-11-05 20:14:37'), +(69, 13, 1, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 11:53:54', '2020-10-12 11:53:54', '0000-00-00 00:00:00'), +(70, 13, 6, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 11:54:14', '2020-10-12 11:54:14', '0000-00-00 00:00:00'), +(71, 13, 2, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 11:54:31', '2020-10-12 11:54:31', '0000-00-00 00:00:00'), +(72, 13, 5, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 1, 1, 0, 'active', '2020-10-12 11:55:06', '2020-10-12 11:55:06', '2021-05-22 06:35:05'), +(73, 13, 9, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:00:38', '2020-10-12 12:00:38', '0000-00-00 00:00:00'), +(74, 13, 11, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 1, 1, 0, 'active', '2020-10-12 12:01:11', '2020-10-12 12:01:11', '2020-11-03 08:15:16'), +(75, 13, 12, '1', '0.9', '0.9', '0', '5', '', '', '', 0, 0, 1, 0, 1, 1, 0, 'active', '2020-10-12 12:01:34', '2020-11-03 07:26:21', '2020-11-05 18:05:11'), +(79, 12, 14, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:12:33', '2020-10-12 12:12:33', '0000-00-00 00:00:00'), +(80, 12, 1, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:13:37', '2020-10-12 12:13:37', '0000-00-00 00:00:00'), +(81, 12, 6, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:13:57', '2020-10-12 12:13:57', '0000-00-00 00:00:00'), +(82, 12, 2, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:14:23', '2020-10-12 12:14:23', '0000-00-00 00:00:00'), +(83, 12, 5, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:14:48', '2020-10-12 12:14:48', '0000-00-00 00:00:00'), +(84, 12, 9, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:15:34', '2020-10-12 12:15:34', '0000-00-00 00:00:00'), +(85, 12, 13, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 1, 1, 0, 'active', '2020-10-12 12:16:06', '2020-10-12 12:16:06', '2020-11-07 17:58:27'), +(86, 12, 11, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 2, 3, 0, 'active', '2020-10-12 12:16:30', '2020-10-12 12:16:30', '2020-11-07 14:01:09'), +(101, 1, 14, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:30:34', '2020-10-12 12:30:34', '0000-00-00 00:00:00'), +(102, 1, 13, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 1, 4, 0, 'active', '2020-10-12 12:31:21', '2020-10-12 12:31:21', '2020-11-07 18:33:57'), +(103, 1, 12, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:31:47', '2020-10-12 12:31:47', '0000-00-00 00:00:00'), +(105, 6, 14, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:32:57', '2020-10-12 12:32:57', '0000-00-00 00:00:00'), +(106, 6, 13, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 1, 1, 0, 'active', '2020-10-12 12:34:03', '2020-10-12 12:34:03', '2022-05-21 01:32:09'), +(107, 6, 12, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:34:25', '2020-10-12 12:34:25', '0000-00-00 00:00:00'), +(109, 2, 14, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:35:09', '2020-10-12 12:35:09', '0000-00-00 00:00:00'), +(110, 2, 13, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:35:41', '2020-10-12 12:35:41', '0000-00-00 00:00:00'), +(111, 2, 12, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:37:12', '2020-10-12 12:37:12', '0000-00-00 00:00:00'), +(113, 5, 14, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:37:51', '2020-10-12 12:37:51', '0000-00-00 00:00:00'), +(114, 5, 13, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:38:13', '2020-10-12 12:38:13', '0000-00-00 00:00:00'), +(115, 5, 12, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:39:07', '2020-10-12 12:39:07', '0000-00-00 00:00:00'), +(117, 9, 14, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:40:08', '2020-10-12 12:40:08', '0000-00-00 00:00:00'), +(118, 9, 13, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:40:27', '2020-10-12 12:40:27', '0000-00-00 00:00:00'), +(119, 9, 12, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-12 12:40:51', '2020-10-12 12:40:51', '0000-00-00 00:00:00'), +(121, 11, 14, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 1, 'active', '2020-10-12 12:42:47', '2020-10-12 12:42:47', '0000-00-00 00:00:00'), +(122, 11, 13, '1', '1', '1', '0', '5', '', '', '', 0, 0, 1, 1, 2, 7, 0, 'active', '2020-10-12 12:43:07', '2022-07-19 14:14:14', '2020-11-09 19:43:22'), +(123, 11, 12, '1', '0.9', '0.9', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 1, 'active', '2020-10-12 12:43:31', '2020-10-12 12:43:31', '0000-00-00 00:00:00'), +(133, 14, 15, '1', '0.65', '0.65', '0', '5', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:28:28', '2020-10-23 06:28:28', '0000-00-00 00:00:00'), +(134, 1, 15, '1', '0.65', '0.65', '0', '2', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:29:04', '2020-10-23 06:29:04', '0000-00-00 00:00:00'), +(135, 6, 15, '1', '0.65', '0.65', '0', '2', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:29:48', '2020-10-23 06:29:48', '0000-00-00 00:00:00'), +(136, 2, 15, '1', '0.65', '0.65', '0', '2', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:33:53', '2020-10-23 06:33:53', '0000-00-00 00:00:00'), +(137, 5, 15, '1', '0.65', '0.65', '0', '2', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:34:30', '2020-10-23 06:34:30', '0000-00-00 00:00:00'), +(138, 9, 15, '1', '0.65', '0.65', '0', '2', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:35:14', '2020-10-23 06:35:14', '0000-00-00 00:00:00'), +(139, 13, 15, '1', '0.65', '0.65', '0', '2', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:35:48', '2020-10-23 06:35:48', '0000-00-00 00:00:00'), +(140, 11, 15, '1', '63', '63', '0', '10', '', '', '', 1, 0, 1, 0, 0, 0, 1, 'active', '2020-10-23 06:36:45', '2020-10-23 06:36:45', '0000-00-00 00:00:00'), +(141, 12, 15, '1', '0.65', '0.65', '0', '2', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:37:07', '2020-10-23 06:37:07', '0000-00-00 00:00:00'), +(147, 15, 14, '80', '1', '0.0125', '0', '1000', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:50:44', '2020-10-23 06:50:44', '0000-00-00 00:00:00'), +(148, 15, 1, '80', '1', '0.0125', '0', '1000', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:52:06', '2020-10-23 06:52:06', '0000-00-00 00:00:00'), +(149, 15, 6, '80', '1', '0.0125', '0', '1000', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:52:58', '2020-10-23 06:52:58', '0000-00-00 00:00:00'), +(150, 15, 2, '80', '1', '0.0125', '0', '1000', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:53:31', '2020-10-23 06:53:31', '0000-00-00 00:00:00'), +(151, 15, 5, '80', '1', '0.0125', '0', '1000', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:54:18', '2020-10-23 06:54:18', '0000-00-00 00:00:00'), +(152, 15, 9, '80', '1', '0.0125', '0', '1000', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:55:17', '2020-10-23 06:55:17', '0000-00-00 00:00:00'), +(153, 15, 13, '80', '1', '0.0125', '0', '1000', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:55:51', '2020-10-23 06:55:51', '0000-00-00 00:00:00'), +(154, 15, 11, '80', '1', '0.0125', '0', '1000', '', '', '', 1, 0, 1, 0, 0, 0, 0, 'active', '2020-10-23 06:56:27', '2020-10-23 06:56:27', '0000-00-00 00:00:00'), +(155, 15, 12, '80', '1', '0.0125', '0', '1000', '', '', '', 1, 0, 1, 0, 1, 1, 0, 'active', '2020-10-23 06:56:56', '2020-10-23 06:56:56', '2020-11-03 08:39:59'), +(211, 25, 11, '1', '0.05258', '0.05258', '0', '', '', '', '', 1, 1, 1, 1, 2, 11, 0, 'active', '2020-11-07 19:14:23', '2022-07-19 14:14:15', '2020-11-10 13:40:49'), +(212, 11, 25, '1', '15', '15', '0', '', '', '', '', 1, 0, 1, 0, 1, 4, 0, 'active', '2020-11-07 19:25:09', '2020-11-07 19:25:09', '2020-11-08 14:12:52'), +(214, 27, 13, '1', '0.90', '0.9', '0', '', '', '', '', 1, 0, 1, 0, 1, 1, 0, 'active', '2022-05-21 01:30:37', '2022-05-21 01:30:37', '2022-05-21 01:31:38'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_gateways` +-- + +CREATE TABLE `exchangerix_gateways` ( + `gateway_id` int(11) UNSIGNED NOT NULL, + `gateway_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `logo` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `account_id` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `api_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `secret_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `other_val` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `other_val2` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `other_val3` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `other_val4` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `other_val5` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `gateway_description` text COLLATE utf8_unicode_ci NOT NULL, + `website` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `status` enum('active','inactive') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active', + `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_gateways` +-- + +INSERT INTO `exchangerix_gateways` (`gateway_id`, `gateway_name`, `logo`, `account_id`, `api_key`, `secret_key`, `other_val`, `other_val2`, `other_val3`, `other_val4`, `other_val5`, `gateway_description`, `website`, `status`, `added`) VALUES +(1, 'PayPal', 'PAYPAL.png', 'yourpaypal-account-here@mial.com', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(2, 'Perfect Money', 'PM.png', 'u545465765', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(3, 'Perfect Money Voucher', 'PM.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(4, 'Skrill', 'SKRILL.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(5, 'Payeer', 'PR.png', '1140311881', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(6, 'Bitcoin', 'BTC.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(7, 'Bitcoin Cash', 'BCH.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(8, 'Litecoin', 'LTC.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(9, 'Dogecoin', 'DOGE.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(10, 'Dash', 'DASH.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(11, 'Peercoin', 'PPC.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(12, 'Ethereum', 'ETH.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(13, 'TheBillioncoin', 'TBC.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(14, 'Monero', 'XMR.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(15, 'Ripple', 'XRP.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(16, 'Zcash', 'ZCASH.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(17, 'Ether Classic', 'ETC.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(18, 'Augur', 'REP.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(19, 'Golem', 'GNT.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(20, 'Gnosis', 'GNO.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(21, 'Lisk', 'LSK.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(22, 'Clams', 'CLAM.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(23, 'Namecoin', 'NMC.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(24, 'AdvCash', 'ADVC.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(25, 'OKPay', 'OK.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(26, 'Entromoney', 'EM.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(27, 'SolidTrust Pay', 'STP.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(28, 'Neteller', 'NTLR.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(29, 'UQUID', 'UQUID.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(30, 'WEX (BTC-e)', 'WEX.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(31, 'Yandex Money', 'YAM.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(32, 'QIWI', 'QIWI.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(33, 'Payza', 'PZ.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(34, 'Bank Transfer', 'BANK.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(35, 'Western Union', 'WU.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(36, 'Moneygram', 'MoneyGram.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(37, 'WebMoney', 'WM.png', '', '', '', '', '', '', '', '', '', '', 'active', '0000-00-00 00:00:00'), +(39, 'TRON', '', 'demo account', '', '', '', '', '', '', '', '', '', 'active', '2020-10-12 08:38:39'), +(40, 'Paytm', '', '91234566789', '', '', '', '', '', '', '', '', '', 'active', '2020-10-23 02:47:26'), +(41, 'PhonePe', '', '9123456789', '', '', '', '', '', '', '', '', '', 'active', '2020-10-23 02:48:34'), +(42, 'Vodafone Cash', '', '01012230774', '', '', '', '', '', '', '', '', '', 'active', '2020-11-07 18:40:16'), +(43, 'Paysera EUR', '', 'QuranSquare@gmail.com', '', '', '', '', '', '', '', '', '', 'active', '2020-11-07 19:47:56'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_languages` +-- + +CREATE TABLE `exchangerix_languages` ( + `language_id` int(11) NOT NULL, + `language_code` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `language` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `currency` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `sort_order` tinyint(1) NOT NULL DEFAULT 0, + `status` enum('active','inactive') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_languages` +-- + +INSERT INTO `exchangerix_languages` (`language_id`, `language_code`, `language`, `currency`, `sort_order`, `status`) VALUES +(1, 'us', 'english', '', 0, 'active'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_news` +-- + +CREATE TABLE `exchangerix_news` ( + `news_id` int(11) UNSIGNED NOT NULL, + `news_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `news_description` text COLLATE utf8_unicode_ci DEFAULT NULL, + `status` enum('active','inactive') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active', + `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_news` +-- + +INSERT INTO `exchangerix_news` (`news_id`, `news_title`, `news_description`, `status`, `added`, `modified`) VALUES +(9, 'Hello', '

Hellow World

\r\n', 'active', '2022-05-20 06:08:02', '2022-05-20 06:08:02'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_pmethods` +-- + +CREATE TABLE `exchangerix_pmethods` ( + `pmethod_id` int(11) UNSIGNED NOT NULL, + `pmethod_title` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `min_amount` decimal(15,4) NOT NULL DEFAULT 0.0000, + `commission` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `pmethod_details` text COLLATE utf8_unicode_ci DEFAULT NULL, + `status` enum('active','inactive') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_pmethods` +-- + +INSERT INTO `exchangerix_pmethods` (`pmethod_id`, `pmethod_title`, `min_amount`, `commission`, `pmethod_details`, `status`) VALUES +(1, 'PayPal', '0.0000', '', 'Please enter your paypal account', 'active'), +(2, 'Bank Check', '0.0000', '', 'Please enter following information:
\r\n - Your Full Name
\r\n - Bank Name
\r\n - Bank Address
\r\n - Account #', 'inactive'), +(3, 'Wire Transfer', '0.0000', '', 'Please enter following information:
\r\n - Your Full Name
\r\n - Bank Name
\r\n - Bank Address
\r\n - Account #', 'active'), +(4, 'Skrill', '0.0000', '', 'Please enter your skrill account', 'inactive'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_reserve_requests` +-- + +CREATE TABLE `exchangerix_reserve_requests` ( + `reserve_request_id` int(11) UNSIGNED NOT NULL, + `user_id` int(11) NOT NULL DEFAULT 0, + `exdirection_id` int(11) UNSIGNED NOT NULL DEFAULT 0, + `currency_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `currency_id` int(11) UNSIGNED NOT NULL DEFAULT 0, + `amount` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `currency_code` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `email` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `phone` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `comment` text COLLATE utf8_unicode_ci NOT NULL, + `is_viewed` tinyint(1) NOT NULL DEFAULT 0, + `is_notified` tinyint(1) NOT NULL DEFAULT 0, + `ip` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `status` enum('confirmed','declined','pending') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'pending', + `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_reviews` +-- + +CREATE TABLE `exchangerix_reviews` ( + `review_id` int(11) UNSIGNED NOT NULL, + `exchange_id` int(11) NOT NULL DEFAULT 0, + `user_id` int(11) NOT NULL DEFAULT 0, + `author` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `review_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `rating` tinyint(1) NOT NULL DEFAULT 0, + `review` text COLLATE utf8_unicode_ci DEFAULT NULL, + `status` enum('active','pending','inactive') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active', + `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_reviews` +-- + +INSERT INTO `exchangerix_reviews` (`review_id`, `exchange_id`, `user_id`, `author`, `review_title`, `rating`, `review`, `status`, `added`, `updated`) VALUES +(4, 61, 22, 'Wqeqw', 'good Service', 5, '42423442', 'active', '2020-11-09 19:52:52', '0000-00-00 00:00:00'), +(3, 0, 0, 'Visitor', 'ttttttttt', 5, 'werwerwerwerer', 'active', '2020-11-07 17:15:28', '0000-00-00 00:00:00'), +(5, 71, 27, 'Monchuya', 'monchuya', 5, 'Gd', 'active', '2021-06-12 07:27:59', '0000-00-00 00:00:00'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_settings` +-- + +CREATE TABLE `exchangerix_settings` ( + `setting_id` int(11) NOT NULL, + `setting_key` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `setting_value` text COLLATE utf8_unicode_ci DEFAULT NULL +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_settings` +-- + +INSERT INTO `exchangerix_settings` (`setting_id`, `setting_key`, `setting_value`) VALUES +(1000, 'website_title', 'Ex.Doridro.Tech'), +(1001, 'website_url', 'https://ex.doridro.tech/'), +(1002, 'website_mode', 'live'), +(1003, 'website_home_title', 'Buy & Sell E-currency with a Easy Way'), +(1004, 'email_from_name', 'Exchange Site Support'), +(1005, 'website_email', 'admin@ex.doridro.tech'), +(1006, 'noreply_email', 'noreply@ex.doridro.tech'), +(1007, 'alerts_email', 'admin@ex.doridro.tech'), +(1008, 'website_language', 'english'), +(1009, 'multilingual', '0'), +(1010, 'website_timezone', 'America/New_York'), +(1011, 'website_date_format', '%d %M %Y'), +(1012, 'website_currency', '$'), +(1013, 'website_currency_format', '1'), +(1014, 'account_activation', '1'), +(1015, 'signup_captcha', '1'), +(1016, 'exchange_captcha', '0'), +(1017, 'login_attempts_limit', '1'), +(1018, 'signup_credit', '5'), +(1019, 'refer_credit', '5'), +(1020, 'referral_commission', '5'), +(1021, 'min_payout', '5'), +(1022, 'min_transaction', '50'), +(1023, 'cancel_withdrawal', '1'), +(1024, 'view_list_style', '1'), +(1025, 'one_review', '1'), +(1026, 'homepage_reviews_limit', '5'), +(1027, 'homepage_exchanges_limit', '10'), +(1028, 'featured_items_limit', '12'), +(1029, 'results_per_page', '12'), +(1030, 'reviews_per_page', '10'), +(1031, 'news_per_page', '10'), +(1032, 'image_width', '120'), +(1033, 'image_height', '60'), +(1034, 'show_statistics', '1'), +(1035, 'show_site_statistics', '1'), +(1036, 'show_landing_page', '1'), +(1037, 'reviews_approve', '1'), +(1038, 'max_review_length', '500'), +(1039, 'email_new_exchange', '1'), +(1040, 'email_new_amount_request', '1'), +(1041, 'email_new_review', '1'), +(1042, 'email_new_ticket', '1'), +(1043, 'email_new_ticket_reply', '1'), +(1044, 'email_new_report', '0'), +(1045, 'sms_new_amount_request', '1'), +(1046, 'smtp_mail', '0'), +(1047, 'smtp_port', '25'), +(1048, 'smtp_host', ''), +(1049, 'smtp_username', ''), +(1050, 'smtp_password', ''), +(1051, 'smtp_ssl', ''), +(1052, 'reg_sources', 'Search Engine,Facebook,Twitter,Other'), +(1053, 'addthis_id', 'YOUR-ACCOUNT-ID'), +(1054, 'facebook_page', 'https://www.facebook.com'), +(1055, 'show_fb_likebox', '1'), +(1056, 'twitter_page', ''), +(1057, 'facebook_connect', '0'), +(1058, 'facebook_appid', ''), +(1059, 'facebook_secret', ''), +(1060, 'google_analytics', ''), +(1061, 'email_verification', '1'), +(1062, 'phone_verification', '0'), +(1063, 'document_verification', '0'), +(1064, 'address_verification', '0'), +(1065, 'payment_proof', '1'), +(1066, 'require_login', '1'), +(1067, 'reserve_minutes', '20'), +(1068, 'update_rates_minutes', '1'), +(1069, 'operator_status', 'online'), +(1070, 'contact_phone', '+88354367643'), +(1071, 'contact_phone2', ''), +(1072, 'contact_phone3', ''), +(1073, 'show_operator_hours', '1'), +(1074, 'operator_hours', '8:00 am - 11:00 pm UTC+3'), +(1075, 'operator_timezone', ''), +(1076, 'chat_code', '\r\n\r\n'), +(1077, 'whatsapp', ''), +(1078, 'skype', ''), +(1079, 'telegram', ''), +(1080, 'viber', ''), +(1081, 'sms_api_key', ''), +(1082, 'sms_api_secret', ''), +(1083, 'allowed_files', 'jpg|png|jpeg'), +(1084, 'files_max_size', '5242880'), +(1085, 'total_exchanges_usd', '0.00'), +(1086, 'license', '5720-2095-3203-5566-2506'), +(1087, 'last_admin_login', '2022-07-22 08:25:41'), +(1088, 'word', '371c59b98fd48c3dc59ad371d6a15f44'), +(1089, 'iword', 'whiTESquiErel954'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_transactions` +-- + +CREATE TABLE `exchangerix_transactions` ( + `transaction_id` int(11) UNSIGNED NOT NULL, + `reference_id` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `user_id` int(11) NOT NULL DEFAULT 0, + `ref_id` int(11) NOT NULL DEFAULT 0, + `payment_type` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `payment_method` int(10) NOT NULL DEFAULT 0, + `payment_details` text COLLATE utf8_unicode_ci DEFAULT NULL, + `transaction_amount` decimal(15,4) NOT NULL DEFAULT 0.0000, + `transaction_commision` decimal(15,4) NOT NULL DEFAULT 0.0000, + `amount` decimal(15,4) NOT NULL DEFAULT 0.0000, + `status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `reason` text COLLATE utf8_unicode_ci DEFAULT NULL, + `notification_sent` tinyint(1) NOT NULL DEFAULT 0, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `process_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_transactions` +-- + +INSERT INTO `exchangerix_transactions` (`transaction_id`, `reference_id`, `user_id`, `ref_id`, `payment_type`, `payment_method`, `payment_details`, `transaction_amount`, `transaction_commision`, `amount`, `status`, `reason`, `notification_sent`, `created`, `updated`, `process_date`) VALUES +(3, '930242211', 22, 0, 'signup_bonus', 0, NULL, '0.0000', '0.0000', '5.0000', 'confirmed', NULL, 0, '2020-11-09 19:46:38', '0000-00-00 00:00:00', '2020-11-09 19:46:38'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `exchangerix_users` +-- + +CREATE TABLE `exchangerix_users` ( + `user_id` int(11) UNSIGNED NOT NULL, + `user_group` tinyint(1) NOT NULL DEFAULT 0, + `username` varchar(70) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `password` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `fname` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `lname` varchar(25) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `gender` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `address` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `address2` varchar(70) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `city` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `state` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `zip` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `country` varchar(11) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', + `phone` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `payment_method` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `reg_source` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `ref_id` varchar(1100) COLLATE utf8_unicode_ci NOT NULL, + `discount` tinyint(1) NOT NULL DEFAULT 0, + `newsletter` tinyint(1) NOT NULL DEFAULT 0, + `ip` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `verified_email` tinyint(1) NOT NULL DEFAULT 0, + `verified_phone` tinyint(1) NOT NULL DEFAULT 0, + `verified_document` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `verified_address` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `verification_progress` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `sms_code` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `status` enum('active','inactive') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active', + `auth_provider` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `auth_uid` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `activation_key` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `unsubscribe_key` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `login_session` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `last_login` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `login_count` int(8) UNSIGNED NOT NULL DEFAULT 0, + `last_ip` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `block_reason` tinytext COLLATE utf8_unicode_ci DEFAULT NULL +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + +-- +-- Dumping data for table `exchangerix_users` +-- + +INSERT INTO `exchangerix_users` (`user_id`, `user_group`, `username`, `password`, `email`, `fname`, `lname`, `gender`, `address`, `address2`, `city`, `state`, `zip`, `country`, `phone`, `payment_method`, `reg_source`, `ref_id`, `discount`, `newsletter`, `ip`, `verified_email`, `verified_phone`, `verified_document`, `verified_address`, `verification_progress`, `sms_code`, `status`, `auth_provider`, `auth_uid`, `activation_key`, `unsubscribe_key`, `login_session`, `last_login`, `login_count`, `last_ip`, `created`, `block_reason`) VALUES +(19, 0, 'eng.mohamedramadan00@gmail.com', 'd93a5def7511da3d0f2d171d9c344e91', 'eng.mohamedramadan00@gmail.com', 'Mohamed', 'Ramadan', '', '', '', '', '', '', '0', '', '', '', '0', 0, 1, '197.162.122.133', 1, 1, '1', '1', '400', '', 'active', '', '', '', '316ee528dcf6551eeff958258ba1bf7b', 'd51a3f76db83705b02de2f5e27c5796f', '2020-11-10 13:46:40', 5, '41.130.244.163', '2020-11-09 19:08:19', NULL), +(20, 0, 'quransquare@gmail.com', 'd93a5def7511da3d0f2d171d9c344e91', 'quransquare@gmail.com', 'Quran', 'Square', '', '', '', '', '', '', '0', '', '', '', '19', 0, 1, '197.162.122.133', 0, 0, '', '', '', '', 'active', '', '', '', 'e03222c26f9bdccf87f60db3f32fa9c1', '30fed047322a344721282d363beb5dbe', '2020-11-10 10:45:01', 3, '41.130.244.163', '2020-11-09 19:08:56', NULL), +(22, 0, 'engawy00@gmail.com', 'd93a5def7511da3d0f2d171d9c344e91', 'engawy00@gmail.com', 'wqeqw', 'qweqwe', '', '', '', '', '', '', '0', '', '', '', '0', 10, 1, '111.111.111.111', 1, 1, '1', '1', '400', '', 'active', '', '', '', '68e70045740a69a671f1293d66680585', 'f7376233c4bb36ba6770c79deac0783f', '2020-11-09 19:47:03', 1, '197.162.122.133', '2020-11-09 19:46:38', NULL), +(23, 0, 'eeee@gmail.com', 'd93a5def7511da3d0f2d171d9c344e91', 'eeee@gmail.com', 'Stewart ramsey', 'Ramadan', '', '', '', '', '', '', '0', '', '', '', '19', 0, 1, '41.130.244.163', 0, 0, '', '', '', '', 'active', '', '', '', 'f586f3bc82b8002090653e23514c719d', '', '2020-11-10 13:39:52', 1, '41.130.244.163', '2020-11-10 13:39:52', NULL), +(24, 0, 'wasimakram594949@gmail.com', 'f66b9ff7787e51324867e57d9f3d770a', 'wasimakram594949@gmail.com', 'Sarafat ahmed', 'Rizvi', '', '', '', '', '', '', '0', '01758585858', '', '', '0', 0, 1, '103.77.16.131', 0, 0, '', '', '', '', 'active', '', '', '', 'e6b4470b563f6f16d161094a02e21efc', '', '2021-05-18 21:05:01', 1, '103.77.16.131', '2021-05-18 21:05:01', NULL), +(25, 0, 'rwtr@gmail.com', '92c7a651ba70bb1a661d2ceea77b83be', 'rwtr@gmail.com', 'Tyt', 'Tete', '', '', '', '', '', '', '0', '', '', '', '0', 0, 1, '103.60.175.75', 0, 0, '', '', '', '', 'active', '', '', '', 'dc075d374aad7007fa0d93a63893ab8b', '4a8ea36fd809891fb089a254d9c8a8d0', '2021-05-22 06:34:40', 2, '103.60.175.75', '2021-05-22 06:28:49', NULL), +(26, 0, 'asldfl@gmaiasldf', '279738c9e6a0d8fad746c7a47071d0d0', 'asldfl@gmaiasldf', 'Asdfjlaj', 'Alsjljsd', '', '', '', '', '', '', '0', '+880 1766100420', '', '', '0', 0, 1, '113.11.36.189', 0, 0, '', '', '', '', 'active', '', '', '', '0cdc8b678a02867572db2f7d0ff2eb67', '', '2021-05-25 02:08:47', 1, '113.11.36.189', '2021-05-25 02:08:47', NULL), +(27, 0, 'monchuya24@gmail.com', '7b305f7bd800348ff73d78cb991aee4a', 'monchuya24@gmail.com', 'Jewel', 'Arfin', '', '', '', '', '', '', '0', '', '', '', '0', 0, 1, '103.60.175.75', 1, 0, '0', '0', '100', '', 'active', '', '', '', '79b617a44dfefd5f121a8a5ef0452b01', '2a852e110eb4398700e8dd4c89b5d613', '2022-05-21 01:31:14', 7, '103.60.175.68', '2021-06-12 06:35:12', NULL), +(28, 0, 'arfinjewel2012@gmail.com', '923fad4bfe9a384bd6652091b9556ae1', 'arfinjewel2012@gmail.com', 'Arfin', 'Jewel', '', '', '', '', '', '', '0', '01632858741', '', '', '0', 0, 1, '103.60.175.68', 0, 0, '', '', '', '', 'active', '', '', '', 'ebb836c1f1f0e022b3b36ad590f91614', '267f93d609f1d216b10a1f8868b2e6be', '2022-05-20 06:27:10', 1, '103.60.175.68', '2022-05-20 06:19:33', NULL), +(29, 0, 'ouesergegedeon225@gmail.com', '6fd59d065037fc0e06bfe53277cae546', 'ouesergegedeon225@gmail.com', 'Claude auguste pierre', 'Grimault', '', '', '', '', '', '', '0', '+10788254371', '', '', '0', 0, 1, '160.154.246.97', 0, 0, '', '', '', '', 'active', '', '', '', '8c9a99929fac4a75ac7072e317771d22', '', '0000-00-00 00:00:00', 0, '', '2022-06-18 08:00:12', NULL), +(30, 0, 'birsmackalonzo@gmail.com', 'fe35b776105abe3f2ab3c083e0796f6d', 'birsmackalonzo@gmail.com', 'Big', 'Anatole', '', '', '', '', '', '', '0', '', '', '', '0', 0, 1, '41.138.90.88', 0, 0, '', '', '', '', 'active', '', '', '', '1ded24f3ed255385be0be37d0f2db8e8', '', '0000-00-00 00:00:00', 0, '', '2022-06-20 02:02:13', NULL), +(31, 0, 'peyrotoceaneanais@gmail.com', '81b33bf9252f26054307ad0103fc40fc', 'peyrotoceaneanais@gmail.com', 'Florielle', 'Koulony', '', '', '', '', '', '', '0', '94620440', '', '', '0', 0, 1, '41.138.89.213', 0, 0, '', '', '', '', 'inactive', '', '', '3a4a43f1e4b56819cb69b2f0acdc2328', 'f3ee7e3fe6da89767bfa998caba09022', '', '0000-00-00 00:00:00', 0, '', '2022-06-26 07:33:55', NULL), +(32, 0, 'bkashguru@gmail.com', 'c284703a3b8ed3cc5d85fb7a1d7982fb', 'bkashguru@gmail.com', 'Hossain', 'Ahammad', '', '', '', '', '', '', '0', '+8801911946917', '', '', '0', 0, 1, '202.134.8.130', 0, 0, '', '', '', '', 'inactive', '', '', 'f3d0037482f466351316320fdc445930', '7982ac1c0981f763dcaa526012e68eb6', '', '0000-00-00 00:00:00', 0, '', '2022-06-29 17:22:25', NULL), +(33, 0, 'kamous787898@gmail.com', 'a648f8886660fe2d2c85504d4491c56e', 'kamous787898@gmail.com', 'Tanvir', 'Haque', '', '', '', '', '', '', '0', '01903166508', '', '', '0', 0, 1, '103.230.107.7', 0, 0, '', '', '', '', 'inactive', '', '', '2e18925dd9891e64ad3be50421b42f50', '9a05d493482fa262d8e010fcfb237091', '', '0000-00-00 00:00:00', 0, '', '2022-07-04 05:58:49', NULL), +(34, 0, 'kamous9000@gmail.com', 'a648f8886660fe2d2c85504d4491c56e', 'kamous9000@gmail.com', 'Rashid', 'Haque', '', '', '', '', '', '', '0', '01976576867', '', '', '0', 0, 1, '103.230.107.7', 0, 0, '', '', '', '', 'inactive', '', '', '034188174a9b2e7c40c8122dc7ef4212', '7e658c59011e470b4cf4cd512535c505', '', '0000-00-00 00:00:00', 0, '', '2022-07-04 06:01:25', NULL), +(35, 0, 'kparves834@gmail.com', 'd93a5def7511da3d0f2d171d9c344e91', 'kparves834@gmail.com', 'Joh', 'Yy', '', '', '', '', '', '', '0', 'T', '', '', '0', 0, 1, '103.143.182.128', 0, 0, '', '', '', '', 'active', '', '', '', 'bedb57236f9ca03fadceee842ee6feba', '8cfcdbae57d9fdeedbf71ed026a00abf', '2022-07-08 07:40:24', 1, '103.67.158.105', '2022-07-08 07:31:34', NULL), +(36, 0, 'yousefmohamad994@gmail.com', '2ea91d2b38efb198a52292e68e28310b', 'yousefmohamad994@gmail.com', 'Sayed', 'Mohamad', '', '', '', '', '', '', '0', '+201016980259', '', '', '0', 0, 1, '197.53.183.116', 0, 0, '', '', '', '', 'active', '', '', '', '156b1c14d7e155ba835e69a37100a3de', 'a2f2311017f3158033a852ea7766f8c5', '2022-07-15 04:16:03', 1, '197.53.183.116', '2022-07-15 04:15:31', NULL), +(37, 0, 'ab@gmail.com', 'e5779a795252ce85a3e4e2f288268338', 'ab@gmail.com', 'A', 'B', '', '', '', '', '', '', '0', '135', '', '', '0', 0, 1, '103.54.39.196', 0, 0, '', '', '', '', 'inactive', '', '', '56cf6d9bc05ef50097a7b899dd7ef7e9', 'b164402767d1ac68f26eae15972af424', '', '0000-00-00 00:00:00', 0, '', '2022-07-16 14:48:01', NULL); + +-- +-- Indexes for dumped tables +-- + +-- +-- Indexes for table `exchangerix_content` +-- +ALTER TABLE `exchangerix_content` + ADD PRIMARY KEY (`content_id`); + +-- +-- Indexes for table `exchangerix_countries` +-- +ALTER TABLE `exchangerix_countries` + ADD PRIMARY KEY (`country_id`); + +-- +-- Indexes for table `exchangerix_currencies` +-- +ALTER TABLE `exchangerix_currencies` + ADD PRIMARY KEY (`currency_id`); + +-- +-- Indexes for table `exchangerix_email_templates` +-- +ALTER TABLE `exchangerix_email_templates` + ADD PRIMARY KEY (`template_id`); + +-- +-- Indexes for table `exchangerix_exchanges` +-- +ALTER TABLE `exchangerix_exchanges` + ADD PRIMARY KEY (`exchange_id`); + +-- +-- Indexes for table `exchangerix_exdirections` +-- +ALTER TABLE `exchangerix_exdirections` + ADD PRIMARY KEY (`exdirection_id`); + +-- +-- Indexes for table `exchangerix_gateways` +-- +ALTER TABLE `exchangerix_gateways` + ADD PRIMARY KEY (`gateway_id`); + +-- +-- Indexes for table `exchangerix_languages` +-- +ALTER TABLE `exchangerix_languages` + ADD PRIMARY KEY (`language_id`); + +-- +-- Indexes for table `exchangerix_news` +-- +ALTER TABLE `exchangerix_news` + ADD PRIMARY KEY (`news_id`); + +-- +-- Indexes for table `exchangerix_pmethods` +-- +ALTER TABLE `exchangerix_pmethods` + ADD PRIMARY KEY (`pmethod_id`); + +-- +-- Indexes for table `exchangerix_reserve_requests` +-- +ALTER TABLE `exchangerix_reserve_requests` + ADD PRIMARY KEY (`reserve_request_id`); + +-- +-- Indexes for table `exchangerix_reviews` +-- +ALTER TABLE `exchangerix_reviews` + ADD PRIMARY KEY (`review_id`); + +-- +-- Indexes for table `exchangerix_settings` +-- +ALTER TABLE `exchangerix_settings` + ADD PRIMARY KEY (`setting_id`); + +-- +-- Indexes for table `exchangerix_transactions` +-- +ALTER TABLE `exchangerix_transactions` + ADD PRIMARY KEY (`transaction_id`); + +-- +-- Indexes for table `exchangerix_users` +-- +ALTER TABLE `exchangerix_users` + ADD PRIMARY KEY (`user_id`); + +-- +-- AUTO_INCREMENT for dumped tables +-- + +-- +-- AUTO_INCREMENT for table `exchangerix_content` +-- +ALTER TABLE `exchangerix_content` + MODIFY `content_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; + +-- +-- AUTO_INCREMENT for table `exchangerix_countries` +-- +ALTER TABLE `exchangerix_countries` + MODIFY `country_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=241; + +-- +-- AUTO_INCREMENT for table `exchangerix_currencies` +-- +ALTER TABLE `exchangerix_currencies` + MODIFY `currency_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28; + +-- +-- AUTO_INCREMENT for table `exchangerix_email_templates` +-- +ALTER TABLE `exchangerix_email_templates` + MODIFY `template_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; + +-- +-- AUTO_INCREMENT for table `exchangerix_exchanges` +-- +ALTER TABLE `exchangerix_exchanges` + MODIFY `exchange_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=88; + +-- +-- AUTO_INCREMENT for table `exchangerix_exdirections` +-- +ALTER TABLE `exchangerix_exdirections` + MODIFY `exdirection_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=215; + +-- +-- AUTO_INCREMENT for table `exchangerix_gateways` +-- +ALTER TABLE `exchangerix_gateways` + MODIFY `gateway_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44; + +-- +-- AUTO_INCREMENT for table `exchangerix_languages` +-- +ALTER TABLE `exchangerix_languages` + MODIFY `language_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; + +-- +-- AUTO_INCREMENT for table `exchangerix_news` +-- +ALTER TABLE `exchangerix_news` + MODIFY `news_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; + +-- +-- AUTO_INCREMENT for table `exchangerix_pmethods` +-- +ALTER TABLE `exchangerix_pmethods` + MODIFY `pmethod_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; + +-- +-- AUTO_INCREMENT for table `exchangerix_reserve_requests` +-- +ALTER TABLE `exchangerix_reserve_requests` + MODIFY `reserve_request_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; + +-- +-- AUTO_INCREMENT for table `exchangerix_reviews` +-- +ALTER TABLE `exchangerix_reviews` + MODIFY `review_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `exchangerix_settings` +-- +ALTER TABLE `exchangerix_settings` + MODIFY `setting_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1090; + +-- +-- AUTO_INCREMENT for table `exchangerix_transactions` +-- +ALTER TABLE `exchangerix_transactions` + MODIFY `transaction_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; + +-- +-- AUTO_INCREMENT for table `exchangerix_users` +-- +ALTER TABLE `exchangerix_users` + MODIFY `user_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38; +COMMIT; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/exchange.php b/exchange.php new file mode 100644 index 0000000..c6da4a3 --- /dev/null +++ b/exchange.php @@ -0,0 +1,439 @@ +0 || reserve='') AND status='active') AND to_currency IN (SELECT currency_id FROM exchangerix_currencies WHERE allow_receive='1' AND (reserve>0 || reserve='') AND status='active') AND status='active' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + + if ($total > 0) + { + $row = mysqli_fetch_array($result); + + $send_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='$from_id' LIMIT 1")); + $receive_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='$to_id' LIMIT 1")); + + $ip = mysqli_real_escape_string($conn, getenv("REMOTE_ADDR")); + if (filter_var($ip, FILTER_VALIDATE_IP)) + $user_ip = $ip; + + + $ptitle = "Exchange ".GetCurrencyFName($row['from_currency'])." to ".GetCurrencyFName($row['to_currency']); + + // exchange session id + $_SESSION['rid'] = md5(mt_rand(1,10000).mt_rand(1,10000).time()); + + + if (isLoggedIn()) $user_id = (int)$_SESSION['userid']; else $user_id = 0; + + // if ($row['hide_code'] == 1) do not show currency CODE //dev + + ///////////////// update rate /////////////////// + if ($row['auto_rate'] == 1 && $row['last_update_mins'] > UPDATE_RATES_MINUTES) + { + $from = GetCurrencyCode($row['from_currency']); + $to = GetCurrencyCode($row['to_currency']); + + exchagerix_update_rate($from, $to, $row['fee'], $row['exdirection_id']); + } + /////////////////////////////////////////////////////////// + + $default_from = $row['from_rate']; + $default_to = $row['to_rate']; + + } + else + { + $ptitle = CBE1_NOT_FOUND; + } + + + /////////////// Page config /////////////// + $PAGE_TITLE = $ptitle; + //$PAGE_DESCRIPTION = $row['meta_description']; + //$PAGE_KEYWORDS = $row['meta_keywords']; + + $bg_dark = 1; + require_once ("inc/header.inc.php"); + +?> + + 0) { + + ?> + +
+
+ + +
+

You need to login or signup to be able to make exchanges.

+
+ + +
style="opacity: 0.4"> + +

+ + + + + + + + + + +

+ +
+ +
+ +

  Enter Amount  

+ +

Discount: 0%.
Want a discount? Just
sign up!Your Discount: 3%

+ +
+
+ + +
+

Manual Exchange

+ This is manual exchange. Operator will need some time to review your payment. +
Working hours: +
+ + + +
+ × + Min Amount: . + Max Amount: . + Sorry, low reserve for this currency. + Sorry, amount is wrong. Only numbers and dot (.) allowed. +
+ + + 0) { ?> +

Fee: %

+ + + + + + + + 0 || $receive_row['reserve'] == "") { ?> +
+
+
+

Amount Send

+
+ + +
+ 0 || $row['max_amount'] > 0) { ?> + + 0) { ?>Min Amount: + 0) { ?>    Max Amount: + + + +
+
+

Amount Receive

+
+ + +
+ 0) { ?>Max Amount: +
+
+ +
+
+ +
+
Rate: =
+ + +
+
+ + + +
+
+

+ Go Back + + Next Step + + + +

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

About to Exchange

+

+
+ + +
+
style="opacity: 0.4"> + +
+

Exchange Info

+ + 0 || $receive_row['reserve'] == "") { ?>

Reserve

    " class="open-ReserveDialog" href="#ResDialog">want more?

+ +

Reserve

Reserve is out.


Sorry, we have out of reserve for this currency. Please check back soon or " class="open-ReserveDialog" href="#ResDialog">contact us.
+ 0) { ?>

Min Amount

 

+ 0) { ?>

Max Amount

 

+ 0) { ?>

Fee

 

+
+ +
+ Secure Exchange
+ Your exchange is always safe and secure. +
+ +
+
+ + + + + + + + + + + + + + + +

Exchange

+
+

+ + + + + \ No newline at end of file diff --git a/exchange_step2.php b/exchange_step2.php new file mode 100644 index 0000000..115231e --- /dev/null +++ b/exchange_step2.php @@ -0,0 +1,742 @@ + 0)) + { + header("Location: exchange.php?currency_send=$from_id¤cy_receive=$to_id&err=wrong_amount"); + exit(); + } + + if (!(isset($_POST['action']) && $_POST['action'] == "proceed")) + { + $to_amount = sprintf('%f', $_POST['to_amount']); + if (!(isset($to_amount) && is_numeric($to_amount) && $to_amount > 0)) + { + header("Location: exchange.php?currency_send=$from_id¤cy_receive=$to_id&err=wrong_amount"); + exit(); + } + } + } + else + { + header ("Location: index.php"); + exit(); + } + + + $query = "SELECT *, TIMESTAMPDIFF(MINUTE,updated,NOW()) AS last_update_mins FROM exchangerix_exdirections WHERE from_currency='$from_id' AND to_currency='$to_id' AND from_currency IN (SELECT currency_id FROM exchangerix_currencies WHERE allow_send='1' AND (reserve>0 || reserve='') AND status='active') AND to_currency IN (SELECT currency_id FROM exchangerix_currencies WHERE allow_receive='1' AND (reserve>0 || reserve='') AND status='active') AND status='active' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + + if ($total > 0) + { + $row = mysqli_fetch_array($result); + + $send_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='$from_id' LIMIT 1")); + $receive_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='$to_id' LIMIT 1")); + + $gateway = strtolower($receive_row['currency_name']); + + $ip = mysqli_real_escape_string($conn, getenv("REMOTE_ADDR")); + if (filter_var($ip, FILTER_VALIDATE_IP)) + $user_ip = $ip; + + + //////////////////////// update rate /////////////////////// + if ($row['auto_rate'] == 1 && $row['last_update_mins'] > UPDATE_RATES_MINUTES) + { + $from = GetCurrencyCode($row['from_currency']); + $to = GetCurrencyCode($row['to_currency']); + + exchagerix_update_rate($from, $to, $row['fee'], $row['exdirection_id']); + } + //////////////////////////////////////////////////////////// + + + $from_amount = substr(floatval($_POST['from_amount']), 0, 20); + $to_amount = $from_amount*$row['exchange_rate']; //fee //dev + $to_amount = dtruncate($to_amount, 4); + //$to_amount = floatval($from_amount*$row['exchange_rate']); + //if (strstr($to_amount, ".")) $to_amount = number_format($to_amount, 4, '.', ''); + //$to_amount = round($to_amount, 4); + + if (!($from_amount > 0 && $to_amount > 0)) + { + header("Location: exchange.php?currency_send=$from_id¤cy_receive=$to_id"); + exit(); + } + + if ($row['min_amount'] != "" && $from_amount < $row['min_amount']) + { + header("Location: exchange.php?currency_send=$from_id¤cy_receive=$to_id&err=min_amount"); + exit(); + } + + if ($row['max_amount'] != "" && $from_amount > $row['max_amount']) + { + header("Location: exchange.php?currency_send=$from_id¤cy_receive=$to_id&err=max_amount"); + exit(); + } + + if ($receive_row['reserve'] > 0 && $to_amount > $receive_row['reserve']) + { + header("Location: exchange.php?currency_send=$from_id¤cy_receive=$to_id&err=max_amount"); + exit(); + } + + if (GetCurrencyReserve($to_id) < $to_amount && GetCurrencyReserve($to_id) != "unlimited") + { + header("Location: exchange.php?currency_send=$from_id¤cy_receive=$to_id&err=low_reserve"); + exit(); + } + + // load user info + if (isLoggedIn() && $_POST['action'] != "proceed") + { + $uquery = "SELECT * FROM exchangerix_users WHERE user_id='".(int)$_SESSION['userid']."' AND status='active' LIMIT 1"; + $uresult = smart_mysql_query($uquery); + if (mysqli_num_rows($uresult) > 0) + { + $urow = mysqli_fetch_array($uresult); + $fullname = $urow['fname']." ".$urow['lname']; + $email = $urow['email']; + } + else + { + header("Location: logout.php"); + exit(); + } + } + + // setup exchange amounts + $_SESSION['from_amount'] = $from_amount; + $_SESSION['to_amount'] = $to_amount; + + + $ptitle = "Exchange ".GetCurrencyFName($row['from_currency'])." to ".GetCurrencyFName($row['to_currency']); + + + if (isset($_POST['action']) && $_POST['action'] == "proceed") + { + unset($errs); + $errs = array(); + + if (isLoggedIn()) $user_id = (int)$_SESSION['userid']; else $user_id = 0; + + $fullname = mysqli_real_escape_string($conn, getPostParameter('fullname')); + $email = mysqli_real_escape_string($conn, strtolower(getPostParameter('email'))); + $phone = mysqli_real_escape_string($conn, getPostParameter('phone')); //check format //dev + $account = mysqli_real_escape_string($conn, getPostParameter('a_field_1')); + $tos = (int)getPostParameter('tos'); + $new_account = (int)getPostParameter('new_account'); //dev + + + if (isset($_COOKIE['referer_id']) && is_numeric($_COOKIE['referer_id'])) + $ref_id = (int)$_COOKIE['referer_id']; + + $ip = mysqli_real_escape_string($conn, getenv("REMOTE_ADDR")); + //$captcha = mysqli_real_escape_string($conn, getPostParameter('captcha')); + + if (!($fullname && $email && $account)) + { + $errs[] = CBE1_SIGNUP_ERR; + } + + if (!$account) + { + if ($gateway == "paypal") + { + $errs[] = "Please enter a valid Paypal Account (ex: example@domain.com)"; + + }elseif ($gateway == "payeer") + { + $errs[] = "Please enter a valid Payeer Account (ex: P1000000)"; + + }elseif ($gateway == "perfect_money") + { + $errs[] = "Please enter a valid PerfectMoney Account (ex: Uxxxxxx)"; + + }elseif ($gateway == "advcash") + { + $errs[] = "Please enter a valid AdvCash Account (ex: example@gmail.com)"; + + }elseif ($gateway == "bitcoin") + { + $errs[] = "Please enter a valid Bitcoin Address (ex: 1XXXXxxXXx1XXx2xxX3XX456xXx)"; + + }elseif ($gateway == "litecoin") + { + $errs[] = "Please enter a valid Litecoin Address (ex: 1XXXXxxXXx1XXx2xxX3XX456xXx)"; + + }elseif ($gateway == "dogecoin") + { + $errs[] = "Please enter a valid Dogecoin Address (ex: 1XXXXxxXXx1XXx2xxX3XX456xXx)"; + + }elseif ($gateway == "dash") + { + $errs[] = "Please enter a valid Dash Address (ex: 1XXXXxxXXx1XXx2xxX3XX456xXx)"; + + }elseif ($gateway == "peercoin") + { + $errs[] = "Please enter a valid Peercoin Address (ex: 1XXXXxxXXx1XXx2xxX3XX456xXx)"; + + }elseif ($gateway == "ethereum") + { + $errs[] = "Please enter a valid Ethereum Address (ex: 0xaax00110aax00110aax00110aax00110aax00110)"; + + }elseif ($gateway == "bitcoincash") + { + $errs[] = "Please enter a valid Bitcoin Cash Address (ex: 1XXXXxxXXx1XXx2xxX3XX456xXx)"; + + }elseif ($gateway == "monero") + { + $errs[] = "Please enter a valid Monero Address (ex: 4XXXXxxXXx1XXx2xxX3XX456xXx...)"; + + }elseif ($gateway == "ripple") + { + $errs[] = "Please enter a valid Ripple Address (ex: rXxxXxxXX15xXxXXxXx3XxxX1XxxXXxX6X)"; + + }elseif ($gateway == "zcash") + { + $errs[] = "Please enter a valid Zcash Address (ex: t1XXXXxxXXx1XXx2xxX3XX456xXx)"; + + }elseif ($gateway == "ethereumclassic") + { + $errs[] = "Please enter a valid Ethereum Address (ex: 0xaax00110aax00110aax00110aax00110aax00110)"; + + }elseif ($gateway == "augur") + { + $errs[] = "Please enter a valid Augur Address (ex: 0xaax00110aax00110aax00110aax00110aax00110)"; + + }elseif ($gateway == "golem") + { + $errs[] = "Please enter a valid Golem Address (ex: 0xaax00110aax00110aax00110aax00110aax00110)"; + + }elseif ($gateway == "gnosis") + { + $errs[] = "Please enter a valid Gnosis Address (ex: 0xaax00110aax00110aax00110aax00110aax00110)"; + + }elseif ($gateway == "lisk") + { + $errs[] = "Please enter a valid Lisk Address (ex: AABBCCDDEEFF0011A)"; + + }elseif ($gateway == "clams") + { + $errs[] = "Please enter a valid Clams Address (ex: xXxXX1xxXxxXx1xX1xXxx1xXXxXxXXxXxx)"; + + }elseif ($gateway == "namecoin") + { + $errs[] = "Please enter a valid Namecoin Address (ex: 1XXXXxxXXx1XXx2xxX3XX456xXx)"; + + }else + { + //$errs[] = "Please enter a valid account for receiving"; + } + } + + if ($gateway == "bitcoin" && $account != "" && !checkBitcoinAddress($account)) + { + $errs[] = "Please enter a valid Bitcoin Address
(ex: 1XXXXxxXXx1XXx2xxX3XX456xXx)"; + } + + if (isset($email) && $email != "" && !preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/", $email)) + { + $errs[] = CBE1_SIGNUP_ERR4; + } + + if (!(isset($tos) && $tos == 1)) + { + $errs[] = CBE1_SIGNUP_ERR9; + } + + /* + if (count($errs) == 0) + $check_query = "SELECT * FROM exchangerix_transactions WHERE amount='$amount' OR email='$email' AND ip='' AND created IN 10 minutes LIMIT 1"; + $check_result = smart_mysql_query($check_query); + if (mysqli_num_rows($check_result) != 0) + { + $errs[] = "Transaction is exists". You can make transaction in next 5 minutes."; + } + } + */ + + + if (count($errs) == 0) + { + $exdirection_id = (int)$row['exdirection_id']; + $reference_id = GenerateReferenceID(); + $country = @country_ip($ip); + $country = mysqli_real_escape_string($conn, $country); + + $exchange_amount = floatval($_SESSION['from_amount']); + $receive_amount = floatval($_SESSION['to_amount']); + + $from_currency = mysqli_real_escape_string($conn, $send_row['currency_name']." ".$send_row['currency_code']); + $to_currency = mysqli_real_escape_string($conn, $receive_row['currency_name']." ".$receive_row['currency_code']); + $ex_from_rate = floatval($row['from_rate']); + $ex_to_rate = floatval($row['to_rate']); + + /////////////// create new account /////////////// + if ($new_account == 1) + { + $pwd = mysqli_real_escape_string($conn, generatePassword(10)); + $fullname_arr = explode(" ", $fullname); + $fname = ucfirst(trim($fullname_arr[0])); + $lname = ucfirst(trim($fullname_arr[1])); + //$activation_key = GenerateKey($email); + $unsubscribe_key = GenerateKey($email); + + $ucheck_result = smart_mysql_query("SELECT username FROM exchangerix_users WHERE username='$email' OR email='$email' LIMIT 1"); + + if (mysqli_num_rows($ucheck_result) == 0) + { + smart_mysql_query("INSERT INTO exchangerix_users SET username='$email', password='".PasswordEncryption($pwd)."', email='$email', fname='$fname', lname='$lname', country='$country', phone='$phone', ref_id='$ref_id', newsletter='1', ip='$ip', status='active', activation_key='$activation_key', unsubscribe_key='$unsubscribe_key', created=NOW()"); + $user_id = mysqli_insert_id($conn); + + ////// Send welcome message ///// + $etemplate = GetEmailTemplate('signup'); + $esubject = $etemplate['email_subject']; + $emessage = $etemplate['email_message']; + + $emessage = str_replace("{first_name}", $fname, $emessage); + $emessage = str_replace("{username}", $email, $emessage); + $emessage = str_replace("{password}", $pwd, $emessage); + $emessage = str_replace("{login_url}", SITE_URL."login.php", $emessage); + $to_email = $fname.' '.$lname.' <'.$email.'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1); + /////////////////////////////////// + } + } + /////////////////////////////////////////////////// + + /* + if ($row['fee'] != "") + { + if (strstr($row['fee'],"%")) + $exchange_fee = CalculatePercentage($exchange_amount, str_replace("%","",$row['fee'])); + else + $exchange_fee = $row['fee']; + } + $exchange_fee = floatval($exchange_fee); + */ + + $client_details = $fullname; + if ($phone != "") $client_details .= "
".$phone; + + + if (isset($_SESSION['transaction_id']) && $_SESSION['transaction_id'] > 0) + { + smart_mysql_query("UPDATE exchangerix_exchanges SET exdirection_id='$exdirection_id', user_id='$user_id', reference_id='$reference_id', to_currency_id='$to_id', from_currency_id='$from_id', from_currency='$from_currency', to_currency='$to_currency', ex_from_rate='$ex_from_rate', ex_to_rate='$ex_to_rate', exchange_rate='', exchange_amount='$exchange_amount', receive_amount='$receive_amount', exchange_fee='$exchange_fee', from_account='$from_account', to_account='$account', client_email='$email', country_code='$country', client_details='$client_details', ref_id='$ref_id', status='waiting', notification_sent='0' WHERE exchange_id='".(int)$_SESSION['transaction_id']."' LIMIT 1"); + } + else + { + smart_mysql_query("INSERT INTO exchangerix_exchanges SET exdirection_id='$exdirection_id', user_id='$user_id', reference_id='$reference_id', to_currency_id='$to_id', from_currency_id='$from_id', from_currency='$from_currency', to_currency='$to_currency', ex_from_rate='$ex_from_rate', ex_to_rate='$ex_to_rate', exchange_rate='', exchange_amount='$exchange_amount', receive_amount='$receive_amount', exchange_fee='$exchange_fee', from_account='', to_account='$account', client_email='$email', country_code='$country', client_details='$client_details', ref_id='$ref_id', status='waiting', notification_sent='0', created=NOW()"); //$ip + + $new_id = mysqli_insert_id($conn); + $_SESSION['transaction_id'] = $new_id; + } + + header("Location: exchange_step3.php"); + exit(); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
"; + } + + } + } + else + { + $ptitle = "Exchange"; + } + + + /////////////// Page config /////////////// + $PAGE_TITLE = $ptitle; + + $bg_dark = 1; + require_once ("inc/header.inc.php"); + +?> + + 0) { + + ?> + + +
+
+ +
+ +

+ + + + + + + + + + +

+ +
+ +
+ +

Your Details

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

+ Go Back + +


+

+ +
+
+
+ +
+ + +
+
+ +
+ change +

Your Exchange

+ +

Amount Send

+

 

+ +

Amount Receive

+

 

+ +

Exchange Rate

+

  =

+    last updated: +
+ +
+ + Secure Exchange
+ Your exchange is always safe and secure. + + 0) { ?> +

Exchange amount ( ) will be reserved for minutes. + +
+ +

Note: for security reasons, your IP () was recorded by our system.

+ +
+
+ + + +

Exchange

+
+

+ + + + + \ No newline at end of file diff --git a/exchange_step3.php b/exchange_step3.php new file mode 100644 index 0000000..d3e2251 --- /dev/null +++ b/exchange_step3.php @@ -0,0 +1,394 @@ + 0) + { + $exchange_id = (int)$_SESSION['transaction_id']; + } + else + { + header ("Location: index.php"); + exit(); + } + + if (RESERVE_MINUTES > 0) $a_sql = " DATE_ADD(created, INTERVAL ".(int)RESERVE_MINUTES." MINUTE) AS countdate, "; else $a_sql = ""; + + $query = "SELECT *, TIMESTAMPDIFF(MINUTE, created, now()) as time_ago, $a_sql DATE_FORMAT(created, '".DATE_FORMAT." %h:%i %p') AS payment_date FROM exchangerix_exchanges WHERE exchange_id='$exchange_id' AND (status='waiting' OR status='pending') LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + + if ($total > 0) + { + $row = mysqli_fetch_array($result); + + if (RESERVE_MINUTES > 0 && $row['time_ago'] >= RESERVE_MINUTES) + { + smart_mysql_query("UPDATE exchangerix_exchanges SET status='timeout', updated=NOW() WHERE exchange_id='$exchange_id' LIMIT 1"); + header("Location: payment_declined.php?reason=timeout"); + exit(); + } + + $send_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='".(int)$row['from_currency_id']."' LIMIT 1")); + $receive_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='".(int)$row['to_currency_id']."' LIMIT 1")); + $direction_row = mysqli_fetch_array(smart_mysql_query("SELECT *, date(last_exchange_date) AS last_update FROM exchangerix_exdirections WHERE from_currency='".(int)$row['from_currency_id']."' AND to_currency='".(int)$row['to_currency_id']."' AND from_currency IN (SELECT currency_id FROM exchangerix_currencies WHERE allow_send='1' AND (reserve>0 || reserve='') AND status='active') AND to_currency IN (SELECT currency_id FROM exchangerix_currencies WHERE allow_receive='1' AND (reserve>0 || reserve='') AND status='active') AND status='active' LIMIT 1")); + + $ip = mysqli_real_escape_string($conn, getenv("REMOTE_ADDR")); + if (filter_var($ip, FILTER_VALIDATE_IP)) + $user_ip = $ip; + + + $ptitle = "Exchange ".$send_row['currency_name']." ".$send_row['currency_code']." to ".$receive_row['currency_name']." ".$receive_row['currency_code']; + + + // cancel exchange + if (isset($_GET['action']) && $_GET['action'] == "cancel") + { + smart_mysql_query("UPDATE exchangerix_exchanges SET status='cancelled', updated=NOW() WHERE exchange_id='$exchange_id' LIMIT 1"); + unset($_SESSION['transaction_id']); + + header ("Location: index.php"); + exit(); + } + + // confirm exchange + if (isset($_POST['action']) && $_POST['action'] == "confirm") + { + unset($errs); + $errs = array(); + + $payment_details = mysqli_real_escape_string($conn, nl2br(getPostParameter('payment_details'))); + + if (!($payment_details)) + $errs[] = CBE1_SIGNUP_ERR; + + if (count($errs) == 0) + { + if (NEW_EXCHANGE_ALERT == 1) + { + SendEmail(SITE_ALERTS_MAIL, "New Exchange Completed - ".SITE_TITLE, "Hi,
New currency exchange completed."); + } + + //update reserve + smart_mysql_query("UPDATE exchangerix_currencies SET reserve=reserve-'".floatval($row['receive_amount'])."' WHERE currency_id='".(int)$row['to_currency_id']."' LIMIT 1"); + + if ($direction_row['last_update'] = date("Y-m-d")) $today_ex_sql = "today_exchanges='1', "; else "today_exchanges=today_exchanges+1, "; + smart_mysql_query("UPDATE exchangerix_exdirections SET ".$today_ex_sql." total_exchanges=total_exchanges+1, last_exchange_date=NOW() WHERE exdirection_id='".(int)$row['exdirection_id']."' LIMIT 1"); + + //smart_mysql_query("UPDATE exchangerix_currencies SET reserve=reserve+'".floatval($row['exchange_amount'])."' WHERE currency_id='".(int)$row['from_currency_id']."' LIMIT 1"); + //dev email + //smart_mysql_query("UPDATE exchangerix_currencies SET total_exchanges=total_exchanges+1 WHERE currency_id='".(int)$row['from_currency']."' LIMIT 1"); + //smart_mysql_query("UPDATE exchangerix_currencies SET total_exchanges=total_exchanges+1 WHERE currency_id='".(int)$row['to_currency']."' LIMIT 1"); + //smart_mysql_query("UPDATE exchangerix_settings SET setting_value=setting_value+$exchange_amount, WHERE setting_key='total_exchanges_usd' LIMIT 1"); + + smart_mysql_query("UPDATE exchangerix_exchanges SET from_account='$payment_details', status='pending' WHERE exchange_id='$exchange_id' LIMIT 1"); //is_view = 0 + + // update proof /////////////////////// + if ($_FILES['upfile']['tmp_name']) + { + if (FILES_MAX_SIZE != "" && is_numeric(FILES_MAX_SIZE)) $files_size = FILES_MAX_SIZE; else $files_size = 2097152; // 2MB + $files_size_kb = round($files_size/1024); + + if (is_uploaded_file($_FILES['upfile']['tmp_name'])) + { + list($width, $height, $type) = getimagesize($_FILES['upfile']['tmp_name']); + + $check = getimagesize($_FILES["upfile"]["tmp_name"]); + if ($check === false) $errs[] = "File is not an image"; + + if ($_FILES['upfile']['size'] > $files_size) + { + $errs[] = "The image file size is too big. It exceeds $files_size_kb Kb"; + } + elseif (preg_match('/\\.(png|jpg|jpeg|gif)$/i', $_FILES['upfile']['name']) != 1) + { + $errs[] = "Please upload image file only"; + unlink($_FILES['upfile']['tmp_name']); + } + else + { + $ext = substr(strrchr($_FILES['upfile']['name'], "."), 1); + $save_as = time().rand(10000,1000000).".".$ext; + $save_as = mysqli_real_escape_string($conn, $save_as); + $upload_path = PUBLIC_HTML_PATH."/uploads/".$save_as; + $resized_path = $upload_path; + + // upload file + move_uploaded_file($_FILES['upfile']['tmp_name'], $upload_path); + + smart_mysql_query("UPDATE exchangerix_exchanges SET proof='$save_as' WHERE exchange_id='$exchange_id' LIMIT 1"); + } + } + } + /////////////// + + // ex_from_rate ex_to_rate //client_details // status + $recipient = $row['client_details']. "<".$row['client_email'].">"; + SendEmail($recipient, "Thank for your exchange - ".SITE_TITLE, "Hi,

Thank you for your exchange.

ID: ".$row['reference_id']."
Send Amount: ".floatval($row['exchange_amount'])." ".$row['from_currency']."
Receive Amount: ".floatval($row['receive_amount'])." ".$row['to_currency']."
To account: ".$row['to_account']."
Date: ".$row['payment_date']."

You can track your exchange: track exchange

Thank you for working with us!"); + + + header ("Location: payment_success.php?manual=1"); + exit(); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
"; + } + } + + } + else + { + $ptitle = "Exchange"; + } + + + /////////////// Page config /////////////// + $PAGE_TITLE = $ptitle; + + $bg_dark = 1; + require_once ("inc/header.inc.php"); + +?> + + 0) { + + ?> + +
+
+ +
+ +

+ + + + + + + + + + +

+ +
+ +
+ +

Exchange Confirmation

+ +
+
+ + +
+

Manual Exchange

+ This is manual exchange. Operator will need some time to review your payment. +
Working hours: +
+ + + +
+ + +

Account Receive Details

+ +
+ + = 0) { ?> +
+

Our Account Details

+

Please make payment to our account and insert your payment details in the field below.

+ 0) + { + $irow = mysqli_fetch_array($iresult); + } + ?> +

+
+

Instructions

+
+ + + =0 && strtolower($send_row['currency_name']) == "bitcoin") { //DEV == 0 ?> +

+ Scan QR-code to make payment or send manually to our wallet.
+

+

+ + +

waiting for payment


+ +
enctype="multipart/form-data"> +
+ + + +
+ +
+
+ + +
+
+
+
+ + +
+ + + + +

+   + +

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

Your Exchange

+ + + + + + + + + + + + + + + + + + + + + + + + + 0) { ?> + + + + + + + + + + + + + +
Exchange ID:
Amount Send:
Amount Receive:
Exchange Rate: =
Exchange Fee:
Discount: (%)
Exchange Date:

Total for pay:

+
+ + +
+ Secure Exchange
+ Your exchange is always safe and secure. + + 0) { ?> +

Exchange amount is reserved for minutes. +
Please complete your exchange during this time. + +
+
+ +
+
+ + + + + + + + +
+ +

Note: for security reasons, your IP () was recorded by our system.

+ +
+
+ + + +

Exchange

+
Sorry, no transaction found.
+

+ + + + + \ No newline at end of file diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..a068d27 Binary files /dev/null and b/favicon.ico differ diff --git a/fonts/FontAwesome.otf b/fonts/FontAwesome.otf new file mode 100644 index 0000000..401ec0f Binary files /dev/null and b/fonts/FontAwesome.otf differ diff --git a/fonts/fontawesome-webfont.eot b/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000..e9f60ca Binary files /dev/null and b/fonts/fontawesome-webfont.eot differ diff --git a/fonts/fontawesome-webfont.svg b/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000..855c845 --- /dev/null +++ b/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/fonts/fontawesome-webfont.ttf b/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000..35acda2 Binary files /dev/null and b/fonts/fontawesome-webfont.ttf differ diff --git a/fonts/fontawesome-webfont.woff b/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000..400014a Binary files /dev/null and b/fonts/fontawesome-webfont.woff differ diff --git a/fonts/fontawesome-webfont.woff2 b/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000..4d13fc6 Binary files /dev/null and b/fonts/fontawesome-webfont.woff2 differ diff --git a/fonts/glyphicons-halflings-regular.eot b/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 0000000..b93a495 Binary files /dev/null and b/fonts/glyphicons-halflings-regular.eot differ diff --git a/fonts/glyphicons-halflings-regular.svg b/fonts/glyphicons-halflings-regular.svg new file mode 100644 index 0000000..94fb549 --- /dev/null +++ b/fonts/glyphicons-halflings-regular.svg @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/glyphicons-halflings-regular.ttf b/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000..1413fc6 Binary files /dev/null and b/fonts/glyphicons-halflings-regular.ttf differ diff --git a/fonts/glyphicons-halflings-regular.woff b/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 0000000..9e61285 Binary files /dev/null and b/fonts/glyphicons-halflings-regular.woff differ diff --git a/fonts/glyphicons-halflings-regular.woff2 b/fonts/glyphicons-halflings-regular.woff2 new file mode 100644 index 0000000..64539b5 Binary files /dev/null and b/fonts/glyphicons-halflings-regular.woff2 differ diff --git a/forgot.php b/forgot.php new file mode 100644 index 0000000..b10660b --- /dev/null +++ b/forgot.php @@ -0,0 +1,149 @@ + 0) + { + $row = mysqli_fetch_array($result); + + $newPassword = generatePassword(11); + $update_query = "UPDATE exchangerix_users SET password='".PasswordEncryption($newPassword)."' WHERE user_id='".(int)$row['user_id']."' LIMIT 1"; + + if (smart_mysql_query($update_query)) + { + //////////////////////////////// Send Message ////////////////////////////// + $etemplate = GetEmailTemplate('forgot_password'); + $esubject = $etemplate['email_subject']; + $emessage = $etemplate['email_message']; + + $emessage = str_replace("{first_name}", $row['fname'], $emessage); + $emessage = str_replace("{username}", $row['username'], $emessage); + $emessage = str_replace("{password}", $newPassword, $emessage); + $emessage = str_replace("{login_url}", SITE_URL."login.php", $emessage); + $to_email = $row['fname'].' '.$row['lname'].' <'.$email.'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1); + + header("Location: forgot.php?msg=sent"); + exit(); + /////////////////////////////////////////////////////////////////////////////// + } + } + else + { + header("Location: forgot.php?msg=3"); + exit(); + } + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
\n"; + } + } + + /////////////// Page config /////////////// + $PAGE_TITLE = CBE1_FORGOT_TITLE; + + require_once "inc/header.inc.php"; + +?> + +

+ +
+
+ + +
+ +
+ +
+

+ +

+ + + +
+ +
+
+ + +
+
+
+ + +
+
+ <?php echo CBE1_SIGNUP_RIMG; ?> +
+
+ +
+ + +
+
+ +
+ + +
+
+ + + \ No newline at end of file diff --git a/getdata.php b/getdata.php new file mode 100644 index 0000000..1c83560 --- /dev/null +++ b/getdata.php @@ -0,0 +1,82 @@ + 0) + { + $row = mysqli_fetch_array($result); + + $updated = 0; + + // update rate /////////////////// + if ($row['auto_rate'] == 1 && $row['last_update_mins'] > 1) + { + $from = GetCurrencyCode($row['from_currency']); + $to = GetCurrencyCode($row['to_currency']); + + exchagerix_update_rate($from, $to, $row['fee'], $row['exdirection_id']); + + $old_rate = $row['exchange_rate']; + $exchange_rate = GetDirectionRate($row['exdirection_id']); + + $updated = 1; + + if ($old_rate != $exchange_rate) + { + if ($old_rate > $exchange_rate) $rate_up = 1; + if ($old_rate < $exchange_rate) $rate_up = 2; + } + } + + ?> + + + + "> = + + + + + 0) + { + while ($row = mysqli_fetch_array($result)) { $cc++; + ?> +
; padding: 5px; margin-bottom: 5px; border-bottom: 1px solid #EEE"> +
+ +
+    
+
+ No exchanges at this time.

"; } + + } + +?> \ No newline at end of file diff --git a/help.php b/help.php new file mode 100644 index 0000000..efa4d4f --- /dev/null +++ b/help.php @@ -0,0 +1,27 @@ + + +

+

+ + \ No newline at end of file diff --git a/howitworks.php b/howitworks.php new file mode 100644 index 0000000..31c6032 --- /dev/null +++ b/howitworks.php @@ -0,0 +1,27 @@ + + +

+

+ + \ No newline at end of file diff --git a/images/.DS_Store b/images/.DS_Store new file mode 100644 index 0000000..87622c9 Binary files /dev/null and b/images/.DS_Store differ diff --git a/images/404.png b/images/404.png new file mode 100644 index 0000000..9ca4802 Binary files /dev/null and b/images/404.png differ diff --git a/images/areferral_icon.png b/images/areferral_icon.png new file mode 100644 index 0000000..793e775 Binary files /dev/null and b/images/areferral_icon.png differ diff --git a/images/arrow.png b/images/arrow.png new file mode 100644 index 0000000..b10eaa5 Binary files /dev/null and b/images/arrow.png differ diff --git a/images/cancel.png b/images/cancel.png new file mode 100644 index 0000000..35682b0 Binary files /dev/null and b/images/cancel.png differ diff --git a/images/check_blue.png b/images/check_blue.png new file mode 100644 index 0000000..23edca2 Binary files /dev/null and b/images/check_blue.png differ diff --git a/images/close.png b/images/close.png new file mode 100644 index 0000000..20baa1d Binary files /dev/null and b/images/close.png differ diff --git a/images/currencies/.DS_Store b/images/currencies/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/images/currencies/.DS_Store differ diff --git a/images/currencies/2co.png b/images/currencies/2co.png new file mode 100644 index 0000000..c7b09a2 Binary files /dev/null and b/images/currencies/2co.png differ diff --git a/images/currencies/ADA.png b/images/currencies/ADA.png new file mode 100644 index 0000000..3fe6593 Binary files /dev/null and b/images/currencies/ADA.png differ diff --git a/images/currencies/ADVC.png b/images/currencies/ADVC.png new file mode 100644 index 0000000..657f9ba Binary files /dev/null and b/images/currencies/ADVC.png differ diff --git a/images/currencies/ALFA.png b/images/currencies/ALFA.png new file mode 100644 index 0000000..feaa26f Binary files /dev/null and b/images/currencies/ALFA.png differ diff --git a/images/currencies/BANK.png b/images/currencies/BANK.png new file mode 100644 index 0000000..4dae440 Binary files /dev/null and b/images/currencies/BANK.png differ diff --git a/images/currencies/BCC.png b/images/currencies/BCC.png new file mode 100644 index 0000000..bc9da2c Binary files /dev/null and b/images/currencies/BCC.png differ diff --git a/images/currencies/BCH.png b/images/currencies/BCH.png new file mode 100644 index 0000000..89a8d7d Binary files /dev/null and b/images/currencies/BCH.png differ diff --git a/images/currencies/BTC.png b/images/currencies/BTC.png new file mode 100644 index 0000000..a6d9235 Binary files /dev/null and b/images/currencies/BTC.png differ diff --git a/images/currencies/CARD.png b/images/currencies/CARD.png new file mode 100644 index 0000000..844f716 Binary files /dev/null and b/images/currencies/CARD.png differ diff --git a/images/currencies/CASH.png b/images/currencies/CASH.png new file mode 100644 index 0000000..4799b15 Binary files /dev/null and b/images/currencies/CASH.png differ diff --git a/images/currencies/CLAM.png b/images/currencies/CLAM.png new file mode 100644 index 0000000..39a3eae Binary files /dev/null and b/images/currencies/CLAM.png differ diff --git a/images/currencies/DASH.png b/images/currencies/DASH.png new file mode 100644 index 0000000..f2d1aa4 Binary files /dev/null and b/images/currencies/DASH.png differ diff --git a/images/currencies/DOGE.png b/images/currencies/DOGE.png new file mode 100644 index 0000000..1c2d1d2 Binary files /dev/null and b/images/currencies/DOGE.png differ diff --git a/images/currencies/EM.png b/images/currencies/EM.png new file mode 100644 index 0000000..19841cd Binary files /dev/null and b/images/currencies/EM.png differ diff --git a/images/currencies/ETC.png b/images/currencies/ETC.png new file mode 100644 index 0000000..2df0cdf Binary files /dev/null and b/images/currencies/ETC.png differ diff --git a/images/currencies/ETH.png b/images/currencies/ETH.png new file mode 100644 index 0000000..eed9c01 Binary files /dev/null and b/images/currencies/ETH.png differ diff --git a/images/currencies/EXMO.png b/images/currencies/EXMO.png new file mode 100644 index 0000000..7fb05ba Binary files /dev/null and b/images/currencies/EXMO.png differ diff --git a/images/currencies/GNO.png b/images/currencies/GNO.png new file mode 100644 index 0000000..68fe474 Binary files /dev/null and b/images/currencies/GNO.png differ diff --git a/images/currencies/GNT.png b/images/currencies/GNT.png new file mode 100644 index 0000000..68a25fe Binary files /dev/null and b/images/currencies/GNT.png differ diff --git a/images/currencies/LSK.png b/images/currencies/LSK.png new file mode 100644 index 0000000..1aebde8 Binary files /dev/null and b/images/currencies/LSK.png differ diff --git a/images/currencies/LTC.png b/images/currencies/LTC.png new file mode 100644 index 0000000..fb39365 Binary files /dev/null and b/images/currencies/LTC.png differ diff --git a/images/currencies/MIOTA.png b/images/currencies/MIOTA.png new file mode 100644 index 0000000..62fb7af Binary files /dev/null and b/images/currencies/MIOTA.png differ diff --git a/images/currencies/MP.png b/images/currencies/MP.png new file mode 100644 index 0000000..ccdeb19 Binary files /dev/null and b/images/currencies/MP.png differ diff --git a/images/currencies/MoneyGram.png b/images/currencies/MoneyGram.png new file mode 100644 index 0000000..338f4e2 Binary files /dev/null and b/images/currencies/MoneyGram.png differ diff --git a/images/currencies/NEM.png b/images/currencies/NEM.png new file mode 100644 index 0000000..c88d251 Binary files /dev/null and b/images/currencies/NEM.png differ diff --git a/images/currencies/NEO.png b/images/currencies/NEO.png new file mode 100644 index 0000000..f4d02c1 Binary files /dev/null and b/images/currencies/NEO.png differ diff --git a/images/currencies/NMC.png b/images/currencies/NMC.png new file mode 100644 index 0000000..2970fd2 Binary files /dev/null and b/images/currencies/NMC.png differ diff --git a/images/currencies/NTLR.png b/images/currencies/NTLR.png new file mode 100644 index 0000000..6a7deef Binary files /dev/null and b/images/currencies/NTLR.png differ diff --git a/images/currencies/OK.png b/images/currencies/OK.png new file mode 100644 index 0000000..a6f80db Binary files /dev/null and b/images/currencies/OK.png differ diff --git a/images/currencies/P24UAH.png b/images/currencies/P24UAH.png new file mode 100644 index 0000000..ff17999 Binary files /dev/null and b/images/currencies/P24UAH.png differ diff --git a/images/currencies/PAYPAL.png b/images/currencies/PAYPAL.png new file mode 100644 index 0000000..c0c83da Binary files /dev/null and b/images/currencies/PAYPAL.png differ diff --git a/images/currencies/PM.png b/images/currencies/PM.png new file mode 100644 index 0000000..3b2c9c2 Binary files /dev/null and b/images/currencies/PM.png differ diff --git a/images/currencies/PPC.png b/images/currencies/PPC.png new file mode 100644 index 0000000..47bd229 Binary files /dev/null and b/images/currencies/PPC.png differ diff --git a/images/currencies/PR.png b/images/currencies/PR.png new file mode 100644 index 0000000..a610560 Binary files /dev/null and b/images/currencies/PR.png differ diff --git a/images/currencies/PZ.png b/images/currencies/PZ.png new file mode 100644 index 0000000..bf92335 Binary files /dev/null and b/images/currencies/PZ.png differ diff --git a/images/currencies/PaySafeCard.png b/images/currencies/PaySafeCard.png new file mode 100644 index 0000000..ce9ec67 Binary files /dev/null and b/images/currencies/PaySafeCard.png differ diff --git a/images/currencies/QIWI.png b/images/currencies/QIWI.png new file mode 100644 index 0000000..0555e9f Binary files /dev/null and b/images/currencies/QIWI.png differ diff --git a/images/currencies/QTUM.png b/images/currencies/QTUM.png new file mode 100644 index 0000000..f473a89 Binary files /dev/null and b/images/currencies/QTUM.png differ diff --git a/images/currencies/REP.png b/images/currencies/REP.png new file mode 100644 index 0000000..ab5da30 Binary files /dev/null and b/images/currencies/REP.png differ diff --git a/images/currencies/SFE.png b/images/currencies/SFE.png new file mode 100644 index 0000000..2d1a385 Binary files /dev/null and b/images/currencies/SFE.png differ diff --git a/images/currencies/SJCX.png b/images/currencies/SJCX.png new file mode 100644 index 0000000..e2720ef Binary files /dev/null and b/images/currencies/SJCX.png differ diff --git a/images/currencies/SKRILL.png b/images/currencies/SKRILL.png new file mode 100644 index 0000000..6c3998f Binary files /dev/null and b/images/currencies/SKRILL.png differ diff --git a/images/currencies/STP.png b/images/currencies/STP.png new file mode 100644 index 0000000..461135e Binary files /dev/null and b/images/currencies/STP.png differ diff --git a/images/currencies/TBC.png b/images/currencies/TBC.png new file mode 100644 index 0000000..62fcbc7 Binary files /dev/null and b/images/currencies/TBC.png differ diff --git a/images/currencies/UQUID.png b/images/currencies/UQUID.png new file mode 100644 index 0000000..ae06049 Binary files /dev/null and b/images/currencies/UQUID.png differ diff --git a/images/currencies/WAVES.png b/images/currencies/WAVES.png new file mode 100644 index 0000000..909927b Binary files /dev/null and b/images/currencies/WAVES.png differ diff --git a/images/currencies/WEX.png b/images/currencies/WEX.png new file mode 100644 index 0000000..5c1acae Binary files /dev/null and b/images/currencies/WEX.png differ diff --git a/images/currencies/WM.png b/images/currencies/WM.png new file mode 100644 index 0000000..b0503eb Binary files /dev/null and b/images/currencies/WM.png differ diff --git a/images/currencies/WU.png b/images/currencies/WU.png new file mode 100644 index 0000000..b7a3d8f Binary files /dev/null and b/images/currencies/WU.png differ diff --git a/images/currencies/WireTransfer.png b/images/currencies/WireTransfer.png new file mode 100644 index 0000000..4dae440 Binary files /dev/null and b/images/currencies/WireTransfer.png differ diff --git a/images/currencies/XMR.png b/images/currencies/XMR.png new file mode 100644 index 0000000..1761457 Binary files /dev/null and b/images/currencies/XMR.png differ diff --git a/images/currencies/XRP.png b/images/currencies/XRP.png new file mode 100644 index 0000000..6feb29b Binary files /dev/null and b/images/currencies/XRP.png differ diff --git a/images/currencies/YAM.png b/images/currencies/YAM.png new file mode 100644 index 0000000..8598dae Binary files /dev/null and b/images/currencies/YAM.png differ diff --git a/images/currencies/ZCASH.png b/images/currencies/ZCASH.png new file mode 100644 index 0000000..6800999 Binary files /dev/null and b/images/currencies/ZCASH.png differ diff --git a/images/currencies/index.htm b/images/currencies/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/images/currencies/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/images/currencies/logo_201652955790.png b/images/currencies/logo_201652955790.png new file mode 100644 index 0000000..f6ef8de Binary files /dev/null and b/images/currencies/logo_201652955790.png differ diff --git a/images/currencies/logo_661604248008.png b/images/currencies/logo_661604248008.png new file mode 100644 index 0000000..f97ba0b Binary files /dev/null and b/images/currencies/logo_661604248008.png differ diff --git a/images/currencies/logo_711652955609.png b/images/currencies/logo_711652955609.png new file mode 100644 index 0000000..4614bbd Binary files /dev/null and b/images/currencies/logo_711652955609.png differ diff --git a/images/currencies/logo_721604248151.png b/images/currencies/logo_721604248151.png new file mode 100644 index 0000000..be9cdbc Binary files /dev/null and b/images/currencies/logo_721604248151.png differ diff --git a/images/currencies/logo_831604247015.png b/images/currencies/logo_831604247015.png new file mode 100644 index 0000000..9c64e92 Binary files /dev/null and b/images/currencies/logo_831604247015.png differ diff --git a/images/currencies/logo_901653110829.png b/images/currencies/logo_901653110829.png new file mode 100644 index 0000000..7270afd Binary files /dev/null and b/images/currencies/logo_901653110829.png differ diff --git a/images/currencies/no_image.png b/images/currencies/no_image.png new file mode 100644 index 0000000..37c2ca7 Binary files /dev/null and b/images/currencies/no_image.png differ diff --git a/images/date.png b/images/date.png new file mode 100644 index 0000000..fe4eef1 Binary files /dev/null and b/images/date.png differ diff --git a/images/delete.png b/images/delete.png new file mode 100644 index 0000000..5f77077 Binary files /dev/null and b/images/delete.png differ diff --git a/images/facebook.png b/images/facebook.png new file mode 100644 index 0000000..c03999c Binary files /dev/null and b/images/facebook.png differ diff --git a/images/facebook_connect.png b/images/facebook_connect.png new file mode 100644 index 0000000..65af594 Binary files /dev/null and b/images/facebook_connect.png differ diff --git a/images/flags/ad.png b/images/flags/ad.png new file mode 100644 index 0000000..625ca84 Binary files /dev/null and b/images/flags/ad.png differ diff --git a/images/flags/ae.png b/images/flags/ae.png new file mode 100644 index 0000000..ef3a1ec Binary files /dev/null and b/images/flags/ae.png differ diff --git a/images/flags/af.png b/images/flags/af.png new file mode 100644 index 0000000..a4742e2 Binary files /dev/null and b/images/flags/af.png differ diff --git a/images/flags/ag.png b/images/flags/ag.png new file mode 100644 index 0000000..556d550 Binary files /dev/null and b/images/flags/ag.png differ diff --git a/images/flags/ai.png b/images/flags/ai.png new file mode 100644 index 0000000..74ed29d Binary files /dev/null and b/images/flags/ai.png differ diff --git a/images/flags/al.png b/images/flags/al.png new file mode 100644 index 0000000..92354cb Binary files /dev/null and b/images/flags/al.png differ diff --git a/images/flags/am.png b/images/flags/am.png new file mode 100644 index 0000000..344a2a8 Binary files /dev/null and b/images/flags/am.png differ diff --git a/images/flags/an.png b/images/flags/an.png new file mode 100644 index 0000000..633e4b8 Binary files /dev/null and b/images/flags/an.png differ diff --git a/images/flags/ao.png b/images/flags/ao.png new file mode 100644 index 0000000..bcbd1d6 Binary files /dev/null and b/images/flags/ao.png differ diff --git a/images/flags/ar.png b/images/flags/ar.png new file mode 100644 index 0000000..e5ef8f1 Binary files /dev/null and b/images/flags/ar.png differ diff --git a/images/flags/as.png b/images/flags/as.png new file mode 100644 index 0000000..32f30e4 Binary files /dev/null and b/images/flags/as.png differ diff --git a/images/flags/at.png b/images/flags/at.png new file mode 100644 index 0000000..0f15f34 Binary files /dev/null and b/images/flags/at.png differ diff --git a/images/flags/au.png b/images/flags/au.png new file mode 100644 index 0000000..a01389a Binary files /dev/null and b/images/flags/au.png differ diff --git a/images/flags/aw.png b/images/flags/aw.png new file mode 100644 index 0000000..a3579c2 Binary files /dev/null and b/images/flags/aw.png differ diff --git a/images/flags/ax.png b/images/flags/ax.png new file mode 100644 index 0000000..1eea80a Binary files /dev/null and b/images/flags/ax.png differ diff --git a/images/flags/az.png b/images/flags/az.png new file mode 100644 index 0000000..4ee9fe5 Binary files /dev/null and b/images/flags/az.png differ diff --git a/images/flags/ba.png b/images/flags/ba.png new file mode 100644 index 0000000..c774992 Binary files /dev/null and b/images/flags/ba.png differ diff --git a/images/flags/bb.png b/images/flags/bb.png new file mode 100644 index 0000000..0df19c7 Binary files /dev/null and b/images/flags/bb.png differ diff --git a/images/flags/bd.png b/images/flags/bd.png new file mode 100644 index 0000000..076a8bf Binary files /dev/null and b/images/flags/bd.png differ diff --git a/images/flags/be.png b/images/flags/be.png new file mode 100644 index 0000000..d86ebc8 Binary files /dev/null and b/images/flags/be.png differ diff --git a/images/flags/bf.png b/images/flags/bf.png new file mode 100644 index 0000000..ab5ce8f Binary files /dev/null and b/images/flags/bf.png differ diff --git a/images/flags/bg.png b/images/flags/bg.png new file mode 100644 index 0000000..0469f06 Binary files /dev/null and b/images/flags/bg.png differ diff --git a/images/flags/bh.png b/images/flags/bh.png new file mode 100644 index 0000000..ea8ce68 Binary files /dev/null and b/images/flags/bh.png differ diff --git a/images/flags/bi.png b/images/flags/bi.png new file mode 100644 index 0000000..5cc2e30 Binary files /dev/null and b/images/flags/bi.png differ diff --git a/images/flags/bj.png b/images/flags/bj.png new file mode 100644 index 0000000..1cc8b45 Binary files /dev/null and b/images/flags/bj.png differ diff --git a/images/flags/bm.png b/images/flags/bm.png new file mode 100644 index 0000000..c0c7aea Binary files /dev/null and b/images/flags/bm.png differ diff --git a/images/flags/bn.png b/images/flags/bn.png new file mode 100644 index 0000000..8fb0984 Binary files /dev/null and b/images/flags/bn.png differ diff --git a/images/flags/bo.png b/images/flags/bo.png new file mode 100644 index 0000000..ce7ba52 Binary files /dev/null and b/images/flags/bo.png differ diff --git a/images/flags/br.png b/images/flags/br.png new file mode 100644 index 0000000..9b1a553 Binary files /dev/null and b/images/flags/br.png differ diff --git a/images/flags/bs.png b/images/flags/bs.png new file mode 100644 index 0000000..639fa6c Binary files /dev/null and b/images/flags/bs.png differ diff --git a/images/flags/bt.png b/images/flags/bt.png new file mode 100644 index 0000000..1d512df Binary files /dev/null and b/images/flags/bt.png differ diff --git a/images/flags/bv.png b/images/flags/bv.png new file mode 100644 index 0000000..160b6b5 Binary files /dev/null and b/images/flags/bv.png differ diff --git a/images/flags/bw.png b/images/flags/bw.png new file mode 100644 index 0000000..fcb1039 Binary files /dev/null and b/images/flags/bw.png differ diff --git a/images/flags/by.png b/images/flags/by.png new file mode 100644 index 0000000..504774e Binary files /dev/null and b/images/flags/by.png differ diff --git a/images/flags/bz.png b/images/flags/bz.png new file mode 100644 index 0000000..be63ee1 Binary files /dev/null and b/images/flags/bz.png differ diff --git a/images/flags/ca.png b/images/flags/ca.png new file mode 100644 index 0000000..1f20419 Binary files /dev/null and b/images/flags/ca.png differ diff --git a/images/flags/catalonia.png b/images/flags/catalonia.png new file mode 100644 index 0000000..5041e30 Binary files /dev/null and b/images/flags/catalonia.png differ diff --git a/images/flags/cc.png b/images/flags/cc.png new file mode 100644 index 0000000..aed3d3b Binary files /dev/null and b/images/flags/cc.png differ diff --git a/images/flags/cd.png b/images/flags/cd.png new file mode 100644 index 0000000..5e48942 Binary files /dev/null and b/images/flags/cd.png differ diff --git a/images/flags/cf.png b/images/flags/cf.png new file mode 100644 index 0000000..da687bd Binary files /dev/null and b/images/flags/cf.png differ diff --git a/images/flags/cg.png b/images/flags/cg.png new file mode 100644 index 0000000..a859792 Binary files /dev/null and b/images/flags/cg.png differ diff --git a/images/flags/ch.png b/images/flags/ch.png new file mode 100644 index 0000000..242ec01 Binary files /dev/null and b/images/flags/ch.png differ diff --git a/images/flags/ci.png b/images/flags/ci.png new file mode 100644 index 0000000..3f2c62e Binary files /dev/null and b/images/flags/ci.png differ diff --git a/images/flags/ck.png b/images/flags/ck.png new file mode 100644 index 0000000..746d3d6 Binary files /dev/null and b/images/flags/ck.png differ diff --git a/images/flags/cl.png b/images/flags/cl.png new file mode 100644 index 0000000..29c6d61 Binary files /dev/null and b/images/flags/cl.png differ diff --git a/images/flags/cm.png b/images/flags/cm.png new file mode 100644 index 0000000..f65c5bd Binary files /dev/null and b/images/flags/cm.png differ diff --git a/images/flags/cn.png b/images/flags/cn.png new file mode 100644 index 0000000..8914414 Binary files /dev/null and b/images/flags/cn.png differ diff --git a/images/flags/co.png b/images/flags/co.png new file mode 100644 index 0000000..a118ff4 Binary files /dev/null and b/images/flags/co.png differ diff --git a/images/flags/cr.png b/images/flags/cr.png new file mode 100644 index 0000000..c7a3731 Binary files /dev/null and b/images/flags/cr.png differ diff --git a/images/flags/cs.png b/images/flags/cs.png new file mode 100644 index 0000000..8254790 Binary files /dev/null and b/images/flags/cs.png differ diff --git a/images/flags/cu.png b/images/flags/cu.png new file mode 100644 index 0000000..083f1d6 Binary files /dev/null and b/images/flags/cu.png differ diff --git a/images/flags/cv.png b/images/flags/cv.png new file mode 100644 index 0000000..a63f7ea Binary files /dev/null and b/images/flags/cv.png differ diff --git a/images/flags/cx.png b/images/flags/cx.png new file mode 100644 index 0000000..48e31ad Binary files /dev/null and b/images/flags/cx.png differ diff --git a/images/flags/cy.png b/images/flags/cy.png new file mode 100644 index 0000000..5b1ad6c Binary files /dev/null and b/images/flags/cy.png differ diff --git a/images/flags/cz.png b/images/flags/cz.png new file mode 100644 index 0000000..c8403dd Binary files /dev/null and b/images/flags/cz.png differ diff --git a/images/flags/de.png b/images/flags/de.png new file mode 100644 index 0000000..ac4a977 Binary files /dev/null and b/images/flags/de.png differ diff --git a/images/flags/dj.png b/images/flags/dj.png new file mode 100644 index 0000000..582af36 Binary files /dev/null and b/images/flags/dj.png differ diff --git a/images/flags/dk.png b/images/flags/dk.png new file mode 100644 index 0000000..e2993d3 Binary files /dev/null and b/images/flags/dk.png differ diff --git a/images/flags/dm.png b/images/flags/dm.png new file mode 100644 index 0000000..5fbffcb Binary files /dev/null and b/images/flags/dm.png differ diff --git a/images/flags/do.png b/images/flags/do.png new file mode 100644 index 0000000..5a04932 Binary files /dev/null and b/images/flags/do.png differ diff --git a/images/flags/dz.png b/images/flags/dz.png new file mode 100644 index 0000000..335c239 Binary files /dev/null and b/images/flags/dz.png differ diff --git a/images/flags/ec.png b/images/flags/ec.png new file mode 100644 index 0000000..0caa0b1 Binary files /dev/null and b/images/flags/ec.png differ diff --git a/images/flags/ee.png b/images/flags/ee.png new file mode 100644 index 0000000..0c82efb Binary files /dev/null and b/images/flags/ee.png differ diff --git a/images/flags/eg.png b/images/flags/eg.png new file mode 100644 index 0000000..8a3f7a1 Binary files /dev/null and b/images/flags/eg.png differ diff --git a/images/flags/eh.png b/images/flags/eh.png new file mode 100644 index 0000000..90a1195 Binary files /dev/null and b/images/flags/eh.png differ diff --git a/images/flags/england.png b/images/flags/england.png new file mode 100644 index 0000000..3a7311d Binary files /dev/null and b/images/flags/england.png differ diff --git a/images/flags/er.png b/images/flags/er.png new file mode 100644 index 0000000..13065ae Binary files /dev/null and b/images/flags/er.png differ diff --git a/images/flags/es.png b/images/flags/es.png new file mode 100644 index 0000000..c2de2d7 Binary files /dev/null and b/images/flags/es.png differ diff --git a/images/flags/et.png b/images/flags/et.png new file mode 100644 index 0000000..2e893fa Binary files /dev/null and b/images/flags/et.png differ diff --git a/images/flags/europeanunion.png b/images/flags/europeanunion.png new file mode 100644 index 0000000..d6d8711 Binary files /dev/null and b/images/flags/europeanunion.png differ diff --git a/images/flags/fam.png b/images/flags/fam.png new file mode 100644 index 0000000..cf50c75 Binary files /dev/null and b/images/flags/fam.png differ diff --git a/images/flags/fi.png b/images/flags/fi.png new file mode 100644 index 0000000..14ec091 Binary files /dev/null and b/images/flags/fi.png differ diff --git a/images/flags/fj.png b/images/flags/fj.png new file mode 100644 index 0000000..cee9988 Binary files /dev/null and b/images/flags/fj.png differ diff --git a/images/flags/fk.png b/images/flags/fk.png new file mode 100644 index 0000000..ceaeb27 Binary files /dev/null and b/images/flags/fk.png differ diff --git a/images/flags/fm.png b/images/flags/fm.png new file mode 100644 index 0000000..066bb24 Binary files /dev/null and b/images/flags/fm.png differ diff --git a/images/flags/fo.png b/images/flags/fo.png new file mode 100644 index 0000000..cbceb80 Binary files /dev/null and b/images/flags/fo.png differ diff --git a/images/flags/fr.png b/images/flags/fr.png new file mode 100644 index 0000000..8332c4e Binary files /dev/null and b/images/flags/fr.png differ diff --git a/images/flags/ga.png b/images/flags/ga.png new file mode 100644 index 0000000..0e0d434 Binary files /dev/null and b/images/flags/ga.png differ diff --git a/images/flags/gb.png b/images/flags/gb.png new file mode 100644 index 0000000..ff701e1 Binary files /dev/null and b/images/flags/gb.png differ diff --git a/images/flags/gd.png b/images/flags/gd.png new file mode 100644 index 0000000..9ab57f5 Binary files /dev/null and b/images/flags/gd.png differ diff --git a/images/flags/ge.png b/images/flags/ge.png new file mode 100644 index 0000000..728d970 Binary files /dev/null and b/images/flags/ge.png differ diff --git a/images/flags/gf.png b/images/flags/gf.png new file mode 100644 index 0000000..8332c4e Binary files /dev/null and b/images/flags/gf.png differ diff --git a/images/flags/gh.png b/images/flags/gh.png new file mode 100644 index 0000000..4e2f896 Binary files /dev/null and b/images/flags/gh.png differ diff --git a/images/flags/gi.png b/images/flags/gi.png new file mode 100644 index 0000000..e76797f Binary files /dev/null and b/images/flags/gi.png differ diff --git a/images/flags/gl.png b/images/flags/gl.png new file mode 100644 index 0000000..ef12a73 Binary files /dev/null and b/images/flags/gl.png differ diff --git a/images/flags/gm.png b/images/flags/gm.png new file mode 100644 index 0000000..0720b66 Binary files /dev/null and b/images/flags/gm.png differ diff --git a/images/flags/gn.png b/images/flags/gn.png new file mode 100644 index 0000000..ea660b0 Binary files /dev/null and b/images/flags/gn.png differ diff --git a/images/flags/gp.png b/images/flags/gp.png new file mode 100644 index 0000000..dbb086d Binary files /dev/null and b/images/flags/gp.png differ diff --git a/images/flags/gq.png b/images/flags/gq.png new file mode 100644 index 0000000..ebe20a2 Binary files /dev/null and b/images/flags/gq.png differ diff --git a/images/flags/gr.png b/images/flags/gr.png new file mode 100644 index 0000000..8651ade Binary files /dev/null and b/images/flags/gr.png differ diff --git a/images/flags/gs.png b/images/flags/gs.png new file mode 100644 index 0000000..7ef0bf5 Binary files /dev/null and b/images/flags/gs.png differ diff --git a/images/flags/gt.png b/images/flags/gt.png new file mode 100644 index 0000000..c43a70d Binary files /dev/null and b/images/flags/gt.png differ diff --git a/images/flags/gu.png b/images/flags/gu.png new file mode 100644 index 0000000..92f37c0 Binary files /dev/null and b/images/flags/gu.png differ diff --git a/images/flags/gw.png b/images/flags/gw.png new file mode 100644 index 0000000..b37bcf0 Binary files /dev/null and b/images/flags/gw.png differ diff --git a/images/flags/gy.png b/images/flags/gy.png new file mode 100644 index 0000000..22cbe2f Binary files /dev/null and b/images/flags/gy.png differ diff --git a/images/flags/hk.png b/images/flags/hk.png new file mode 100644 index 0000000..d5c380c Binary files /dev/null and b/images/flags/hk.png differ diff --git a/images/flags/hm.png b/images/flags/hm.png new file mode 100644 index 0000000..a01389a Binary files /dev/null and b/images/flags/hm.png differ diff --git a/images/flags/hn.png b/images/flags/hn.png new file mode 100644 index 0000000..96f8388 Binary files /dev/null and b/images/flags/hn.png differ diff --git a/images/flags/hr.png b/images/flags/hr.png new file mode 100644 index 0000000..696b515 Binary files /dev/null and b/images/flags/hr.png differ diff --git a/images/flags/ht.png b/images/flags/ht.png new file mode 100644 index 0000000..416052a Binary files /dev/null and b/images/flags/ht.png differ diff --git a/images/flags/hu.png b/images/flags/hu.png new file mode 100644 index 0000000..7baafe4 Binary files /dev/null and b/images/flags/hu.png differ diff --git a/images/flags/id.png b/images/flags/id.png new file mode 100644 index 0000000..c6bc0fa Binary files /dev/null and b/images/flags/id.png differ diff --git a/images/flags/ie.png b/images/flags/ie.png new file mode 100644 index 0000000..26baa31 Binary files /dev/null and b/images/flags/ie.png differ diff --git a/images/flags/il.png b/images/flags/il.png new file mode 100644 index 0000000..2ca772d Binary files /dev/null and b/images/flags/il.png differ diff --git a/images/flags/in.png b/images/flags/in.png new file mode 100644 index 0000000..e4d7e81 Binary files /dev/null and b/images/flags/in.png differ diff --git a/images/flags/index.htm b/images/flags/index.htm new file mode 100644 index 0000000..e0cc5f3 --- /dev/null +++ b/images/flags/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/images/flags/io.png b/images/flags/io.png new file mode 100644 index 0000000..3e74b6a Binary files /dev/null and b/images/flags/io.png differ diff --git a/images/flags/iq.png b/images/flags/iq.png new file mode 100644 index 0000000..878a351 Binary files /dev/null and b/images/flags/iq.png differ diff --git a/images/flags/ir.png b/images/flags/ir.png new file mode 100644 index 0000000..c5fd136 Binary files /dev/null and b/images/flags/ir.png differ diff --git a/images/flags/is.png b/images/flags/is.png new file mode 100644 index 0000000..b8f6d0f Binary files /dev/null and b/images/flags/is.png differ diff --git a/images/flags/it.png b/images/flags/it.png new file mode 100644 index 0000000..89692f7 Binary files /dev/null and b/images/flags/it.png differ diff --git a/images/flags/jm.png b/images/flags/jm.png new file mode 100644 index 0000000..7be119e Binary files /dev/null and b/images/flags/jm.png differ diff --git a/images/flags/jo.png b/images/flags/jo.png new file mode 100644 index 0000000..11bd497 Binary files /dev/null and b/images/flags/jo.png differ diff --git a/images/flags/jp.png b/images/flags/jp.png new file mode 100644 index 0000000..325fbad Binary files /dev/null and b/images/flags/jp.png differ diff --git a/images/flags/ke.png b/images/flags/ke.png new file mode 100644 index 0000000..51879ad Binary files /dev/null and b/images/flags/ke.png differ diff --git a/images/flags/kg.png b/images/flags/kg.png new file mode 100644 index 0000000..0a818f6 Binary files /dev/null and b/images/flags/kg.png differ diff --git a/images/flags/kh.png b/images/flags/kh.png new file mode 100644 index 0000000..30f6bb1 Binary files /dev/null and b/images/flags/kh.png differ diff --git a/images/flags/ki.png b/images/flags/ki.png new file mode 100644 index 0000000..2dcce4b Binary files /dev/null and b/images/flags/ki.png differ diff --git a/images/flags/km.png b/images/flags/km.png new file mode 100644 index 0000000..812b2f5 Binary files /dev/null and b/images/flags/km.png differ diff --git a/images/flags/kn.png b/images/flags/kn.png new file mode 100644 index 0000000..febd5b4 Binary files /dev/null and b/images/flags/kn.png differ diff --git a/images/flags/kp.png b/images/flags/kp.png new file mode 100644 index 0000000..d3d509a Binary files /dev/null and b/images/flags/kp.png differ diff --git a/images/flags/kr.png b/images/flags/kr.png new file mode 100644 index 0000000..9c0a78e Binary files /dev/null and b/images/flags/kr.png differ diff --git a/images/flags/kw.png b/images/flags/kw.png new file mode 100644 index 0000000..96546da Binary files /dev/null and b/images/flags/kw.png differ diff --git a/images/flags/ky.png b/images/flags/ky.png new file mode 100644 index 0000000..15c5f8e Binary files /dev/null and b/images/flags/ky.png differ diff --git a/images/flags/kz.png b/images/flags/kz.png new file mode 100644 index 0000000..45a8c88 Binary files /dev/null and b/images/flags/kz.png differ diff --git a/images/flags/la.png b/images/flags/la.png new file mode 100644 index 0000000..e28acd0 Binary files /dev/null and b/images/flags/la.png differ diff --git a/images/flags/lb.png b/images/flags/lb.png new file mode 100644 index 0000000..d0d452b Binary files /dev/null and b/images/flags/lb.png differ diff --git a/images/flags/lc.png b/images/flags/lc.png new file mode 100644 index 0000000..a47d065 Binary files /dev/null and b/images/flags/lc.png differ diff --git a/images/flags/li.png b/images/flags/li.png new file mode 100644 index 0000000..6469909 Binary files /dev/null and b/images/flags/li.png differ diff --git a/images/flags/lk.png b/images/flags/lk.png new file mode 100644 index 0000000..088aad6 Binary files /dev/null and b/images/flags/lk.png differ diff --git a/images/flags/lr.png b/images/flags/lr.png new file mode 100644 index 0000000..89a5bc7 Binary files /dev/null and b/images/flags/lr.png differ diff --git a/images/flags/ls.png b/images/flags/ls.png new file mode 100644 index 0000000..33fdef1 Binary files /dev/null and b/images/flags/ls.png differ diff --git a/images/flags/lt.png b/images/flags/lt.png new file mode 100644 index 0000000..c8ef0da Binary files /dev/null and b/images/flags/lt.png differ diff --git a/images/flags/lu.png b/images/flags/lu.png new file mode 100644 index 0000000..4cabba9 Binary files /dev/null and b/images/flags/lu.png differ diff --git a/images/flags/lv.png b/images/flags/lv.png new file mode 100644 index 0000000..49b6998 Binary files /dev/null and b/images/flags/lv.png differ diff --git a/images/flags/ly.png b/images/flags/ly.png new file mode 100644 index 0000000..b163a9f Binary files /dev/null and b/images/flags/ly.png differ diff --git a/images/flags/ma.png b/images/flags/ma.png new file mode 100644 index 0000000..f386770 Binary files /dev/null and b/images/flags/ma.png differ diff --git a/images/flags/mc.png b/images/flags/mc.png new file mode 100644 index 0000000..1aa830f Binary files /dev/null and b/images/flags/mc.png differ diff --git a/images/flags/md.png b/images/flags/md.png new file mode 100644 index 0000000..4e92c18 Binary files /dev/null and b/images/flags/md.png differ diff --git a/images/flags/me.png b/images/flags/me.png new file mode 100644 index 0000000..ac72535 Binary files /dev/null and b/images/flags/me.png differ diff --git a/images/flags/mg.png b/images/flags/mg.png new file mode 100644 index 0000000..d2715b3 Binary files /dev/null and b/images/flags/mg.png differ diff --git a/images/flags/mh.png b/images/flags/mh.png new file mode 100644 index 0000000..fb523a8 Binary files /dev/null and b/images/flags/mh.png differ diff --git a/images/flags/mk.png b/images/flags/mk.png new file mode 100644 index 0000000..db173aa Binary files /dev/null and b/images/flags/mk.png differ diff --git a/images/flags/ml.png b/images/flags/ml.png new file mode 100644 index 0000000..2cec8ba Binary files /dev/null and b/images/flags/ml.png differ diff --git a/images/flags/mm.png b/images/flags/mm.png new file mode 100644 index 0000000..f464f67 Binary files /dev/null and b/images/flags/mm.png differ diff --git a/images/flags/mn.png b/images/flags/mn.png new file mode 100644 index 0000000..9396355 Binary files /dev/null and b/images/flags/mn.png differ diff --git a/images/flags/mo.png b/images/flags/mo.png new file mode 100644 index 0000000..deb801d Binary files /dev/null and b/images/flags/mo.png differ diff --git a/images/flags/mp.png b/images/flags/mp.png new file mode 100644 index 0000000..298d588 Binary files /dev/null and b/images/flags/mp.png differ diff --git a/images/flags/mq.png b/images/flags/mq.png new file mode 100644 index 0000000..010143b Binary files /dev/null and b/images/flags/mq.png differ diff --git a/images/flags/mr.png b/images/flags/mr.png new file mode 100644 index 0000000..319546b Binary files /dev/null and b/images/flags/mr.png differ diff --git a/images/flags/ms.png b/images/flags/ms.png new file mode 100644 index 0000000..d4cbb43 Binary files /dev/null and b/images/flags/ms.png differ diff --git a/images/flags/mt.png b/images/flags/mt.png new file mode 100644 index 0000000..00af948 Binary files /dev/null and b/images/flags/mt.png differ diff --git a/images/flags/mu.png b/images/flags/mu.png new file mode 100644 index 0000000..b7fdce1 Binary files /dev/null and b/images/flags/mu.png differ diff --git a/images/flags/mv.png b/images/flags/mv.png new file mode 100644 index 0000000..5073d9e Binary files /dev/null and b/images/flags/mv.png differ diff --git a/images/flags/mw.png b/images/flags/mw.png new file mode 100644 index 0000000..13886e9 Binary files /dev/null and b/images/flags/mw.png differ diff --git a/images/flags/mx.png b/images/flags/mx.png new file mode 100644 index 0000000..5bc58ab Binary files /dev/null and b/images/flags/mx.png differ diff --git a/images/flags/my.png b/images/flags/my.png new file mode 100644 index 0000000..9034cba Binary files /dev/null and b/images/flags/my.png differ diff --git a/images/flags/mz.png b/images/flags/mz.png new file mode 100644 index 0000000..76405e0 Binary files /dev/null and b/images/flags/mz.png differ diff --git a/images/flags/na.png b/images/flags/na.png new file mode 100644 index 0000000..63358c6 Binary files /dev/null and b/images/flags/na.png differ diff --git a/images/flags/nc.png b/images/flags/nc.png new file mode 100644 index 0000000..2cad283 Binary files /dev/null and b/images/flags/nc.png differ diff --git a/images/flags/ne.png b/images/flags/ne.png new file mode 100644 index 0000000..d85f424 Binary files /dev/null and b/images/flags/ne.png differ diff --git a/images/flags/nf.png b/images/flags/nf.png new file mode 100644 index 0000000..f9bcdda Binary files /dev/null and b/images/flags/nf.png differ diff --git a/images/flags/ng.png b/images/flags/ng.png new file mode 100644 index 0000000..3eea2e0 Binary files /dev/null and b/images/flags/ng.png differ diff --git a/images/flags/ni.png b/images/flags/ni.png new file mode 100644 index 0000000..3969aaa Binary files /dev/null and b/images/flags/ni.png differ diff --git a/images/flags/nl.png b/images/flags/nl.png new file mode 100644 index 0000000..fe44791 Binary files /dev/null and b/images/flags/nl.png differ diff --git a/images/flags/no.png b/images/flags/no.png new file mode 100644 index 0000000..160b6b5 Binary files /dev/null and b/images/flags/no.png differ diff --git a/images/flags/np.png b/images/flags/np.png new file mode 100644 index 0000000..aeb058b Binary files /dev/null and b/images/flags/np.png differ diff --git a/images/flags/nr.png b/images/flags/nr.png new file mode 100644 index 0000000..705fc33 Binary files /dev/null and b/images/flags/nr.png differ diff --git a/images/flags/nu.png b/images/flags/nu.png new file mode 100644 index 0000000..c3ce4ae Binary files /dev/null and b/images/flags/nu.png differ diff --git a/images/flags/nz.png b/images/flags/nz.png new file mode 100644 index 0000000..10d6306 Binary files /dev/null and b/images/flags/nz.png differ diff --git a/images/flags/om.png b/images/flags/om.png new file mode 100644 index 0000000..2ffba7e Binary files /dev/null and b/images/flags/om.png differ diff --git a/images/flags/pa.png b/images/flags/pa.png new file mode 100644 index 0000000..9b2ee9a Binary files /dev/null and b/images/flags/pa.png differ diff --git a/images/flags/pe.png b/images/flags/pe.png new file mode 100644 index 0000000..62a0497 Binary files /dev/null and b/images/flags/pe.png differ diff --git a/images/flags/pf.png b/images/flags/pf.png new file mode 100644 index 0000000..771a0f6 Binary files /dev/null and b/images/flags/pf.png differ diff --git a/images/flags/pg.png b/images/flags/pg.png new file mode 100644 index 0000000..10d6233 Binary files /dev/null and b/images/flags/pg.png differ diff --git a/images/flags/ph.png b/images/flags/ph.png new file mode 100644 index 0000000..b89e159 Binary files /dev/null and b/images/flags/ph.png differ diff --git a/images/flags/pk.png b/images/flags/pk.png new file mode 100644 index 0000000..e9df70c Binary files /dev/null and b/images/flags/pk.png differ diff --git a/images/flags/pl.png b/images/flags/pl.png new file mode 100644 index 0000000..d413d01 Binary files /dev/null and b/images/flags/pl.png differ diff --git a/images/flags/pm.png b/images/flags/pm.png new file mode 100644 index 0000000..ba91d2c Binary files /dev/null and b/images/flags/pm.png differ diff --git a/images/flags/pn.png b/images/flags/pn.png new file mode 100644 index 0000000..aa9344f Binary files /dev/null and b/images/flags/pn.png differ diff --git a/images/flags/pr.png b/images/flags/pr.png new file mode 100644 index 0000000..82d9130 Binary files /dev/null and b/images/flags/pr.png differ diff --git a/images/flags/ps.png b/images/flags/ps.png new file mode 100644 index 0000000..f5f5477 Binary files /dev/null and b/images/flags/ps.png differ diff --git a/images/flags/pt.png b/images/flags/pt.png new file mode 100644 index 0000000..ece7980 Binary files /dev/null and b/images/flags/pt.png differ diff --git a/images/flags/pw.png b/images/flags/pw.png new file mode 100644 index 0000000..6178b25 Binary files /dev/null and b/images/flags/pw.png differ diff --git a/images/flags/py.png b/images/flags/py.png new file mode 100644 index 0000000..cb8723c Binary files /dev/null and b/images/flags/py.png differ diff --git a/images/flags/qa.png b/images/flags/qa.png new file mode 100644 index 0000000..ed4c621 Binary files /dev/null and b/images/flags/qa.png differ diff --git a/images/flags/re.png b/images/flags/re.png new file mode 100644 index 0000000..8332c4e Binary files /dev/null and b/images/flags/re.png differ diff --git a/images/flags/ro.png b/images/flags/ro.png new file mode 100644 index 0000000..57e74a6 Binary files /dev/null and b/images/flags/ro.png differ diff --git a/images/flags/rs.png b/images/flags/rs.png new file mode 100644 index 0000000..9439a5b Binary files /dev/null and b/images/flags/rs.png differ diff --git a/images/flags/ru.png b/images/flags/ru.png new file mode 100644 index 0000000..47da421 Binary files /dev/null and b/images/flags/ru.png differ diff --git a/images/flags/rw.png b/images/flags/rw.png new file mode 100644 index 0000000..5356491 Binary files /dev/null and b/images/flags/rw.png differ diff --git a/images/flags/sa.png b/images/flags/sa.png new file mode 100644 index 0000000..b4641c7 Binary files /dev/null and b/images/flags/sa.png differ diff --git a/images/flags/sb.png b/images/flags/sb.png new file mode 100644 index 0000000..a9937cc Binary files /dev/null and b/images/flags/sb.png differ diff --git a/images/flags/sc.png b/images/flags/sc.png new file mode 100644 index 0000000..39ee371 Binary files /dev/null and b/images/flags/sc.png differ diff --git a/images/flags/scotland.png b/images/flags/scotland.png new file mode 100644 index 0000000..a0e57b4 Binary files /dev/null and b/images/flags/scotland.png differ diff --git a/images/flags/sd.png b/images/flags/sd.png new file mode 100644 index 0000000..eaab69e Binary files /dev/null and b/images/flags/sd.png differ diff --git a/images/flags/se.png b/images/flags/se.png new file mode 100644 index 0000000..1994653 Binary files /dev/null and b/images/flags/se.png differ diff --git a/images/flags/sg.png b/images/flags/sg.png new file mode 100644 index 0000000..dd34d61 Binary files /dev/null and b/images/flags/sg.png differ diff --git a/images/flags/sh.png b/images/flags/sh.png new file mode 100644 index 0000000..4b1d2a2 Binary files /dev/null and b/images/flags/sh.png differ diff --git a/images/flags/si.png b/images/flags/si.png new file mode 100644 index 0000000..bb1476f Binary files /dev/null and b/images/flags/si.png differ diff --git a/images/flags/sj.png b/images/flags/sj.png new file mode 100644 index 0000000..160b6b5 Binary files /dev/null and b/images/flags/sj.png differ diff --git a/images/flags/sk.png b/images/flags/sk.png new file mode 100644 index 0000000..7ccbc82 Binary files /dev/null and b/images/flags/sk.png differ diff --git a/images/flags/sl.png b/images/flags/sl.png new file mode 100644 index 0000000..12d812d Binary files /dev/null and b/images/flags/sl.png differ diff --git a/images/flags/sm.png b/images/flags/sm.png new file mode 100644 index 0000000..3df2fdc Binary files /dev/null and b/images/flags/sm.png differ diff --git a/images/flags/sn.png b/images/flags/sn.png new file mode 100644 index 0000000..eabb71d Binary files /dev/null and b/images/flags/sn.png differ diff --git a/images/flags/so.png b/images/flags/so.png new file mode 100644 index 0000000..4a1ea4b Binary files /dev/null and b/images/flags/so.png differ diff --git a/images/flags/sr.png b/images/flags/sr.png new file mode 100644 index 0000000..5eff927 Binary files /dev/null and b/images/flags/sr.png differ diff --git a/images/flags/st.png b/images/flags/st.png new file mode 100644 index 0000000..2978557 Binary files /dev/null and b/images/flags/st.png differ diff --git a/images/flags/sv.png b/images/flags/sv.png new file mode 100644 index 0000000..2498799 Binary files /dev/null and b/images/flags/sv.png differ diff --git a/images/flags/sy.png b/images/flags/sy.png new file mode 100644 index 0000000..f5ce30d Binary files /dev/null and b/images/flags/sy.png differ diff --git a/images/flags/sz.png b/images/flags/sz.png new file mode 100644 index 0000000..914ee86 Binary files /dev/null and b/images/flags/sz.png differ diff --git a/images/flags/tc.png b/images/flags/tc.png new file mode 100644 index 0000000..8fc1156 Binary files /dev/null and b/images/flags/tc.png differ diff --git a/images/flags/td.png b/images/flags/td.png new file mode 100644 index 0000000..667f21f Binary files /dev/null and b/images/flags/td.png differ diff --git a/images/flags/tf.png b/images/flags/tf.png new file mode 100644 index 0000000..80529a4 Binary files /dev/null and b/images/flags/tf.png differ diff --git a/images/flags/tg.png b/images/flags/tg.png new file mode 100644 index 0000000..3aa00ad Binary files /dev/null and b/images/flags/tg.png differ diff --git a/images/flags/th.png b/images/flags/th.png new file mode 100644 index 0000000..dd8ba91 Binary files /dev/null and b/images/flags/th.png differ diff --git a/images/flags/tj.png b/images/flags/tj.png new file mode 100644 index 0000000..617bf64 Binary files /dev/null and b/images/flags/tj.png differ diff --git a/images/flags/tk.png b/images/flags/tk.png new file mode 100644 index 0000000..67b8c8c Binary files /dev/null and b/images/flags/tk.png differ diff --git a/images/flags/tl.png b/images/flags/tl.png new file mode 100644 index 0000000..77da181 Binary files /dev/null and b/images/flags/tl.png differ diff --git a/images/flags/tm.png b/images/flags/tm.png new file mode 100644 index 0000000..828020e Binary files /dev/null and b/images/flags/tm.png differ diff --git a/images/flags/tn.png b/images/flags/tn.png new file mode 100644 index 0000000..183cdd3 Binary files /dev/null and b/images/flags/tn.png differ diff --git a/images/flags/to.png b/images/flags/to.png new file mode 100644 index 0000000..f89b8ba Binary files /dev/null and b/images/flags/to.png differ diff --git a/images/flags/tr.png b/images/flags/tr.png new file mode 100644 index 0000000..be32f77 Binary files /dev/null and b/images/flags/tr.png differ diff --git a/images/flags/tt.png b/images/flags/tt.png new file mode 100644 index 0000000..2a11c1e Binary files /dev/null and b/images/flags/tt.png differ diff --git a/images/flags/tv.png b/images/flags/tv.png new file mode 100644 index 0000000..28274c5 Binary files /dev/null and b/images/flags/tv.png differ diff --git a/images/flags/tw.png b/images/flags/tw.png new file mode 100644 index 0000000..f31c654 Binary files /dev/null and b/images/flags/tw.png differ diff --git a/images/flags/tz.png b/images/flags/tz.png new file mode 100644 index 0000000..c00ff79 Binary files /dev/null and b/images/flags/tz.png differ diff --git a/images/flags/ua.png b/images/flags/ua.png new file mode 100644 index 0000000..09563a2 Binary files /dev/null and b/images/flags/ua.png differ diff --git a/images/flags/ug.png b/images/flags/ug.png new file mode 100644 index 0000000..33f4aff Binary files /dev/null and b/images/flags/ug.png differ diff --git a/images/flags/um.png b/images/flags/um.png new file mode 100644 index 0000000..c1dd965 Binary files /dev/null and b/images/flags/um.png differ diff --git a/images/flags/us.png b/images/flags/us.png new file mode 100644 index 0000000..10f451f Binary files /dev/null and b/images/flags/us.png differ diff --git a/images/flags/uy.png b/images/flags/uy.png new file mode 100644 index 0000000..31d948a Binary files /dev/null and b/images/flags/uy.png differ diff --git a/images/flags/uz.png b/images/flags/uz.png new file mode 100644 index 0000000..fef5dc1 Binary files /dev/null and b/images/flags/uz.png differ diff --git a/images/flags/va.png b/images/flags/va.png new file mode 100644 index 0000000..b31eaf2 Binary files /dev/null and b/images/flags/va.png differ diff --git a/images/flags/vc.png b/images/flags/vc.png new file mode 100644 index 0000000..8fa17b0 Binary files /dev/null and b/images/flags/vc.png differ diff --git a/images/flags/ve.png b/images/flags/ve.png new file mode 100644 index 0000000..00c90f9 Binary files /dev/null and b/images/flags/ve.png differ diff --git a/images/flags/vg.png b/images/flags/vg.png new file mode 100644 index 0000000..4156907 Binary files /dev/null and b/images/flags/vg.png differ diff --git a/images/flags/vi.png b/images/flags/vi.png new file mode 100644 index 0000000..ed26915 Binary files /dev/null and b/images/flags/vi.png differ diff --git a/images/flags/vn.png b/images/flags/vn.png new file mode 100644 index 0000000..ec7cd48 Binary files /dev/null and b/images/flags/vn.png differ diff --git a/images/flags/vu.png b/images/flags/vu.png new file mode 100644 index 0000000..b3397bc Binary files /dev/null and b/images/flags/vu.png differ diff --git a/images/flags/wales.png b/images/flags/wales.png new file mode 100644 index 0000000..e0d7cee Binary files /dev/null and b/images/flags/wales.png differ diff --git a/images/flags/wf.png b/images/flags/wf.png new file mode 100644 index 0000000..9f95587 Binary files /dev/null and b/images/flags/wf.png differ diff --git a/images/flags/worldwide.png b/images/flags/worldwide.png new file mode 100644 index 0000000..82888af Binary files /dev/null and b/images/flags/worldwide.png differ diff --git a/images/flags/ws.png b/images/flags/ws.png new file mode 100644 index 0000000..c169508 Binary files /dev/null and b/images/flags/ws.png differ diff --git a/images/flags/ye.png b/images/flags/ye.png new file mode 100644 index 0000000..468dfad Binary files /dev/null and b/images/flags/ye.png differ diff --git a/images/flags/yt.png b/images/flags/yt.png new file mode 100644 index 0000000..c298f37 Binary files /dev/null and b/images/flags/yt.png differ diff --git a/images/flags/za.png b/images/flags/za.png new file mode 100644 index 0000000..57c58e2 Binary files /dev/null and b/images/flags/za.png differ diff --git a/images/flags/zm.png b/images/flags/zm.png new file mode 100644 index 0000000..c25b07b Binary files /dev/null and b/images/flags/zm.png differ diff --git a/images/flags/zw.png b/images/flags/zw.png new file mode 100644 index 0000000..53c9725 Binary files /dev/null and b/images/flags/zw.png differ diff --git a/images/goto.png b/images/goto.png new file mode 100644 index 0000000..e4e9e0e Binary files /dev/null and b/images/goto.png differ diff --git a/images/home.png b/images/home.png new file mode 100644 index 0000000..5b6c86f Binary files /dev/null and b/images/home.png differ diff --git a/images/icon_add.png b/images/icon_add.png new file mode 100644 index 0000000..b3fae98 Binary files /dev/null and b/images/icon_add.png differ diff --git a/images/icon_back.png b/images/icon_back.png new file mode 100644 index 0000000..93c5686 Binary files /dev/null and b/images/icon_back.png differ diff --git a/images/icon_error.png b/images/icon_error.png new file mode 100644 index 0000000..0168ec1 Binary files /dev/null and b/images/icon_error.png differ diff --git a/images/icon_facebook.png b/images/icon_facebook.png new file mode 100644 index 0000000..8f60d2d Binary files /dev/null and b/images/icon_facebook.png differ diff --git a/images/icon_hide.png b/images/icon_hide.png new file mode 100644 index 0000000..5b8bb3e Binary files /dev/null and b/images/icon_hide.png differ diff --git a/images/icon_home.png b/images/icon_home.png new file mode 100644 index 0000000..b307754 Binary files /dev/null and b/images/icon_home.png differ diff --git a/images/icon_info.png b/images/icon_info.png new file mode 100644 index 0000000..5d8a869 Binary files /dev/null and b/images/icon_info.png differ diff --git a/images/icon_maintenance.png b/images/icon_maintenance.png new file mode 100644 index 0000000..250ff41 Binary files /dev/null and b/images/icon_maintenance.png differ diff --git a/images/icon_message.png b/images/icon_message.png new file mode 100644 index 0000000..87571de Binary files /dev/null and b/images/icon_message.png differ diff --git a/images/icon_more.png b/images/icon_more.png new file mode 100644 index 0000000..0c749db Binary files /dev/null and b/images/icon_more.png differ diff --git a/images/icon_paypal.png b/images/icon_paypal.png new file mode 100644 index 0000000..141f145 Binary files /dev/null and b/images/icon_paypal.png differ diff --git a/images/icon_refresh.png b/images/icon_refresh.png new file mode 100644 index 0000000..4ee76aa Binary files /dev/null and b/images/icon_refresh.png differ diff --git a/images/icon_reply.png b/images/icon_reply.png new file mode 100644 index 0000000..8d9589b Binary files /dev/null and b/images/icon_reply.png differ diff --git a/images/icon_report.png b/images/icon_report.png new file mode 100644 index 0000000..e8a602d Binary files /dev/null and b/images/icon_report.png differ diff --git a/images/icon_rss.png b/images/icon_rss.png new file mode 100644 index 0000000..75fe13c Binary files /dev/null and b/images/icon_rss.png differ diff --git a/images/icon_support.png b/images/icon_support.png new file mode 100644 index 0000000..24cabcd Binary files /dev/null and b/images/icon_support.png differ diff --git a/images/icon_top.png b/images/icon_top.png new file mode 100644 index 0000000..8ec2d6b Binary files /dev/null and b/images/icon_top.png differ diff --git a/images/icon_twitter.png b/images/icon_twitter.png new file mode 100644 index 0000000..42af69e Binary files /dev/null and b/images/icon_twitter.png differ diff --git a/images/icon_user.png b/images/icon_user.png new file mode 100644 index 0000000..c4b84e2 Binary files /dev/null and b/images/icon_user.png differ diff --git a/images/icon_view.png b/images/icon_view.png new file mode 100644 index 0000000..7a7527f Binary files /dev/null and b/images/icon_view.png differ diff --git a/images/icons/.DS_Store b/images/icons/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/images/icons/.DS_Store differ diff --git a/images/icons/1.png b/images/icons/1.png new file mode 100644 index 0000000..ed87efb Binary files /dev/null and b/images/icons/1.png differ diff --git a/images/icons/2.png b/images/icons/2.png new file mode 100644 index 0000000..31a45ce Binary files /dev/null and b/images/icons/2.png differ diff --git a/images/icons/3.png b/images/icons/3.png new file mode 100644 index 0000000..1e833cf Binary files /dev/null and b/images/icons/3.png differ diff --git a/images/icons/4.png b/images/icons/4.png new file mode 100644 index 0000000..b0429fd Binary files /dev/null and b/images/icons/4.png differ diff --git a/images/icons/5.png b/images/icons/5.png new file mode 100644 index 0000000..9d3c66a Binary files /dev/null and b/images/icons/5.png differ diff --git a/images/icons/admin.png b/images/icons/admin.png new file mode 100644 index 0000000..ff7369c Binary files /dev/null and b/images/icons/admin.png differ diff --git a/images/icons/index.htm b/images/icons/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/images/icons/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/images/icons/rating-0.png b/images/icons/rating-0.png new file mode 100644 index 0000000..33016ed Binary files /dev/null and b/images/icons/rating-0.png differ diff --git a/images/icons/rating-1.png b/images/icons/rating-1.png new file mode 100644 index 0000000..91d0fe8 Binary files /dev/null and b/images/icons/rating-1.png differ diff --git a/images/icons/rating-2.png b/images/icons/rating-2.png new file mode 100644 index 0000000..a845ce8 Binary files /dev/null and b/images/icons/rating-2.png differ diff --git a/images/icons/rating-3.png b/images/icons/rating-3.png new file mode 100644 index 0000000..3d98c3c Binary files /dev/null and b/images/icons/rating-3.png differ diff --git a/images/icons/rating-4.png b/images/icons/rating-4.png new file mode 100644 index 0000000..eb66966 Binary files /dev/null and b/images/icons/rating-4.png differ diff --git a/images/icons/rating-5.png b/images/icons/rating-5.png new file mode 100644 index 0000000..28ba10d Binary files /dev/null and b/images/icons/rating-5.png differ diff --git a/images/icons/star.png b/images/icons/star.png new file mode 100644 index 0000000..5e2bc7e Binary files /dev/null and b/images/icons/star.png differ diff --git a/images/icons/status-active.png b/images/icons/status-active.png new file mode 100644 index 0000000..d4b119d Binary files /dev/null and b/images/icons/status-active.png differ diff --git a/images/icons/status-confirmed.png b/images/icons/status-confirmed.png new file mode 100644 index 0000000..4a2bd42 Binary files /dev/null and b/images/icons/status-confirmed.png differ diff --git a/images/icons/status-declined.png b/images/icons/status-declined.png new file mode 100644 index 0000000..1514d51 Binary files /dev/null and b/images/icons/status-declined.png differ diff --git a/images/icons/status-failed.png b/images/icons/status-failed.png new file mode 100644 index 0000000..f6bc8e2 Binary files /dev/null and b/images/icons/status-failed.png differ diff --git a/images/icons/status-inactive.png b/images/icons/status-inactive.png new file mode 100644 index 0000000..2860ae9 Binary files /dev/null and b/images/icons/status-inactive.png differ diff --git a/images/icons/status-paid.png b/images/icons/status-paid.png new file mode 100644 index 0000000..fd1fbd6 Binary files /dev/null and b/images/icons/status-paid.png differ diff --git a/images/icons/status-pending.png b/images/icons/status-pending.png new file mode 100644 index 0000000..6c4a275 Binary files /dev/null and b/images/icons/status-pending.png differ diff --git a/images/icons/status-request.png b/images/icons/status-request.png new file mode 100644 index 0000000..cf6e591 Binary files /dev/null and b/images/icons/status-request.png differ diff --git a/images/icons/user.png b/images/icons/user.png new file mode 100644 index 0000000..fa56e60 Binary files /dev/null and b/images/icons/user.png differ diff --git a/images/index.htm b/images/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/images/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/images/info.png b/images/info.png new file mode 100644 index 0000000..75de6e3 Binary files /dev/null and b/images/info.png differ diff --git a/images/input_bg.png b/images/input_bg.png new file mode 100644 index 0000000..81ffdc1 Binary files /dev/null and b/images/input_bg.png differ diff --git a/images/line.gif b/images/line.gif new file mode 100644 index 0000000..0b9270d Binary files /dev/null and b/images/line.gif differ diff --git a/images/list.png b/images/list.png new file mode 100644 index 0000000..3dda1b8 Binary files /dev/null and b/images/list.png differ diff --git a/images/list2.png b/images/list2.png new file mode 100644 index 0000000..be9cd19 Binary files /dev/null and b/images/list2.png differ diff --git a/images/loading.gif b/images/loading.gif new file mode 100644 index 0000000..5087c2a Binary files /dev/null and b/images/loading.gif differ diff --git a/images/loading2.gif b/images/loading2.gif new file mode 100644 index 0000000..3fa42ce Binary files /dev/null and b/images/loading2.gif differ diff --git a/images/loading_line.gif b/images/loading_line.gif new file mode 100644 index 0000000..f9c39ea Binary files /dev/null and b/images/loading_line.gif differ diff --git a/images/logo.png b/images/logo.png new file mode 100644 index 0000000..35db9eb Binary files /dev/null and b/images/logo.png differ diff --git a/images/money.png b/images/money.png new file mode 100644 index 0000000..9652271 Binary files /dev/null and b/images/money.png differ diff --git a/images/next.png b/images/next.png new file mode 100644 index 0000000..08365ac Binary files /dev/null and b/images/next.png differ diff --git a/images/prev.png b/images/prev.png new file mode 100644 index 0000000..329fa98 Binary files /dev/null and b/images/prev.png differ diff --git a/images/px.gif b/images/px.gif new file mode 100644 index 0000000..3f95817 Binary files /dev/null and b/images/px.gif differ diff --git a/images/rating_stars.png b/images/rating_stars.png new file mode 100644 index 0000000..56c7cd0 Binary files /dev/null and b/images/rating_stars.png differ diff --git a/images/rating_stars_full.png b/images/rating_stars_full.png new file mode 100644 index 0000000..728c6dd Binary files /dev/null and b/images/rating_stars_full.png differ diff --git a/images/refer_friend.png b/images/refer_friend.png new file mode 100644 index 0000000..f6f3d69 Binary files /dev/null and b/images/refer_friend.png differ diff --git a/images/referral_icon.png b/images/referral_icon.png new file mode 100644 index 0000000..cd5ef76 Binary files /dev/null and b/images/referral_icon.png differ diff --git a/images/report.png b/images/report.png new file mode 100644 index 0000000..b892325 Binary files /dev/null and b/images/report.png differ diff --git a/images/right_arrow.gif b/images/right_arrow.gif new file mode 100644 index 0000000..54188fa Binary files /dev/null and b/images/right_arrow.gif differ diff --git a/images/rss.png b/images/rss.png new file mode 100644 index 0000000..974fe0f Binary files /dev/null and b/images/rss.png differ diff --git a/images/shadow.gif b/images/shadow.gif new file mode 100644 index 0000000..af7f537 Binary files /dev/null and b/images/shadow.gif differ diff --git a/images/shadow.png b/images/shadow.png new file mode 100644 index 0000000..dc01664 Binary files /dev/null and b/images/shadow.png differ diff --git a/images/spacer.gif b/images/spacer.gif new file mode 100644 index 0000000..75b945d Binary files /dev/null and b/images/spacer.gif differ diff --git a/images/twitter.png b/images/twitter.png new file mode 100644 index 0000000..831e5c4 Binary files /dev/null and b/images/twitter.png differ diff --git a/images/twitter_share.png b/images/twitter_share.png new file mode 100644 index 0000000..fa8dd83 Binary files /dev/null and b/images/twitter_share.png differ diff --git a/images/user.png b/images/user.png new file mode 100644 index 0000000..b3bf122 Binary files /dev/null and b/images/user.png differ diff --git a/img/index.htm b/img/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/img/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/img/noimg.gif b/img/noimg.gif new file mode 100644 index 0000000..b15a0cc Binary files /dev/null and b/img/noimg.gif differ diff --git a/inc/.DS_Store b/inc/.DS_Store new file mode 100644 index 0000000..5e14c92 Binary files /dev/null and b/inc/.DS_Store differ diff --git a/inc/adm_auth.inc.php b/inc/adm_auth.inc.php new file mode 100644 index 0000000..7f11ae1 --- /dev/null +++ b/inc/adm_auth.inc.php @@ -0,0 +1,20 @@ + \ No newline at end of file diff --git a/inc/auth.inc.php b/inc/auth.inc.php new file mode 100644 index 0000000..354712c --- /dev/null +++ b/inc/auth.inc.php @@ -0,0 +1,26 @@ + \ No newline at end of file diff --git a/inc/auth_operator.inc.php b/inc/auth_operator.inc.php new file mode 100644 index 0000000..7e6ec39 --- /dev/null +++ b/inc/auth_operator.inc.php @@ -0,0 +1,20 @@ + \ No newline at end of file diff --git a/inc/config.inc.php b/inc/config.inc.php new file mode 100644 index 0000000..fb36609 --- /dev/null +++ b/inc/config.inc.php @@ -0,0 +1,58 @@ + \ No newline at end of file diff --git a/inc/db.inc.php b/inc/db.inc.php new file mode 100644 index 0000000..0461d1e --- /dev/null +++ b/inc/db.inc.php @@ -0,0 +1,14 @@ + \ No newline at end of file diff --git a/inc/footer.inc.php b/inc/footer.inc.php new file mode 100644 index 0000000..e3dc465 --- /dev/null +++ b/inc/footer.inc.php @@ -0,0 +1,159 @@ + +
+
+ + + + + +
+
+
+
+

+
+
+
+
Working Time: +
+ +
+ + + + +
+ +
+

+
    + +
  • +
  • +
  • +
  • +
  • +
+
+ +
+ + +
Design By DoridroTech
+ + + +
+ +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/inc/functions.inc.php b/inc/functions.inc.php new file mode 100644 index 0000000..8f2d3f4 --- /dev/null +++ b/inc/functions.inc.php @@ -0,0 +1,1531 @@ +query failed: ".mysqli_error($conn)."

"); + if (!$res) { return false; } + return $res; +} + + +/** + * Retrieves parameter from POST array + * @param $name parameter name +*/ + + +function getPostParameter($name) +{ + $data = isset($_POST[$name]) ? $_POST[$name] : null; + if(!is_null($data) && get_magic_quotes_gpc() && is_string($data)) + { + $data = stripslashes($data); + } + $data = trim($data); + $data = htmlentities($data, ENT_QUOTES, 'UTF-8'); + return $data; +} + + +/** + * Retrieves parameter from GET array + * @param $name parameter name +*/ + + +function getGetParameter($name) +{ + return isset($_GET[$name]) ? $_GET[$name] : false; +} + + +/** + * Returns random password + * @param $length length of string + * @return string random password +*/ + +if (!function_exists('generatePassword')) { + function generatePassword($length = 8) + { + $password = ""; + $possible = "0123456789abcdefghijkmnpqrstvwxyzABCDEFGHJKLMNPQRTVWXYZ!(@)"; + $i = 0; + + while ($i < $length) + { + $char = substr($possible, mt_rand(0, strlen($possible)-1), 1); + + if (!strstr($password, $char)) + { + $password .= $char; + $i++; + } + } + return $password; + } +} + + +/** + * Returns random key + * @param $text string + * @return string random key for user verification +*/ + +if (!function_exists('GenerateKey')) { + function GenerateKey($text) + { + $text = preg_replace("/[^0-9a-zA-Z]/", " ", $text); + $text = substr(trim($text), 0, 50); + $key = md5(time().$text.mt_rand(1000,9999)); + return $key; + } +} + + +/** + * Calculate percentage + * @param $amount Amount + * @param $percent Percent value + * @return string returns formated money value +*/ + +if (!function_exists('CalculatePercentage')) { + function CalculatePercentage($amount, $percent) + { + return number_format(($amount/100)*$percent,2,'.',''); + } +} + + +/** + * Returns formated money value + * @param $amount Amount + * @param $hide_currency Hide or Show currency sign + * @param $hide_zeros Show as $5.00 or $5 + * @return string returns formated money value +*/ + +if (!function_exists('DisplayMoney')) { + function DisplayMoney($amount, $hide_currency = 0, $hide_zeros = 0) + { + $newamount = number_format($amount, 2, '.', ''); + + if ($hide_zeros == 1) + { + $cents = substr($newamount, -2); + if ($cents == "00") $newamount = substr($newamount, 0, -3); + } + + if ($hide_currency != 1) + { + switch (SITE_CURRENCY_FORMAT) + { + case "1": $newamount = SITE_CURRENCY.$newamount; break; + case "2": $newamount = SITE_CURRENCY." ".$newamount; break; + case "3": $newamount = SITE_CURRENCY.number_format($amount, 2, ',', ''); break; + case "4": $newamount = $newamount." ".SITE_CURRENCY; break; + case "5": $newamount = $newamount.SITE_CURRENCY; break; + default: $newamount = SITE_CURRENCY.$newamount; break; + } + } + + return $newamount; + } +} + + +/** + * Returns time left + * @return string time left +*/ + +if (!function_exists('GetTimeLeft')) { + function GetTimeLeft($time_left) + { + $days = floor($time_left / (60 * 60 * 24)); + $remainder = $time_left % (60 * 60 * 24); + $hours = floor($remainder / (60 * 60)); + $remainder = $remainder % (60 * 60); + $minutes = floor($remainder / 60); + $seconds = $remainder % 60; + + $days == 1 ? $dw = CBE1_TIMELEFT_DAY : $dw = CBE1_TIMELEFT_DAYS; + $hours == 1 ? $hw = CBE1_TIMELEFT_HOUR : $hw = CBE1_TIMELEFT_HOURS; + $minutes == 1 ? $mw = CBE1_TIMELEFT_MIN : $mw = CBE1_TIMELEFT_MINS; + $seconds == 1 ? $sw = CBE1_TIMELEFT_SECOND : $sw = CBE1_TIMELEFT_SECONDS; + + if ($time_left > 0) + { + //$new_time_left = $days." $dw ".$hours." $hw ".$minutes." $mw"; + $new_time_left = $days." $dw ".$hours." $hw"; + return $new_time_left; + } + else + { + return "".CBE1_TIMELEFT_EXPIRED.""; + } + } +} + + +/** + * Returns member's referrals total + * @param $userid User's ID + * @return string member's referrals total +*/ + +if (!function_exists('GetReferralsTotal')) { + function GetReferralsTotal($userid) + { + $query = "SELECT COUNT(*) AS total FROM exchangerix_users WHERE ref_id='".(int)$userid."'"; + $result = smart_mysql_query($query); + + if (mysqli_num_rows($result) > 0) + { + $row = mysqli_fetch_array($result); + return $row['total']; + } + } +} + + +if (!function_exists('GetUserDiscount')) { + function GetUserDiscount($userid) + { + $query = "SELECT discount FROM exchangerix_users WHERE user_id='".(int)$userid."'"; + $result = smart_mysql_query($query); + + if (mysqli_num_rows($result) > 0) + { + $row = mysqli_fetch_array($result); + return $row['discount']; + } + return "0"; + } +} + + + +/** + * Returns member's current balance + * @param $userid User's ID + * @param $hide_currency_option Hide or show currency sign + * @return string member's current balance +*/ + +if (!function_exists('GetUserBalance')) { + function GetUserBalance($userid, $hide_currency_option = 0) + { + $query = "SELECT SUM(amount) AS total FROM exchangerix_transactions WHERE user_id='".(int)$userid."' AND status='confirmed'"; + $result = smart_mysql_query($query); + + if (mysqli_num_rows($result) != 0) + { + $row_confirmed = mysqli_fetch_array($result); + + if ($row_confirmed['total'] > 0) + { + $row_paid = mysqli_fetch_array(smart_mysql_query("SELECT SUM(amount) AS total FROM exchangerix_transactions WHERE user_id='".(int)$userid."' AND ((status='paid' OR status='request') OR (payment_type='Withdrawal' AND status='declined'))")); + + $balance = $row_confirmed['total'] - $row_paid['total']; + + return DisplayMoney($balance, $hide_currency_option); + } + else + { + return DisplayMoney(0, $hide_currency_option); + } + + } + else + { + return DisplayMoney("0.00", $hide_currecy_option); + } + } +} + + +/** + * Add/Deduct money from member's balance + * @param $userid User's ID + * @param $amount Amount + * @param $action Action +*/ + +if (!function_exists('UpdateUserBalance')) { + function UpdateUserBalance($userid, $amount, $action) + { + $userid = (int)$userid; + + if ($action == "add") + { + smart_mysql_query("INSERT INTO exchangerix_transactions SET user_id='$userid', amount='$amount', status='confirmed'"); + } + elseif ($action == "deduct") + { + smart_mysql_query("INSERT INTO exchangerix_transactions SET user_id='$userid', amount='$amount', status='deducted'"); + } + } +} + + +/** + * Returns total of new member's messages from administrator + * @return integer total of new messages for member from administrator +*/ + +if (!function_exists('GetMemberMessagesTotal')) { + function GetMemberMessagesTotal() + { + $userid = $_SESSION['userid']; + $result = smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_messages_answers WHERE user_id='".(int)$userid."' AND is_admin='1' AND viewed='0'"); + $row = mysqli_fetch_array($result); + + if ($row['total'] == 0) + { + $result = smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_messages WHERE user_id='".(int)$userid."' AND is_admin='1' AND viewed='0'"); + $row = mysqli_fetch_array($result); + } + return (int)$row['total']; + } +} + + +/** + * Returns payment method name by payment method ID + * @return string payment method name +*/ + +if (!function_exists('GetPaymentMethodByID')) { + function GetPaymentMethodByID($pmethod_id) + { + $result = smart_mysql_query("SELECT pmethod_title FROM exchangerix_pmethods WHERE pmethod_id='".(int)$pmethod_id."' LIMIT 1"); + $total = mysqli_num_rows($result); + + if ($total > 0) + { + $row = mysqli_fetch_array($result); + return $row['pmethod_title']; + } + else + { + return "Unknown"; + } + } +} + + +/** + * Returns random string + * @param $len string length + * @param $chars chars in the string + * @return string random string +*/ + +if (!function_exists('GenerateRandString')) { + function GenerateRandString($len, $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789') + { + $string = ''; + for ($i = 0; $i < $len; $i++) + { + $pos = rand(0, strlen($chars)-1); + $string .= $chars{$pos}; + } + return $string; + } +} + + +/** + * Returns payment reference ID + * @return string Reference ID +*/ + +if (!function_exists('GenerateReferenceID')) { + function GenerateReferenceID() + { + unset($num); + + $num = GenerateRandString(9,"0123456789"); + + $check = smart_mysql_query("SELECT * FROM exchangerix_transactions WHERE reference_id='$num'"); + + if (mysqli_num_rows($check) == 0 && $num[0] != '0') + { + return $num; + } + else + { + return GenerateReferenceID(); + } + } +} + + +/** + * Returns Encrypted password + * @param $password User's ID + * @return string encrypted password +*/ + +if (!function_exists('PasswordEncryption')) { + function PasswordEncryption($password) + { + return md5(sha1($password)); + } +} + + +/** + * Check user login + * @return boolen false or true +*/ + +function CheckCookieLogin() +{ + global $conn; + + $uname = mysqli_real_escape_string($conn, $_COOKIE['usname']); + + if (!empty($uname)) + { + $check_query = "SELECT * FROM exchangerix_users WHERE login_session='$uname' LIMIT 1"; + $check_result = smart_mysql_query($check_query); + + if (mysqli_num_rows($check_result) > 0) + { + $row = mysqli_fetch_array($check_result); + + $_SESSION['userid'] = $row['user_id']; + $_SESSION['FirstName'] = $row['fname']; + + setcookie("usname", $uname, time()+3600*24*365, '/'); + + return true; + } + else + { + return false; + } + } + else + { + return false; + } +} + + +/** + * Saves referral's ID in cookies + * @param $ref_id Referrals's ID +*/ + +if (!function_exists('setReferral')) { + function setReferral($ref_id) + { + //set up cookie for one month period + setcookie("referer_id", $ref_id, time()+(60*60*24*30), '/'); + } +} + + +/** + * Check if user logged in + * @return boolen false or true +*/ + +if (!function_exists('isLoggedIn')) { + function isLoggedIn() + { + if (!(isset($_SESSION['userid']) && is_numeric($_SESSION['userid']))) + return false; + else + return true; + } +} + + +/** + * Returns user's information + * @param $user_id User ID + * @return string user name, or "User not found" +*/ + +if (!function_exists('GetUsername')) { + function GetUsername($user_id, $hide_lastname = 0) + { + if ($user_id == 0) return "Visitor"; + + $result = smart_mysql_query("SELECT * FROM exchangerix_users WHERE user_id='".(int)$user_id."' LIMIT 1"); + + if (mysqli_num_rows($result) != 0) + { + $row = mysqli_fetch_array($result); + if ($hide_lastname == 1) + return $row['fname']." ".substr($row['lname'], 0, 1)."."; + else + return $row['fname']." ".$row['lname']; + } + else + { + return "User not found"; + } + } +} + +//$from USD +//$to BTC +//https://min-api.cryptocompare.com/data/price?fsym=BTC&tsyms=USD,EUR +//https://www.cryptocompare.com/api/#public-api-invocation +function exchagerix_update_rate ($from, $to, $margin=0, $exdirection_id=0) +{ + global $conn; + + $fsym = $from; + $tsyms = $to; + + $url = "https://min-api.cryptocompare.com/data/price?fsym=".$fsym."&tsyms=".$tsyms; + $json = json_decode(file_get_contents($url), true); + + if ($json["Response"] != "Error") + { + $json[$tsyms] = strtolower($json[$tsyms]); + if ($json[$tsyms] < 0.01) //if (strstr($json[$tsyms], "e")) die(); + { + $json2 = json_decode(file_get_contents("https://min-api.cryptocompare.com/data/price?fsym=".$tsyms."&tsyms=".$fsym), true); + $from_rate = $json2[$fsym]; + $to_rate = 1; + } + else + { + $from_rate = 1; + $to_rate = floatval($json[$tsyms]); + } + + if ($margin != "" && $margin != 0) + { + if (strstr($margin, "-")) + { + $percent = trim(str_replace("-","",$margin)); + $margin = CalculatePercentage($from_rate, $percent); + $from_rate -= $margin; + } + else + { + $percent = trim($margin); + $margin = CalculatePercentage($from_rate, $percent); + $from_rate += $margin; + } + } + + $from_rate = mysqli_real_escape_string($conn, $from_rate); + $to_rate = mysqli_real_escape_string($conn, $to_rate); + $exchange_rate = $to_rate/$from_rate; + + smart_mysql_query("UPDATE exchangerix_exdirections SET from_rate='$from_rate', to_rate='$to_rate', exchange_rate='$exchange_rate', updated=NOW() WHERE exdirection_id='".(int)$exdirection_id."' LIMIT 1"); + + } + else + { + return false; + } +} + + +/** + * Returns setting value by setting's key + * @param $setting_key Setting's Key + * @return string setting's value +*/ + +if (!function_exists('GetSetting')) { + function GetSetting($setting_key) + { + global $conn; + $setting_key = mysqli_real_escape_string($conn, $setting_key); + $setting_result = smart_mysql_query("SELECT setting_value FROM exchangerix_settings WHERE setting_key='".$setting_key."' LIMIT 1"); + if (mysqli_num_rows($setting_result) > 0) + { + $setting_row = mysqli_fetch_array($setting_result); + $setting_value = $setting_row['setting_value']; + return $setting_value; + } + else + { + die ("config settings not found"); + } + } +} + + +/** + * Returns top menu pages links + * @return string top menu pages links +*/ + +if (!function_exists('ShowTopPages')) { + function ShowTopPages() + { + global $conn; + + $language = mysqli_real_escape_string($conn, USER_LANGUAGE); + $result = smart_mysql_query("SELECT * FROM exchangerix_content WHERE (language='' OR language='$language') AND (page_location='top' OR page_location='topfooter') AND status='active'"); + if (mysqli_num_rows($result) > 0) + { + while ($row = mysqli_fetch_array($result)) + { + echo "
  • ".$row['link_title']."
  • "; + } + } + } +} + + +/** + * Returns footer menu pages links + * @return string footer menu pages links +*/ + +if (!function_exists('ShowFooterPages')) { + function ShowFooterPages() + { + global $conn; + + $language = mysqli_real_escape_string($conn, USER_LANGUAGE); + $result = smart_mysql_query("SELECT * FROM exchangerix_content WHERE (language='' OR language='$language') AND (page_location='footer' OR page_location='topfooter') AND status='active'"); + if (mysqli_num_rows($result) > 0) + { + while ($row = mysqli_fetch_array($result)) + { + echo "".$row['link_title']." | "; + } + } + } +} + + +/** + * Returns content for static pages + * @param $content_name Content's Name or Content ID + * @return array (1) - Page Title, (2) - Page Text +*/ + +if (!function_exists('GetContent')) { + function GetContent($content_name) + { + global $conn; + + $language = mysqli_real_escape_string($conn, USER_LANGUAGE); + + if (is_numeric($content_name)) + { + $content_id = (int)$content_name; + $content_result = smart_mysql_query("SELECT * FROM exchangerix_content WHERE (language='' OR language='$language') AND content_id='".$content_id."' LIMIT 1"); + } + else + { + $content_result = smart_mysql_query("SELECT * FROM exchangerix_content WHERE (language='' OR language='$language') AND name='".$content_name."' LIMIT 1"); + } + + $content_total = mysqli_num_rows($content_result); + + if ($content_total > 0) + { + $content_row = mysqli_fetch_array($content_result); + $contents['link_title'] = stripslashes($content_row['link_title']); + $contents['title'] = stripslashes($content_row['title']); + $contents['text'] = stripslashes($content_row['description']); + $contents['meta_description'] = stripslashes($content_row['meta_description']); + $contents['meta_keywords'] = stripslashes($content_row['meta_keywords']); + } + else + { + $contents['title'] = CBE1_CONTENT_NO; + $contents['text'] = "

    ".CBE1_CONTENT_NO_TEXT."

    ".CBE1_CONTENT_GOBACK."

    "; + } + + return $contents; + } +} + + +/** + * Returns content for email template + * @param $email_name Email Template Name + * @return array (1) - Email Subject, (2) - Email Message +*/ + +if (!function_exists('GetEmailTemplate')) { + function GetEmailTemplate($email_name) + { + global $conn; + + $language = mysqli_real_escape_string($conn, USER_LANGUAGE); + + $etemplate_result = smart_mysql_query("SELECT * FROM exchangerix_email_templates WHERE language='".$language."' AND email_name='".$email_name."' LIMIT 1"); + $etemplate_total = mysqli_num_rows($etemplate_result); + + if ($etemplate_total > 0) + { + $etemplate_row = mysqli_fetch_array($etemplate_result); + $etemplate['email_subject'] = stripslashes($etemplate_row['email_subject']); + $etemplate['email_message'] = stripslashes($etemplate_row['email_message']); + + $etemplate['email_message'] = " + + ".$etemplate['email_subject']." + + + + + + +
    ".$etemplate['email_message']."
    + + "; + } + else + { + //$etemplate['email_subject'] = CBE1_EMAIL_NO_SUBJECT; + die (CBE1_EMAIL_NO_MESSAGE); + } + + return $etemplate; + } +} + + +/** + * Sends email + * @param $recipient Email Recipient John Doe + * @param $subject Email Subject + * @param $message Email Message + * @param $noreply_mail No Reply Email flag + * @param $from FROM headers +*/ + +if (!function_exists('SendEmail')) { + function SendEmail($recipient, $subject, $message, $noreply_mail = 0, $from = "") + { + define('EMAIL_TYPE', 'html'); // html, text + define('EMAIL_CHARSET', 'UTF-8'); + + if ($noreply_mail == 1) $SITE_MAIL = NOREPLY_MAIL; else $SITE_MAIL = SITE_MAIL; + + if (SMTP_MAIL == 1) + { + require_once('phpmailer/PHPMailerAutoload.php'); + + $mail = new PHPMailer(); + + $mail->IsSMTP(); + $mail->CharSet = EMAIL_CHARSET; // email charset + $mail->SMTPDebug = 0; // 0 = no output, 1 = errors and messages, 2 = messages only + $mail->SMTPAuth = true; // enable SMTP authentication + $mail->SMTPSecure = SMTP_SSL; // sets the prefix to the servier (ssl, tls) + $mail->Host = SMTP_HOST; // SMTP server + $mail->Port = SMTP_PORT; // SMTP port + $mail->Username = SMTP_USERNAME; // SMTP username + $mail->Password = SMTP_PASSWORD; // SMTP password + + if (EMAIL_TYPE == "text") + { + $mail->ContentType = 'text/plain'; + $mail->IsHTML(false); + } + else + { + $mail->IsHTML(true); + } + + $mail->Subject = $subject; + if ($from != "") + { + $afrom = str_replace('>', '', $from); + $aafrom = explode("<", $afrom); + $from_name = $aafrom[0]; + $from_email = $aafrom[1]; + $mail->SetFrom ($from_email, $from_name); + } + else + { + $mail->SetFrom ($SITE_MAIL, EMAIL_FROM_NAME); + } + $mail->Body = $message; // $mail->Body = file_get_contents('mail_template.html'); + + if (strstr($recipient, "<") && strstr($recipient, ">")) + { + $efrom = str_replace('>', '', $recipient); + $eefrom = explode("<", $efrom); //DEV + $recipient_name = $eefrom[0]; + $recipient_email = $eefrom[1]; + } + else + { + $recipient_name = $recipient; + $recipient_email = $recipient; + } + + $mail->AddAddress ($recipient_email, $recipient_name); + //$mail->AddBCC ('sales@example.com', 'Example.com Sales Dep.'); + + if(!$mail->Send()) + return false; // $error_message = "Mailer Error: " . $mail->ErrorInfo; + else + return true; + } + else + { + $headers = 'MIME-Version: 1.0' . "\r\n"; + + if (EMAIL_TYPE == "text") + $headers .= 'Content-type: text/plain; charset='.EMAIL_CHARSET.'' . "\r\n"; + else + $headers .= 'Content-type: text/html; charset='.EMAIL_CHARSET.'' . "\r\n"; + + if ($from != "") + $headers .= $from. "\r\n"; + else + $headers .= 'From: '.EMAIL_FROM_NAME.' <'.$SITE_MAIL.'>' . "\r\n"; + + mail($recipient, $subject, $message, $headers); + } + } +} + + +/** + * Returns trancated text + * @param $text Text + * @param $limit characters limit + * @param $more_link Show/Hide 'read more' link + * @return string text +*/ + +if (!function_exists('TruncateText')) { + function TruncateText($text, $limit, $more_link = 0) + { + $limit = (int)$limit; + + if ($limit > 0 && strlen($text) > $limit) + { + $ntext = substr($text, 0, $limit); + $ntext = substr($ntext, 0, strrpos($ntext, ' ')); + $ttext = $ntext; + if ($more_link == 1) + { + $ttext .= ' '.CBE1_TRUNCATE_MORE.' »'; + } + else + { + $ttext .= " ..."; + } + } + else + { + $ttext = $text; + } + return $ttext; + } +} + + +if (!function_exists('GetDirectionName')) { + function GetDirectionName($exdirection_id) + { + $result = smart_mysql_query("SELECT from_currency, to_currency FROM exchangerix_exdirections WHERE exdirection_id='".(int)$exdirection_id."' LIMIT 1"); + $row = mysqli_fetch_array($result); + return GetCurrencyName($row['from_currency'])." ".GetCurrencyName($row['to_currency']); + } +} + +if (!function_exists('GetDirectionRate')) { + function GetDirectionRate($exdirection_id) + { + $result = smart_mysql_query("SELECT from_rate, to_rate, exchange_rate FROM exchangerix_exdirections WHERE exdirection_id='".(int)$exdirection_id."' LIMIT 1"); + $row = mysqli_fetch_array($result); + return $row['exchange_rate']; + } +} + + + +/** + * Returns country name + * @param $country_id Country ID + * @param $show_only_icon Show/Hide country name + * @return string country name +*/ + +if (!function_exists('GetCountry')) { + function GetCountry($country_id, $show_only_icon = 0) + { + $result = smart_mysql_query("SELECT * FROM exchangerix_countries WHERE country_id='".(int)$country_id."' LIMIT 1"); + + if (mysqli_num_rows($result) > 0) + { + $row = mysqli_fetch_array($result); + + if ($show_only_icon == 1) + $country_name = "".$row["; + else + $country_name = "".$row[ ".$row['name']; + + return $country_name; + } + } +} + + +/** + * Returns user's exchanges total + * @param $user_id User ID + * @return integer user's clicks total +*/ + +if (!function_exists('GetUserExchangesTotal')) { + function GetUserExchangesTotal($user_id, $direction_id = 0) + { + //if ($direction_id > 0) $sql = " AND exdirections_id='".(int)$direction_id."'"; + $result = smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_exchanges WHERE user_id='".(int)$user_id."'".$sql); + $row = mysqli_fetch_array($result); + return number_format($row['total']); + } +} + +if (!function_exists('GetVerificationProgress')) { + function GetVerificationProgress($userid) + { + $result = smart_mysql_query("SELECT verification_progress FROM exchangerix_users WHERE user_id='".(int)$userid."' LIMIT 1"); + $row = mysqli_fetch_array($result); + return $row['verification_progress']; + } +} + + +/** + * Returns user's reviews total + * @param $user_id User ID + * @return integer user's reviews total +*/ + +if (!function_exists('GetUserReviewsTotal')) { + function GetUserReviewsTotal($user_id) + { + $result = smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_reviews WHERE user_id='".(int)$user_id."' AND status='active'"); + $row = mysqli_fetch_array($result); + return (int)$row['total']; + } +} + + +/** + * Returns stores total + * @return integer stores total +*/ + +if (!function_exists('GetStoresTotal')) { + function GetStoresTotal() + { + $result = smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_retailers WHERE (end_date='0000-00-00 00:00:00' OR end_date > NOW()) AND status='active'"); + $row = mysqli_fetch_array($result); + return (int)$row['total']; + } +} + + +/** + * Returns coupons total + * @return integer coupons total +*/ + +if (!function_exists('GetCouponsTotal')) { + function GetCouponsTotal() + { + $result = smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_coupons WHERE status='active'"); + $row = mysqli_fetch_array($result); + return (int)$row['total']; + } +} + + +/** + * Returns paid money total + * @return string paid money total +*/ +if (!function_exists('GetMoneyTotal')) { + function GetMoneyTotal() + { + $result = smart_mysql_query("SELECT SUM(amount) AS total FROM exchangerix_transactions WHERE status='confirmed'"); + $row = mysqli_fetch_array($result); + $total_money = DisplayMoney($row['total']); + return $total_money; + } +} + + +/** + * Returns users total + * @return integer users total +*/ + +if (!function_exists('GetUsersTotal')) { + function GetUsersTotal() + { + $result = smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_users WHERE status='active'"); + $row = mysqli_fetch_array($result); + return (int)$row['total']; + } +} + + +/** + * Returns formatted sctring + * @param $str string + * @return string formatted sctring +*/ + +if (!function_exists('well_formed')) { + function well_formed($str) { + $str = strip_tags($str); + $str = preg_replace("/[^a-zA-Z0-9_ (\n|\r\n)]+/", "", $str); + $str = str_replace(" ", "", $str); + $str = str_replace("&", "&", $str); + return $str; + } +} + + +/** + * Returns page's link + * @param $page_title Page Title + * @return string Returns page's link +*/ + +if (!function_exists('GetPageLink')) { + function GetPageLink($retailer_id, $retailer_title = "") { + $retailer_id = (int)$retailer_id; + $retailer_link = SITE_URL."view_page.php?id=".$retailer_id; + return $retailer_link; + } +} + + function country_ip($ip, $show_flag = 0) + { + $ip = substr($ip, 0, 15); + require_once (PUBLIC_HTML_PATH."/inc/ip/geoip.inc"); + + $gi = geoip_open(PUBLIC_HTML_PATH."/inc/ip/GeoIP.dat",GEOIP_MEMORY_CACHE); + $country = geoip_country_code_by_addr($gi, $ip); //us + geoip_close($gi); + + $country = strtolower($country); + + //return ""; + return $country; + } + + function currencyConvertor($amount,$from_Currency,$to_Currency) { + $amount = urlencode($amount); + $from_Currency = urlencode($from_Currency); + $to_Currency = urlencode($to_Currency); + $get = "https://finance.google.com/finance/converter?a=$amount&from=$from_Currency&to=$to_Currency"; + $ch = curl_init(); + $url = $get; + // Disable SSL verification + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); + // Will return the response, if false it print the response + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_URL,$url); + $result=curl_exec($ch); + curl_close($ch); + $get = explode("",$result); + $get = explode("",$get[1]); + $converted_amount = preg_replace("/[^0-9\.]/", null, $get[0]); + return number_format($converted_amount, 2, '.', ''); +} + +function currencyConvertor2($from_Currency,$to_Currency) { + $amount = urlencode($amount); + $from_Currency = urlencode($from_Currency); + $to_Currency = urlencode($to_Currency); + $get = "https://wex.nz/api/3/ticker/".$from_Currency."_".$to_Currency; + $ch = curl_init(); + $url = $get; + // Disable SSL verification + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); + // Will return the response, if false it print the response + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + // Set the url + curl_setopt($ch, CURLOPT_URL,$url); + // Execute + $result=curl_exec($ch); + // Closing + curl_close($ch); + $get = json_decode($result, true); + print_r($get); + + //check when empty +} + + +/** + * Returns currency's name + * @param $id Currency ID + * @return string currency name +*/ + +if (!function_exists('GetCurrencyName')) { + function GetCurrencyName($id) + { + $result = smart_mysql_query("SELECT currency_name FROM exchangerix_currencies WHERE currency_id='".(int)$id."' LIMIT 1"); + $row = mysqli_fetch_array($result); + return $row['currency_name']; + } +} + +if (!function_exists('GetCurrencyFName')) { + function GetCurrencyFName($id) + { + $result = smart_mysql_query("SELECT currency_name, currency_code FROM exchangerix_currencies WHERE currency_id='".(int)$id."' LIMIT 1"); + $row = mysqli_fetch_array($result); + return $row['currency_name']." ".$row['currency_code']; + } +} + +if (!function_exists('GetCurrencyCode')) { + function GetCurrencyCode($id) + { + $result = smart_mysql_query("SELECT currency_code FROM exchangerix_currencies WHERE currency_id='".(int)$id."' LIMIT 1"); + $row = mysqli_fetch_array($result); + return $row['currency_code']; + } +} + +if (!function_exists('GetCurrencyImg')) { + function GetCurrencyImg($id, $size = 33) + { + $result = smart_mysql_query("SELECT image FROM exchangerix_currencies WHERE currency_id='".(int)$id."' LIMIT 1"); + $row = mysqli_fetch_array($result); + return " "; + } +} + +if (!function_exists('GetCurCode')) { + function GetCurCode($string) + { + if (@strstr($string, ' ')) + { + $pieces = explode(' ', $string); + $currency_code = array_pop($pieces); + return $currency_code; + } + } +} + + +if (!function_exists('GetCurrencyTotalTransactions')) { + function GetCurrencyTotalTransactions($id, $period = 1) + { + $today = date("Y-m-d"); + + if ($period == "today") + $result = smart_mysql_query("SELECT COUNT(*) as total FROM exchangerix_exchanges WHERE (from_currency_id='".(int)$id."' OR to_currency_id='".(int)$id."') AND DATE(created)='$today'"); //AND status='confirmed' + else + $result = smart_mysql_query("SELECT COUNT(*) as total FROM exchangerix_exchanges WHERE from_currency_id='".(int)$id."' OR to_currency_id='".(int)$id."'"); //AND status='confirmed' + + $row = mysqli_fetch_array($result); + + if ($period == "today" && $row['total'] > 0) + return "+".$row['total']; + else + return $row['total']; + } +} + + +if (!function_exists('GetCurrencySends')) { + function GetCurrencySends($id) + { + global $conn; + $id = mysqli_real_escape_string($conn, $id); + + $result = smart_mysql_query("SELECT COALESCE(sum(exchange_amount), 0) AS total FROM exchangerix_exchanges WHERE from_currency='".$id."' AND status='confirmed'"); + $row = mysqli_fetch_array($result); + $total = floatval($row['total']); + return $total; + } +} + + +if (!function_exists('GetCurrencyReceives')) { + function GetCurrencyReceives($id) + { + global $conn; + $id = mysqli_real_escape_string($conn, $id); + + $result = smart_mysql_query("SELECT COALESCE(sum(receive_amount), 0) AS total FROM exchangerix_exchanges WHERE to_currency='".$id."' AND status='confirmed'"); + $row = mysqli_fetch_array($result); + $total = floatval($row['total']); + return $total; + } +} + +if (!function_exists('GetCurrencyReserve')) { + function GetCurrencyReserve($id) + { + $rr = mysqli_fetch_array(smart_mysql_query("SELECT SUM(receive_amount) AS total FROM exchangerix_exchanges WHERE to_currency='".$id."' AND status='waiting' AND created >= NOW() - INTERVAL ".RESERVE_MINUTES." MINUTE")); + $result = smart_mysql_query("SELECT reserve FROM exchangerix_currencies WHERE currency_id='".(int)$id."' LIMIT 1"); + $row = mysqli_fetch_array($result); + if ($row['reserve'] == "") return "unlimited"; + $reserve = $row['reserve'] - $rr['total']; + //$reserve = floatval($reserve); + $reserve = number_format($reserve, 2, '.', ''); + return $reserve; + } +} + + +if (!function_exists('GetTestimonialsTotal')) { + function GetTestimonialsTotal($status = 'active') + { + if ($status == "all") + $result = smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_reviews"); + else + $result = smart_mysql_query("SELECT COUNT(*) AS total FROM exchangerix_reviews WHERE status='active'"); + + $row = mysqli_fetch_array($result); + return (int)$row['total']; + } +} + + + +if (!function_exists('findTimeAgo')) { +function findTimeAgo($past, $now = "now") { + // sets the default timezone if required + // list of supported timezone identifiers + // http://php.net/manual/en/timezones.php + // date_default_timezone_set("Asia/Calcutta"); + $secondsPerMinute = 60; + $secondsPerHour = 3600; + $secondsPerDay = 86400; + $secondsPerMonth = 2592000; + $secondsPerYear = 31104000; + // finds the past in datetime + $past = strtotime($past); + // finds the current datetime + $now = strtotime($now); + + // creates the "time ago" string. This always starts with an "about..." + $timeAgo = ""; + + // finds the time difference + $timeDifference = $now - $past; + + // less than 29secs + if($timeDifference <= 29) { + $timeAgo = "less than a minute"; + } + // more than 29secs and less than 1min29secss + else if($timeDifference > 29 && $timeDifference <= 89) { + $timeAgo = "1 minute"; + } + // between 1min30secs and 44mins29secs + else if($timeDifference > 89 && + $timeDifference <= (($secondsPerMinute * 44) + 29) + ) { + $minutes = floor($timeDifference / $secondsPerMinute); + $timeAgo = $minutes." minutes"; + } + // between 44mins30secs and 1hour29mins29secs + else if( + $timeDifference > (($secondsPerMinute * 44) + 29) + && + $timeDifference < (($secondsPerMinute * 89) + 29) + ) { + $timeAgo = "about 1 hour"; + } + // between 1hour29mins30secs and 23hours59mins29secs + else if( + $timeDifference > ( + ($secondsPerMinute * 89) + + 29 + ) + && + $timeDifference <= ( + ($secondsPerHour * 23) + + ($secondsPerMinute * 59) + + 29 + ) + ) { + $hours = floor($timeDifference / $secondsPerHour); + $timeAgo = $hours." hours"; + } + // between 23hours59mins30secs and 47hours59mins29secs + else if( + $timeDifference > ( + ($secondsPerHour * 23) + + ($secondsPerMinute * 59) + + 29 + ) + && + $timeDifference <= ( + ($secondsPerHour * 47) + + ($secondsPerMinute * 59) + + 29 + ) + ) { + $timeAgo = "1 day"; + } + // between 47hours59mins30secs and 29days23hours59mins29secs + else if( + $timeDifference > ( + ($secondsPerHour * 47) + + ($secondsPerMinute * 59) + + 29 + ) + && + $timeDifference <= ( + ($secondsPerDay * 29) + + ($secondsPerHour * 23) + + ($secondsPerMinute * 59) + + 29 + ) + ) { + $days = floor($timeDifference / $secondsPerDay); + $timeAgo = $days." days"; + } + // between 29days23hours59mins30secs and 59days23hours59mins29secs + else if( + $timeDifference > ( + ($secondsPerDay * 29) + + ($secondsPerHour * 23) + + ($secondsPerMinute * 59) + + 29 + ) + && + $timeDifference <= ( + ($secondsPerDay * 59) + + ($secondsPerHour * 23) + + ($secondsPerMinute * 59) + + 29 + ) + ) { + $timeAgo = "about 1 month"; + } + // between 59days23hours59mins30secs and 1year (minus 1sec) + else if( + $timeDifference > ( + ($secondsPerDay * 59) + + ($secondsPerHour * 23) + + ($secondsPerMinute * 59) + + 29 + ) + && + $timeDifference < $secondsPerYear + ) { + $months = round($timeDifference / $secondsPerMonth); + // if months is 1, then set it to 2, because we are "past" 1 month + if($months == 1) { + $months = 2; + } + + $timeAgo = $months." months"; + } + // between 1year and 2years (minus 1sec) + else if( + $timeDifference >= $secondsPerYear + && + $timeDifference < ($secondsPerYear * 2) + ) { + $timeAgo = "about 1 year"; + } + // 2years or more + else { + $years = floor($timeDifference / $secondsPerYear); + $timeAgo = "over ".$years." years"; + } + + return $timeAgo." ago"; + } + } + + + +function checkBitcoinAddress($address){ + $decoded = decodeBase58($address); + + $d1 = hash("sha256", substr($decoded,0,21), true); + $d2 = hash("sha256", $d1, true); + + if(substr_compare($decoded, $d2, 21, 4)){ + return false; //throw new \Exception("bad digest"); + } + return true; +} +function decodeBase58($input) { + $alphabet = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"; + + $out = array_fill(0, 25, 0); + for($i=0;$igetMessage(); } + echo "$btc: $message\n"; + } +} +*/ +//main(); + + +function random_filename($length, $directory = '', $extension = '') +{ + // default to this files directory if empty... + $dir = !empty($directory) && is_dir($directory) ? $directory : dirname(__FILE__); + + do { + $key = ''; + $keys = array_merge(range(0, 9), range('a', 'z')); + + for ($i = 0; $i < $length; $i++) { + $key .= $keys[array_rand($keys)]; + } + } while (file_exists($dir . '/' . $key . (!empty($extension) ? '.' . $extension : ''))); + + return $key . (!empty($extension) ? '.' . $extension : ''); +} + +// Checks in the directory of where this file is located. +//echo random_filename(50); + +// Checks in a user-supplied directory... +//echo random_filename(50, '/ServerRoot/mysite/myfiles'); + +// Checks in current directory of php file, with zip extension... +//echo random_filename(50, '', 'zip'); + + + +function resize_image($file, $w, $h, $crop=FALSE) { + list($width, $height) = getimagesize($file); + $r = $width / $height; + if ($crop) { + if ($width > $height) { + $width = ceil($width-($width*abs($r-$w/$h))); + } else { + $height = ceil($height-($height*abs($r-$w/$h))); + } + $newwidth = $w; + $newheight = $h; + } else { + if ($w/$h > $r) { + $newwidth = $h*$r; + $newheight = $h; + } else { + $newheight = $w/$r; + $newwidth = $w; + } + } + + /* + $image_info = getimagesize($file); + $image_type = $image_info[2]; + if($image_type == IMAGETYPE_JPEG ) { + $src = imagecreatefromjpeg($file); + } elseif($image_type == IMAGETYPE_GIF ) { + $src = imagecreatefromgif($file); + } elseif($image_type == IMAGETYPE_PNG ) { + $src = imagecreatefrompng($file); + } + */ + + //Get file extension + $exploding = explode(".",$file); + $ext = end($exploding); + + switch($ext){ + case "png": + $src = imagecreatefrompng($file); + break; + case "jpeg": + case "jpg": + $src = imagecreatefromjpeg($file); + break; + case "gif": + $src = imagecreatefromgif($file); + break; + default: + $src = imagecreatefromjpeg($file); + break; + } + + $dst = imagecreatetruecolor($newwidth, $newheight); + + // preserve transparency + if ($ext == "gif" or $ext == "png"){ + imagecolortransparent($dst, imagecolorallocatealpha($dst, 0, 0, 0, 127)); + imagealphablending($dst, false); + imagesavealpha($dst, true); + } + + imagecopyresampled($dst, $src, 0, 0, 0, 0, $newwidth, $newheight, $width, $height); + + return $dst; +} + + + + + +?> \ No newline at end of file diff --git a/inc/futura.ttf b/inc/futura.ttf new file mode 100644 index 0000000..79e37ce Binary files /dev/null and b/inc/futura.ttf differ diff --git a/inc/header.inc.php b/inc/header.inc.php new file mode 100644 index 0000000..b403565 --- /dev/null +++ b/inc/header.inc.php @@ -0,0 +1,145 @@ + + + + + + +Doridro.Tech-Instant Exchange Perfect Money, BitCoin, Payeer, AdvCash,EtheReum , Dash, LiteCoin, DogeCion, EpayMent, USDT, UpHold, SpeCtrocion, | MarChanger + <?php echo $PAGE_TITLE." | ".SITE_TITLE; ?> + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + + + + + + +
    + + +
    > +
    + + diff --git a/inc/iflogged.inc.php b/inc/iflogged.inc.php new file mode 100644 index 0000000..f84b6bb --- /dev/null +++ b/inc/iflogged.inc.php @@ -0,0 +1,16 @@ + \ No newline at end of file diff --git a/inc/index.htm b/inc/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/inc/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/inc/ip/GeoIP.dat b/inc/ip/GeoIP.dat new file mode 100644 index 0000000..911130d Binary files /dev/null and b/inc/ip/GeoIP.dat differ diff --git a/inc/ip/geoip.inc b/inc/ip/geoip.inc new file mode 100644 index 0000000..31e6061 --- /dev/null +++ b/inc/ip/geoip.inc @@ -0,0 +1,713 @@ + 0, "AP" => 1, "EU" => 2, "AD" => 3, "AE" => 4, "AF" => 5, +"AG" => 6, "AI" => 7, "AL" => 8, "AM" => 9, "CW" => 10, "AO" => 11, +"AQ" => 12, "AR" => 13, "AS" => 14, "AT" => 15, "AU" => 16, "AW" => 17, +"AZ" => 18, "BA" => 19, "BB" => 20, "BD" => 21, "BE" => 22, "BF" => 23, +"BG" => 24, "BH" => 25, "BI" => 26, "BJ" => 27, "BM" => 28, "BN" => 29, +"BO" => 30, "BR" => 31, "BS" => 32, "BT" => 33, "BV" => 34, "BW" => 35, +"BY" => 36, "BZ" => 37, "CA" => 38, "CC" => 39, "CD" => 40, "CF" => 41, +"CG" => 42, "CH" => 43, "CI" => 44, "CK" => 45, "CL" => 46, "CM" => 47, +"CN" => 48, "CO" => 49, "CR" => 50, "CU" => 51, "CV" => 52, "CX" => 53, +"CY" => 54, "CZ" => 55, "DE" => 56, "DJ" => 57, "DK" => 58, "DM" => 59, +"DO" => 60, "DZ" => 61, "EC" => 62, "EE" => 63, "EG" => 64, "EH" => 65, +"ER" => 66, "ES" => 67, "ET" => 68, "FI" => 69, "FJ" => 70, "FK" => 71, +"FM" => 72, "FO" => 73, "FR" => 74, "SX" => 75, "GA" => 76, "GB" => 77, +"GD" => 78, "GE" => 79, "GF" => 80, "GH" => 81, "GI" => 82, "GL" => 83, +"GM" => 84, "GN" => 85, "GP" => 86, "GQ" => 87, "GR" => 88, "GS" => 89, +"GT" => 90, "GU" => 91, "GW" => 92, "GY" => 93, "HK" => 94, "HM" => 95, +"HN" => 96, "HR" => 97, "HT" => 98, "HU" => 99, "ID" => 100, "IE" => 101, +"IL" => 102, "IN" => 103, "IO" => 104, "IQ" => 105, "IR" => 106, "IS" => 107, +"IT" => 108, "JM" => 109, "JO" => 110, "JP" => 111, "KE" => 112, "KG" => 113, +"KH" => 114, "KI" => 115, "KM" => 116, "KN" => 117, "KP" => 118, "KR" => 119, +"KW" => 120, "KY" => 121, "KZ" => 122, "LA" => 123, "LB" => 124, "LC" => 125, +"LI" => 126, "LK" => 127, "LR" => 128, "LS" => 129, "LT" => 130, "LU" => 131, +"LV" => 132, "LY" => 133, "MA" => 134, "MC" => 135, "MD" => 136, "MG" => 137, +"MH" => 138, "MK" => 139, "ML" => 140, "MM" => 141, "MN" => 142, "MO" => 143, +"MP" => 144, "MQ" => 145, "MR" => 146, "MS" => 147, "MT" => 148, "MU" => 149, +"MV" => 150, "MW" => 151, "MX" => 152, "MY" => 153, "MZ" => 154, "NA" => 155, +"NC" => 156, "NE" => 157, "NF" => 158, "NG" => 159, "NI" => 160, "NL" => 161, +"NO" => 162, "NP" => 163, "NR" => 164, "NU" => 165, "NZ" => 166, "OM" => 167, +"PA" => 168, "PE" => 169, "PF" => 170, "PG" => 171, "PH" => 172, "PK" => 173, +"PL" => 174, "PM" => 175, "PN" => 176, "PR" => 177, "PS" => 178, "PT" => 179, +"PW" => 180, "PY" => 181, "QA" => 182, "RE" => 183, "RO" => 184, "RU" => 185, +"RW" => 186, "SA" => 187, "SB" => 188, "SC" => 189, "SD" => 190, "SE" => 191, +"SG" => 192, "SH" => 193, "SI" => 194, "SJ" => 195, "SK" => 196, "SL" => 197, +"SM" => 198, "SN" => 199, "SO" => 200, "SR" => 201, "ST" => 202, "SV" => 203, +"SY" => 204, "SZ" => 205, "TC" => 206, "TD" => 207, "TF" => 208, "TG" => 209, +"TH" => 210, "TJ" => 211, "TK" => 212, "TM" => 213, "TN" => 214, "TO" => 215, +"TL" => 216, "TR" => 217, "TT" => 218, "TV" => 219, "TW" => 220, "TZ" => 221, +"UA" => 222, "UG" => 223, "UM" => 224, "US" => 225, "UY" => 226, "UZ" => 227, +"VA" => 228, "VC" => 229, "VE" => 230, "VG" => 231, "VI" => 232, "VN" => 233, +"VU" => 234, "WF" => 235, "WS" => 236, "YE" => 237, "YT" => 238, "RS" => 239, +"ZA" => 240, "ZM" => 241, "ME" => 242, "ZW" => 243, "A1" => 244, "A2" => 245, +"O1" => 246, "AX" => 247, "GG" => 248, "IM" => 249, "JE" => 250, "BL" => 251, +"MF" => 252, "BQ" => 253, +); + var $GEOIP_COUNTRY_CODES = array( + "","AP","EU","AD","AE","AF","AG","AI","AL","AM","CW", + "AO","AQ","AR","AS","AT","AU","AW","AZ","BA","BB", + "BD","BE","BF","BG","BH","BI","BJ","BM","BN","BO", + "BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD", + "CF","CG","CH","CI","CK","CL","CM","CN","CO","CR", + "CU","CV","CX","CY","CZ","DE","DJ","DK","DM","DO", + "DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ", + "FK","FM","FO","FR","SX","GA","GB","GD","GE","GF", + "GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT", + "GU","GW","GY","HK","HM","HN","HR","HT","HU","ID", + "IE","IL","IN","IO","IQ","IR","IS","IT","JM","JO", + "JP","KE","KG","KH","KI","KM","KN","KP","KR","KW", + "KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT", + "LU","LV","LY","MA","MC","MD","MG","MH","MK","ML", + "MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV", + "MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI", + "NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF", + "PG","PH","PK","PL","PM","PN","PR","PS","PT","PW", + "PY","QA","RE","RO","RU","RW","SA","SB","SC","SD", + "SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO", + "SR","ST","SV","SY","SZ","TC","TD","TF","TG","TH", + "TJ","TK","TM","TN","TO","TL","TR","TT","TV","TW", + "TZ","UA","UG","UM","US","UY","UZ","VA","VC","VE", + "VG","VI","VN","VU","WF","WS","YE","YT","RS","ZA", + "ZM","ME","ZW","A1","A2","O1","AX","GG","IM","JE", + "BL","MF", "BQ"); + var $GEOIP_COUNTRY_CODES3 = array( + "","AP","EU","AND","ARE","AFG","ATG","AIA","ALB","ARM","CUW", + "AGO","ATA","ARG","ASM","AUT","AUS","ABW","AZE","BIH","BRB", + "BGD","BEL","BFA","BGR","BHR","BDI","BEN","BMU","BRN","BOL", + "BRA","BHS","BTN","BVT","BWA","BLR","BLZ","CAN","CCK","COD", + "CAF","COG","CHE","CIV","COK","CHL","CMR","CHN","COL","CRI", + "CUB","CPV","CXR","CYP","CZE","DEU","DJI","DNK","DMA","DOM", + "DZA","ECU","EST","EGY","ESH","ERI","ESP","ETH","FIN","FJI", + "FLK","FSM","FRO","FRA","SXM","GAB","GBR","GRD","GEO","GUF", + "GHA","GIB","GRL","GMB","GIN","GLP","GNQ","GRC","SGS","GTM", + "GUM","GNB","GUY","HKG","HMD","HND","HRV","HTI","HUN","IDN", + "IRL","ISR","IND","IOT","IRQ","IRN","ISL","ITA","JAM","JOR", + "JPN","KEN","KGZ","KHM","KIR","COM","KNA","PRK","KOR","KWT", + "CYM","KAZ","LAO","LBN","LCA","LIE","LKA","LBR","LSO","LTU", + "LUX","LVA","LBY","MAR","MCO","MDA","MDG","MHL","MKD","MLI", + "MMR","MNG","MAC","MNP","MTQ","MRT","MSR","MLT","MUS","MDV", + "MWI","MEX","MYS","MOZ","NAM","NCL","NER","NFK","NGA","NIC", + "NLD","NOR","NPL","NRU","NIU","NZL","OMN","PAN","PER","PYF", + "PNG","PHL","PAK","POL","SPM","PCN","PRI","PSE","PRT","PLW", + "PRY","QAT","REU","ROU","RUS","RWA","SAU","SLB","SYC","SDN", + "SWE","SGP","SHN","SVN","SJM","SVK","SLE","SMR","SEN","SOM", + "SUR","STP","SLV","SYR","SWZ","TCA","TCD","ATF","TGO","THA", + "TJK","TKL","TKM","TUN","TON","TLS","TUR","TTO","TUV","TWN", + "TZA","UKR","UGA","UMI","USA","URY","UZB","VAT","VCT","VEN", + "VGB","VIR","VNM","VUT","WLF","WSM","YEM","MYT","SRB","ZAF", + "ZMB","MNE","ZWE","A1","A2","O1","ALA","GGY","IMN","JEY", + "BLM","MAF", "BES" + ); + var $GEOIP_COUNTRY_NAMES = array( + "","Asia/Pacific Region","Europe","Andorra","United Arab Emirates","Afghanistan","Antigua and Barbuda","Anguilla","Albania","Armenia","Curcao", + "Angola","Antarctica","Argentina","American Samoa","Austria","Australia","Aruba","Azerbaijan","Bosnia and Herzegovina","Barbados", + "Bangladesh","Belgium","Burkina Faso","Bulgaria","Bahrain","Burundi","Benin","Bermuda","Brunei Darussalam","Bolivia", + "Brazil","Bahamas","Bhutan","Bouvet Island","Botswana","Belarus","Belize","Canada","Cocos (Keeling) Islands","Congo, The Democratic Republic of the", + "Central African Republic","Congo","Switzerland","Cote D'Ivoire","Cook Islands","Chile","Cameroon","China","Colombia","Costa Rica", + "Cuba","Cape Verde","Christmas Island","Cyprus","Czech Republic","Germany","Djibouti","Denmark","Dominica","Dominican Republic", + "Algeria","Ecuador","Estonia","Egypt","Western Sahara","Eritrea","Spain","Ethiopia","Finland","Fiji", + "Falkland Islands (Malvinas)","Micronesia, Federated States of","Faroe Islands","France","Sint Maarten (Dutch part)","Gabon","United Kingdom","Grenada","Georgia","French Guiana", + "Ghana","Gibraltar","Greenland","Gambia","Guinea","Guadeloupe","Equatorial Guinea","Greece","South Georgia and the South Sandwich Islands","Guatemala", + "Guam","Guinea-Bissau","Guyana","Hong Kong","Heard Island and McDonald Islands","Honduras","Croatia","Haiti","Hungary","Indonesia", + "Ireland","Israel","India","British Indian Ocean Territory","Iraq","Iran, Islamic Republic of","Iceland","Italy","Jamaica","Jordan", + "Japan","Kenya","Kyrgyzstan","Cambodia","Kiribati","Comoros","Saint Kitts and Nevis","Korea, Democratic People's Republic of","Korea, Republic of","Kuwait", + "Cayman Islands","Kazakhstan","Lao People's Democratic Republic","Lebanon","Saint Lucia","Liechtenstein","Sri Lanka","Liberia","Lesotho","Lithuania", + "Luxembourg","Latvia","Libya","Morocco","Monaco","Moldova, Republic of","Madagascar","Marshall Islands","Macedonia","Mali", + "Myanmar","Mongolia","Macau","Northern Mariana Islands","Martinique","Mauritania","Montserrat","Malta","Mauritius","Maldives", + "Malawi","Mexico","Malaysia","Mozambique","Namibia","New Caledonia","Niger","Norfolk Island","Nigeria","Nicaragua", + "Netherlands","Norway","Nepal","Nauru","Niue","New Zealand","Oman","Panama","Peru","French Polynesia", + "Papua New Guinea","Philippines","Pakistan","Poland","Saint Pierre and Miquelon","Pitcairn Islands","Puerto Rico","Palestinian Territory","Portugal","Palau", + "Paraguay","Qatar","Reunion","Romania","Russian Federation","Rwanda","Saudi Arabia","Solomon Islands","Seychelles","Sudan", + "Sweden","Singapore","Saint Helena","Slovenia","Svalbard and Jan Mayen","Slovakia","Sierra Leone","San Marino","Senegal","Somalia","Suriname", + "Sao Tome and Principe","El Salvador","Syrian Arab Republic","Swaziland","Turks and Caicos Islands","Chad","French Southern Territories","Togo","Thailand", + "Tajikistan","Tokelau","Turkmenistan","Tunisia","Tonga","Timor-Leste","Turkey","Trinidad and Tobago","Tuvalu","Taiwan", + "Tanzania, United Republic of","Ukraine","Uganda","United States Minor Outlying Islands","United States","Uruguay","Uzbekistan","Holy See (Vatican City State)","Saint Vincent and the Grenadines","Venezuela", + "Virgin Islands, British","Virgin Islands, U.S.","Vietnam","Vanuatu","Wallis and Futuna","Samoa","Yemen","Mayotte","Serbia","South Africa", + "Zambia","Montenegro","Zimbabwe","Anonymous Proxy","Satellite Provider","Other","Aland Islands","Guernsey","Isle of Man","Jersey", + "Saint Barthelemy","Saint Martin", "Bonaire, Saint Eustatius and Saba" +); + + var $GEOIP_CONTINENT_CODES = array( + "--", "AS","EU","EU","AS","AS","NA","NA","EU","AS","NA", + "AF","AN","SA","OC","EU","OC","NA","AS","EU","NA", + "AS","EU","AF","EU","AS","AF","AF","NA","AS","SA", + "SA","NA","AS","AN","AF","EU","NA","NA","AS","AF", + "AF","AF","EU","AF","OC","SA","AF","AS","SA","NA", + "NA","AF","AS","AS","EU","EU","AF","EU","NA","NA", + "AF","SA","EU","AF","AF","AF","EU","AF","EU","OC", + "SA","OC","EU","EU","NA","AF","EU","NA","AS","SA", + "AF","EU","NA","AF","AF","NA","AF","EU","AN","NA", + "OC","AF","SA","AS","AN","NA","EU","NA","EU","AS", + "EU","AS","AS","AS","AS","AS","EU","EU","NA","AS", + "AS","AF","AS","AS","OC","AF","NA","AS","AS","AS", + "NA","AS","AS","AS","NA","EU","AS","AF","AF","EU", + "EU","EU","AF","AF","EU","EU","AF","OC","EU","AF", + "AS","AS","AS","OC","NA","AF","NA","EU","AF","AS", + "AF","NA","AS","AF","AF","OC","AF","OC","AF","NA", + "EU","EU","AS","OC","OC","OC","AS","NA","SA","OC", + "OC","AS","AS","EU","NA","OC","NA","AS","EU","OC", + "SA","AS","AF","EU","EU","AF","AS","OC","AF","AF", + "EU","AS","AF","EU","EU","EU","AF","EU","AF","AF", + "SA","AF","NA","AS","AF","NA","AF","AN","AF","AS", + "AS","OC","AS","AF","OC","AS","EU","NA","OC","AS", + "AF","EU","AF","OC","NA","SA","AS","EU","NA","SA", + "NA","NA","AS","OC","OC","OC","AS","AF","EU","AF", + "AF","EU","AF","--","--","--","EU","EU","EU","EU", + "NA","NA","NA" +); + +} +function geoip_load_shared_mem ($file) { + + $fp = fopen($file, "rb"); + if (!$fp) { + print "error opening $file: $php_errormsg\n"; + exit; + } + $s_array = fstat($fp); + $size = $s_array['size']; + if ($shmid = @shmop_open (GEOIP_SHM_KEY, "w", 0, 0)) { + shmop_delete ($shmid); + shmop_close ($shmid); + } + $shmid = shmop_open (GEOIP_SHM_KEY, "c", 0644, $size); + shmop_write ($shmid, fread($fp, $size), 0); + shmop_close ($shmid); +} + +function _setup_segments($gi){ + $gi->databaseType = GEOIP_COUNTRY_EDITION; + $gi->record_length = STANDARD_RECORD_LENGTH; + if ($gi->flags & GEOIP_SHARED_MEMORY) { + $offset = @shmop_size ($gi->shmid) - 3; + for ($i = 0; $i < STRUCTURE_INFO_MAX_SIZE; $i++) { + $delim = @shmop_read ($gi->shmid, $offset, 3); + $offset += 3; + if ($delim == (chr(255).chr(255).chr(255))) { + $gi->databaseType = ord(@shmop_read ($gi->shmid, $offset, 1)); + $offset++; + + if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){ + $gi->databaseSegments = GEOIP_STATE_BEGIN_REV0; + } else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1){ + $gi->databaseSegments = GEOIP_STATE_BEGIN_REV1; + } else if (($gi->databaseType == GEOIP_CITY_EDITION_REV0)|| + ($gi->databaseType == GEOIP_CITY_EDITION_REV1) + || ($gi->databaseType == GEOIP_ORG_EDITION) + || ($gi->databaseType == GEOIP_ORG_EDITION_V6) + || ($gi->databaseType == GEOIP_DOMAIN_EDITION) + || ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6) + || ($gi->databaseType == GEOIP_ISP_EDITION) + || ($gi->databaseType == GEOIP_ISP_EDITION_V6) + || ($gi->databaseType == GEOIP_USERTYPE_EDITION) + || ($gi->databaseType == GEOIP_USERTYPE_EDITION_V6) + || ($gi->databaseType == GEOIP_LOCATIONA_EDITION) + || ($gi->databaseType == GEOIP_ACCURACYRADIUS_EDITION) + || ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6) + || ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6) + || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1) + || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1_V6) + || ($gi->databaseType == GEOIP_ASNUM_EDITION) + || ($gi->databaseType == GEOIP_ASNUM_EDITION_V6)){ + $gi->databaseSegments = 0; + $buf = @shmop_read ($gi->shmid, $offset, SEGMENT_RECORD_LENGTH); + for ($j = 0;$j < SEGMENT_RECORD_LENGTH;$j++){ + $gi->databaseSegments += (ord($buf[$j]) << ($j * 8)); + } + if (($gi->databaseType == GEOIP_ORG_EDITION) + || ($gi->databaseType == GEOIP_ORG_EDITION_V6) + || ($gi->databaseType == GEOIP_DOMAIN_EDITION) + || ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6) + || ($gi->databaseType == GEOIP_ISP_EDITION) + || ($gi->databaseType == GEOIP_ISP_EDITION_V6)) { + $gi->record_length = ORG_RECORD_LENGTH; + } + } + break; + } else { + $offset -= 4; + } + } + if (($gi->databaseType == GEOIP_COUNTRY_EDITION)|| + ($gi->databaseType == GEOIP_COUNTRY_EDITION_V6)|| + ($gi->databaseType == GEOIP_PROXY_EDITION)|| + ($gi->databaseType == GEOIP_NETSPEED_EDITION)){ + $gi->databaseSegments = GEOIP_COUNTRY_BEGIN; + } + } else { + $filepos = ftell($gi->filehandle); + fseek($gi->filehandle, -3, SEEK_END); + for ($i = 0; $i < STRUCTURE_INFO_MAX_SIZE; $i++) { + $delim = fread($gi->filehandle,3); + if ($delim == (chr(255).chr(255).chr(255))){ + $gi->databaseType = ord(fread($gi->filehandle,1)); + if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){ + $gi->databaseSegments = GEOIP_STATE_BEGIN_REV0; + } + else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1){ + $gi->databaseSegments = GEOIP_STATE_BEGIN_REV1; + } else if (($gi->databaseType == GEOIP_CITY_EDITION_REV0) + || ($gi->databaseType == GEOIP_CITY_EDITION_REV1) + || ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6) + || ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6) + || ($gi->databaseType == GEOIP_ORG_EDITION) + || ($gi->databaseType == GEOIP_DOMAIN_EDITION) + || ($gi->databaseType == GEOIP_ISP_EDITION) + || ($gi->databaseType == GEOIP_ORG_EDITION_V6) + || ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6) + || ($gi->databaseType == GEOIP_ISP_EDITION_V6) + || ($gi->databaseType == GEOIP_LOCATIONA_EDITION) + || ($gi->databaseType == GEOIP_ACCURACYRADIUS_EDITION) + || ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6) + || ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6) + || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1) + || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1_V6) + || ($gi->databaseType == GEOIP_USERTYPE_EDITION) + || ($gi->databaseType == GEOIP_USERTYPE_EDITION_V6) + || ($gi->databaseType == GEOIP_ASNUM_EDITION) + || ($gi->databaseType == GEOIP_ASNUM_EDITION_V6)){ + $gi->databaseSegments = 0; + $buf = fread($gi->filehandle,SEGMENT_RECORD_LENGTH); + for ($j = 0;$j < SEGMENT_RECORD_LENGTH;$j++){ + $gi->databaseSegments += (ord($buf[$j]) << ($j * 8)); + } + if ( ( $gi->databaseType == GEOIP_ORG_EDITION ) + || ( $gi->databaseType == GEOIP_DOMAIN_EDITION ) + || ( $gi->databaseType == GEOIP_ISP_EDITION ) + || ( $gi->databaseType == GEOIP_ORG_EDITION_V6 ) + || ( $gi->databaseType == GEOIP_DOMAIN_EDITION_V6 ) + || ( $gi->databaseType == GEOIP_ISP_EDITION_V6 )) { + $gi->record_length = ORG_RECORD_LENGTH; + } + } + break; + } else { + fseek($gi->filehandle, -4, SEEK_CUR); + } + } + if (($gi->databaseType == GEOIP_COUNTRY_EDITION)|| + ($gi->databaseType == GEOIP_COUNTRY_EDITION_V6)|| + ($gi->databaseType == GEOIP_PROXY_EDITION)|| + ($gi->databaseType == GEOIP_NETSPEED_EDITION)){ + $gi->databaseSegments = GEOIP_COUNTRY_BEGIN; + } + fseek($gi->filehandle,$filepos,SEEK_SET); + } + return $gi; +} + +function geoip_open($filename, $flags) { + $gi = new GeoIP; + $gi->flags = $flags; + if ($gi->flags & GEOIP_SHARED_MEMORY) { + $gi->shmid = @shmop_open (GEOIP_SHM_KEY, "a", 0, 0); + } else { + $gi->filehandle = fopen($filename,"rb") or die( "Can not open $filename\n" ); + if ($gi->flags & GEOIP_MEMORY_CACHE) { + $s_array = fstat($gi->filehandle); + $gi->memory_buffer = fread($gi->filehandle, $s_array['size']); + } + } + + $gi = _setup_segments($gi); + return $gi; +} + +function geoip_close($gi) { + if ($gi->flags & GEOIP_SHARED_MEMORY) { + return true; + } + + return fclose($gi->filehandle); +} + +function geoip_country_id_by_name_v6($gi, $name) { + $rec = dns_get_record($name, DNS_AAAA); + if ( !$rec ) { + return false; + } + $addr = $rec[0]["ipv6"]; + if (!$addr || $addr == $name) { + return false; + } + return geoip_country_id_by_addr_v6($gi, $addr); +} + +function geoip_country_id_by_name($gi, $name) { + $addr = gethostbyname($name); + if (!$addr || $addr == $name) { + return false; + } + return geoip_country_id_by_addr($gi, $addr); +} + +function geoip_country_code_by_name_v6($gi, $name) { + $country_id = geoip_country_id_by_name_v6($gi,$name); + if ($country_id !== false) { + return $gi->GEOIP_COUNTRY_CODES[$country_id]; + } + return false; +} + +function geoip_country_code_by_name($gi, $name) { + $country_id = geoip_country_id_by_name($gi,$name); + if ($country_id !== false) { + return $gi->GEOIP_COUNTRY_CODES[$country_id]; + } + return false; +} + +function geoip_country_name_by_name_v6($gi, $name) { + $country_id = geoip_country_id_by_name_v6($gi,$name); + if ($country_id !== false) { + return $gi->GEOIP_COUNTRY_NAMES[$country_id]; + } + return false; +} + +function geoip_country_name_by_name($gi, $name) { + $country_id = geoip_country_id_by_name($gi,$name); + if ($country_id !== false) { + return $gi->GEOIP_COUNTRY_NAMES[$country_id]; + } + return false; +} + +function geoip_country_id_by_addr_v6($gi, $addr) { + $ipnum = inet_pton($addr); + return _geoip_seek_country_v6($gi, $ipnum) - GEOIP_COUNTRY_BEGIN; +} + +function geoip_country_id_by_addr($gi, $addr) { + $ipnum = ip2long($addr); + return _geoip_seek_country($gi, $ipnum) - GEOIP_COUNTRY_BEGIN; +} + +function geoip_country_code_by_addr_v6($gi, $addr) { + $country_id = geoip_country_id_by_addr_v6($gi,$addr); + if ($country_id !== false) { + return $gi->GEOIP_COUNTRY_CODES[$country_id]; + } + return false; +} + +function geoip_country_code_by_addr($gi, $addr) { + if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) { + $record = geoip_record_by_addr($gi,$addr); + if ( $record !== false ) { + return $record->country_code; + } + } else { + $country_id = geoip_country_id_by_addr($gi,$addr); + if ($country_id !== false) { + return $gi->GEOIP_COUNTRY_CODES[$country_id]; + } + } + return false; +} + +function geoip_country_name_by_addr_v6($gi, $addr) { + $country_id = geoip_country_id_by_addr_v6($gi,$addr); + if ($country_id !== false) { + return $gi->GEOIP_COUNTRY_NAMES[$country_id]; + } + return false; +} + +function geoip_country_name_by_addr($gi, $addr) { + if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) { + $record = geoip_record_by_addr($gi,$addr); + return $record->country_name; + } else { + $country_id = geoip_country_id_by_addr($gi,$addr); + if ($country_id !== false) { + return $gi->GEOIP_COUNTRY_NAMES[$country_id]; + } + } + return false; +} + +function _geoip_seek_country_v6($gi, $ipnum) { + + # arrays from unpack start with offset 1 + # yet another php mystery. array_merge work around + # this broken behaviour + $v6vec = array_merge(unpack( "C16", $ipnum)); + + $offset = 0; + for ($depth = 127; $depth >= 0; --$depth) { + if ($gi->flags & GEOIP_MEMORY_CACHE) { + // workaround php's broken substr, strpos, etc handling with + // mbstring.func_overload and mbstring.internal_encoding + $enc = mb_internal_encoding(); + mb_internal_encoding('ISO-8859-1'); + + $buf = substr($gi->memory_buffer, + 2 * $gi->record_length * $offset, + 2 * $gi->record_length); + + mb_internal_encoding($enc); + } elseif ($gi->flags & GEOIP_SHARED_MEMORY) { + $buf = @shmop_read ($gi->shmid, + 2 * $gi->record_length * $offset, + 2 * $gi->record_length ); + } else { + fseek($gi->filehandle, 2 * $gi->record_length * $offset, SEEK_SET) == 0 + or die("fseek failed"); + $buf = fread($gi->filehandle, 2 * $gi->record_length); + } + $x = array(0,0); + for ($i = 0; $i < 2; ++$i) { + for ($j = 0; $j < $gi->record_length; ++$j) { + $x[$i] += ord($buf[$gi->record_length * $i + $j]) << ($j * 8); + } + } + + $bnum = 127 - $depth; + $idx = $bnum >> 3; + $b_mask = 1 << ( $bnum & 7 ^ 7 ); + if (($v6vec[$idx] & $b_mask) > 0) { + if ($x[1] >= $gi->databaseSegments) { + return $x[1]; + } + $offset = $x[1]; + } else { + if ($x[0] >= $gi->databaseSegments) { + return $x[0]; + } + $offset = $x[0]; + } + } + trigger_error("error traversing database - perhaps it is corrupt?", E_USER_ERROR); + return false; +} + +function _geoip_seek_country($gi, $ipnum) { + $offset = 0; + for ($depth = 31; $depth >= 0; --$depth) { + if ($gi->flags & GEOIP_MEMORY_CACHE) { + // workaround php's broken substr, strpos, etc handling with + // mbstring.func_overload and mbstring.internal_encoding + $enc = mb_internal_encoding(); + mb_internal_encoding('ISO-8859-1'); + + $buf = substr($gi->memory_buffer, + 2 * $gi->record_length * $offset, + 2 * $gi->record_length); + + mb_internal_encoding($enc); + } elseif ($gi->flags & GEOIP_SHARED_MEMORY) { + $buf = @shmop_read ($gi->shmid, + 2 * $gi->record_length * $offset, + 2 * $gi->record_length ); + } else { + fseek($gi->filehandle, 2 * $gi->record_length * $offset, SEEK_SET) == 0 + or die("fseek failed"); + $buf = fread($gi->filehandle, 2 * $gi->record_length); + } + $x = array(0,0); + for ($i = 0; $i < 2; ++$i) { + for ($j = 0; $j < $gi->record_length; ++$j) { + $x[$i] += ord($buf[$gi->record_length * $i + $j]) << ($j * 8); + } + } + if ($ipnum & (1 << $depth)) { + if ($x[1] >= $gi->databaseSegments) { + return $x[1]; + } + $offset = $x[1]; + } else { + if ($x[0] >= $gi->databaseSegments) { + return $x[0]; + } + $offset = $x[0]; + } + } + trigger_error("error traversing database - perhaps it is corrupt?", E_USER_ERROR); + return false; +} + +function _common_get_org($gi, $seek_org){ + $record_pointer = $seek_org + (2 * $gi->record_length - 1) * $gi->databaseSegments; + if ($gi->flags & GEOIP_SHARED_MEMORY) { + $org_buf = @shmop_read ($gi->shmid, $record_pointer, MAX_ORG_RECORD_LENGTH); + } else { + fseek($gi->filehandle, $record_pointer, SEEK_SET); + $org_buf = fread($gi->filehandle,MAX_ORG_RECORD_LENGTH); + } + // workaround php's broken substr, strpos, etc handling with + // mbstring.func_overload and mbstring.internal_encoding + $enc = mb_internal_encoding(); + mb_internal_encoding('ISO-8859-1'); + $org_buf = substr($org_buf, 0, strpos($org_buf, "\0")); + mb_internal_encoding($enc); + return $org_buf; +} + +function _get_org_v6($gi,$ipnum){ + $seek_org = _geoip_seek_country_v6($gi,$ipnum); + if ($seek_org == $gi->databaseSegments) { + return NULL; + } + return _common_get_org($gi, $seek_org); +} + +function _get_org($gi,$ipnum){ + $seek_org = _geoip_seek_country($gi,$ipnum); + if ($seek_org == $gi->databaseSegments) { + return NULL; + } + return _common_get_org($gi, $seek_org); +} + + + +function geoip_name_by_addr_v6 ($gi,$addr) { + if ($addr == NULL) { + return 0; + } + $ipnum = inet_pton($addr); + return _get_org_v6($gi, $ipnum); +} + +function geoip_name_by_addr ($gi,$addr) { + if ($addr == NULL) { + return 0; + } + $ipnum = ip2long($addr); + return _get_org($gi, $ipnum); +} + +function geoip_org_by_addr ($gi,$addr) { + return geoip_name_by_addr($gi, $addr); +} + +function _get_region($gi,$ipnum){ + if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){ + $seek_region = _geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV0; + if ($seek_region >= 1000){ + $country_code = "US"; + $region = chr(($seek_region - 1000)/26 + 65) . chr(($seek_region - 1000)%26 + 65); + } else { + $country_code = $gi->GEOIP_COUNTRY_CODES[$seek_region]; + $region = ""; + } + return array ($country_code,$region); + } else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1) { + $seek_region = _geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV1; + //print $seek_region; + if ($seek_region < US_OFFSET){ + $country_code = ""; + $region = ""; + } else if ($seek_region < CANADA_OFFSET) { + $country_code = "US"; + $region = chr(($seek_region - US_OFFSET)/26 + 65) . chr(($seek_region - US_OFFSET)%26 + 65); + } else if ($seek_region < WORLD_OFFSET) { + $country_code = "CA"; + $region = chr(($seek_region - CANADA_OFFSET)/26 + 65) . chr(($seek_region - CANADA_OFFSET)%26 + 65); + } else { + $country_code = $gi->GEOIP_COUNTRY_CODES[($seek_region - WORLD_OFFSET) / FIPS_RANGE]; + $region = ""; + } + return array ($country_code,$region); + } +} + +function geoip_region_by_addr ($gi,$addr) { + if ($addr == NULL) { + return 0; + } + $ipnum = ip2long($addr); + return _get_region($gi, $ipnum); +} + +function getdnsattributes ($l,$ip){ + $r = new Net_DNS_Resolver(); + $r->nameservers = array("ws1.maxmind.com"); + $p = $r->search($l."." . $ip .".s.maxmind.com","TXT","IN"); + $str = is_object($p->answer[0])?$p->answer[0]->string():''; + $str = substr( $str, 1, -1 ); + return $str; +} + +?> diff --git a/inc/pagination.inc.php b/inc/pagination.inc.php new file mode 100644 index 0000000..2cb61d9 --- /dev/null +++ b/inc/pagination.inc.php @@ -0,0 +1,119 @@ + 1) + { + $pagination .= ""; + } + + return $pagination; + } + +?> \ No newline at end of file diff --git a/inc/payment/.DS_Store b/inc/payment/.DS_Store new file mode 100644 index 0000000..edf276c Binary files /dev/null and b/inc/payment/.DS_Store differ diff --git a/inc/payment/advcash.inc.php b/inc/payment/advcash.inc.php new file mode 100644 index 0000000..ab1f6ef --- /dev/null +++ b/inc/payment/advcash.inc.php @@ -0,0 +1,2998 @@ +php + * @access private + * @var array + */ + private static $classmap = array( + "transferBankCard" => "transferBankCard", + "authDTO" => "authDTO", + "bankCardTransferRequestDTO" => "bankCardTransferRequestDTO", + "transferBankCardResponse" => "transferBankCardResponse", + "validateAdvcashCardTransfer" => "validateAdvcashCardTransfer", + "advcashCardTransferRequestDTO" => "advcashCardTransferRequestDTO", + "validateAdvcashCardTransferResponse" => "validateAdvcashCardTransferResponse", + "findTransaction" => "findTransaction", + "findTransactionResponse" => "findTransactionResponse", + "outcomingTransactionDTO" => "outcomingTransactionDTO", + "baseDTO" => "baseDTO", + "validateEmailTransfer" => "validateEmailTransfer", + "emailTransferRequestDTO" => "emailTransferRequestDTO", + "validateEmailTransferResponse" => "validateEmailTransferResponse", + "validationSendMoneyToEcurrency" => "validationSendMoneyToEcurrency", + "withdrawToEcurrencyRequest" => "withdrawToEcurrencyRequest", + "moneyRequest" => "moneyRequest", + "validationSendMoneyToEcurrencyResponse" => "validationSendMoneyToEcurrencyResponse", + "validateAccounts" => "validateAccounts", + "validateAccountsResponse" => "validateAccountsResponse", + "accountPresentDTO" => "accountPresentDTO", + "sendMoneyToEcurrency" => "sendMoneyToEcurrency", + "sendMoneyToEcurrencyResponse" => "sendMoneyToEcurrencyResponse", + "transferAdvcashCard" => "transferAdvcashCard", + "transferAdvcashCardResponse" => "transferAdvcashCardResponse", + "withdrawalThroughExternalPaymentSystem" => "withdrawalThroughExternalPaymentSystem", + "withdrawalThroughExternalPaymentSystemRequestDTO" => "withdrawalThroughExternalPaymentSystemRequestDTO", + "withdrawalThroughExternalPaymentSystemResponse" => "withdrawalThroughExternalPaymentSystemResponse", + "currencyExchange" => "currencyExchange", + "currencyExchangeRequest" => "currencyExchangeRequest", + "currencyExchangeResponse" => "currencyExchangeResponse", + "sendMoneyToAdvcashCard" => "sendMoneyToAdvcashCard", + "advcashCardTransferRequest" => "advcashCardTransferRequest", + "sendMoneyToAdvcashCardResponse" => "sendMoneyToAdvcashCardResponse", + "sendMoney" => "sendMoney", + "sendMoneyRequest" => "sendMoneyRequest", + "sendMoneyResponse" => "sendMoneyResponse", + "validationSendMoneyToAdvcashCard" => "validationSendMoneyToAdvcashCard", + "validationSendMoneyToAdvcashCardResponse" => "validationSendMoneyToAdvcashCardResponse", + "validationCurrencyExchange" => "validationCurrencyExchange", + "validationCurrencyExchangeResponse" => "validationCurrencyExchangeResponse", + "emailTransfer" => "emailTransfer", + "emailTransferResponse" => "emailTransferResponse", + "sendMoneyToEmail" => "sendMoneyToEmail", + "sendMoneyToEmailResponse" => "sendMoneyToEmailResponse", + "sendMoneyToExmo" => "sendMoneyToExmo", + "sendMoneyToExmoResponse" => "sendMoneyToExmoResponse", + "sendMoneyToExmoResultHolder" => "sendMoneyToExmoResultHolder", + "sendMoneyToMarketResultHolder" => "sendMoneyToMarketResultHolder", + "validateTransfer" => "validateTransfer", + "transferRequestDTO" => "transferRequestDTO", + "validateTransferResponse" => "validateTransferResponse", + "sendMoneyToBtcE" => "sendMoneyToBtcE", + "sendMoneyToBtcEResponse" => "sendMoneyToBtcEResponse", + "sendMoneyToBtcEResultHolder" => "sendMoneyToBtcEResultHolder", + "register" => "register", + "registrationRequest" => "registrationRequest", + "registerResponse" => "registerResponse", + "validateAccount" => "validateAccount", + "validateAccountRequestDTO" => "validateAccountRequestDTO", + "validateAccountResponse" => "validateAccountResponse", + "validateAccountResultDTO" => "validateAccountResultDTO", + "validationSendMoneyToEmail" => "validationSendMoneyToEmail", + "validationSendMoneyToEmailResponse" => "validationSendMoneyToEmailResponse", + "validationSendMoneyToBankCard" => "validationSendMoneyToBankCard", + "bankCardTransferRequest" => "bankCardTransferRequest", + "validationSendMoneyToBankCardResponse" => "validationSendMoneyToBankCardResponse", + "makeCurrencyExchange" => "makeCurrencyExchange", + "makeCurrencyExchangeResponse" => "makeCurrencyExchangeResponse", + "validationSendMoney" => "validationSendMoney", + "validationSendMoneyResponse" => "validationSendMoneyResponse", + "validationSendMoneyToExmo" => "validationSendMoneyToExmo", + "validationSendMoneyToExmoResponse" => "validationSendMoneyToExmoResponse", + "validateCurrencyExchange" => "validateCurrencyExchange", + "validateCurrencyExchangeResponse" => "validateCurrencyExchangeResponse", + "validateWithdrawalThroughExternalPaymentSystem" => "validateWithdrawalThroughExternalPaymentSystem", + "validateWithdrawalThroughExternalPaymentSystemResponse" => "validateWithdrawalThroughExternalPaymentSystemResponse", + "validationSendMoneyToBtcE" => "validationSendMoneyToBtcE", + "validationSendMoneyToBtcEResponse" => "validationSendMoneyToBtcEResponse", + "validateBankCardTransfer" => "validateBankCardTransfer", + "validateBankCardTransferResponse" => "validateBankCardTransferResponse", + "makeTransfer" => "makeTransfer", + "makeTransferResponse" => "makeTransferResponse", + "getBalances" => "getBalances", + "getBalancesResponse" => "getBalancesResponse", + "walletBalanceDTO" => "walletBalanceDTO", + "checkCurrencyExchange" => "checkCurrencyExchange", + "checkCurrencyExchangeRequest" => "checkCurrencyExchangeRequest", + "checkCurrencyExchangeResponse" => "checkCurrencyExchangeResponse", + "checkCurrencyExchangeResultHolder" => "checkCurrencyExchangeResultHolder", + "sendMoneyToBankCard" => "sendMoneyToBankCard", + "sendMoneyToBankCardResponse" => "sendMoneyToBankCardResponse", + "history" => "history", + "MerchantAPITransactionFilter" => "MerchantAPITransactionFilter", + "historyResponse" => "historyResponse", + "exceptionType" => "exceptionType", + "currency" => "currency", + "cardType" => "cardType", + "transactionDirection" => "transactionDirection", + "transactionStatus" => "transactionStatus", + "transactionName" => "transactionName", + "verificationStatus" => "verificationStatus", + "ecurrency" => "ecurrency", + "externalSystemWithdrawalType" => "externalSystemWithdrawalType", + "currencyExchangeAction" => "currencyExchangeAction", + "typeOfTransaction" => "typeOfTransaction", + "supportedLanguage" => "supportedLanguage", + "sortOrder" => "sortOrder", + "NotEnoughMoneyException" => "NotEnoughMoneyException", + "UserBlockedException" => "UserBlockedException", + "TransactionIsNotAvailableException" => "TransactionIsNotAvailableException", + "LimitPerMonthException" => "LimitPerMonthException", + "BadParametersException" => "BadParametersException", + "LimitPerDayException" => "LimitPerDayException", + "MerchantDisabledException" => "MerchantDisabledException", + "NotAuthException" => "NotAuthException", + "WalletDoesNotExist" => "WalletDoesNotExist", + "WrongParamsException" => "WrongParamsException", + "AdditionalDataRequiredException" => "AdditionalDataRequiredException", + "LimitsException" => "LimitsException", + "WrongIpException" => "WrongIpException", + "InternalException" => "InternalException", + "AccessDeniedException" => "AccessDeniedException", + "CardNumberIsNotValidException" => "CardNumberIsNotValidException", + "TransactionFailureException" => "TransactionFailureException", + "LimitPerTransactionException" => "LimitPerTransactionException", + "DatabaseException" => "DatabaseException", + "UserDoesNotExistException" => "UserDoesNotExistException", + "CardIsNotActiveException" => "CardIsNotActiveException", + "CardDoesNotExistException" => "CardDoesNotExistException", + "CallRestrictionException" => "CallRestrictionException", + "EmailAlreadyExistException" => "EmailAlreadyExistException", + "WrongEmailException" => "WrongEmailException", + "TransactionTemporaryNotAvailableException" => "TransactionTemporaryNotAvailableException", + "ExchangeCurrencyException" => "ExchangeCurrencyException", + "ApiException" => "ApiException", + "NotEnoughMoneyApiException" => "NotEnoughMoneyApiException", + "WalletCurrencyIncorrectException" => "WalletCurrencyIncorrectException", + "RegistrationException" => "RegistrationException", + "NotSupportedCountryException" => "NotSupportedCountryException", + "NotSupportedBankBinException" => "NotSupportedBankBinException", + "CodeIsNotValidException" => "CodeIsNotValidException", + ); + + /** + * Constructor using wsdl location and options array + * @param string $wsdl WSDL location for this service + * @param array $options Options for the SoapClient + */ + public function __construct($wsdl="https://wallet.advcash.com:8443/wsm/merchantWebService?wsdl", $options=array()) { + foreach(self::$classmap as $wsdlClassName => $phpClassName) { + if(!isset($options['classmap'][$wsdlClassName])) { + $options['classmap'][$wsdlClassName] = $phpClassName; + } + } + $options['location'] = 'https://wallet.advcash.com:8443/wsm/merchantWebService'; + libxml_disable_entity_loader(false); + parent::__construct($wsdl, $options); + } + + /** + * Checks if an argument list matches against a valid argument type list + * @param array $arguments The argument list to check + * @param array $validParameters A list of valid argument types + * @return boolean true if arguments match against validParameters + * @throws Exception invalid function signature message + */ + public function _checkArguments($arguments, $validParameters) { + $variables = ""; + foreach ($arguments as $arg) { + $type = gettype($arg); + if ($type == "object") { + $type = get_class($arg); + } + $variables .= "(".$type.")"; + } + if (!in_array($variables, $validParameters)) { + throw new Exception("Invalid parameter types: ".str_replace(")(", ", ", $variables)); + } + return true; + } + + /** + * Service Call: transferBankCard + * Parameter options: + * (transferBankCard) parameters + * @param mixed,... See function description for parameter options + * @return transferBankCardResponse + * @throws Exception invalid function signature message + */ + public function transferBankCard($mixed = null) { + $validParameters = array( + "(transferBankCard)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("transferBankCard", $args); + } + + + /** + * Service Call: validateAdvcashCardTransfer + * Parameter options: + * (validateAdvcashCardTransfer) parameters + * @param mixed,... See function description for parameter options + * @return validateAdvcashCardTransferResponse + * @throws Exception invalid function signature message + */ + public function validateAdvcashCardTransfer($mixed = null) { + $validParameters = array( + "(validateAdvcashCardTransfer)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validateAdvcashCardTransfer", $args); + } + + + /** + * Service Call: findTransaction + * Parameter options: + * (findTransaction) parameters + * @param mixed,... See function description for parameter options + * @return findTransactionResponse + * @throws Exception invalid function signature message + */ + public function findTransaction($mixed = null) { + $validParameters = array( + "(findTransaction)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("findTransaction", $args); + } + + + /** + * Service Call: validateEmailTransfer + * Parameter options: + * (validateEmailTransfer) parameters + * @param mixed,... See function description for parameter options + * @return validateEmailTransferResponse + * @throws Exception invalid function signature message + */ + public function validateEmailTransfer($mixed = null) { + $validParameters = array( + "(validateEmailTransfer)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validateEmailTransfer", $args); + } + + + /** + * Service Call: validationSendMoneyToEcurrency + * Parameter options: + * (validationSendMoneyToEcurrency) parameters + * @param mixed,... See function description for parameter options + * @return validationSendMoneyToEcurrencyResponse + * @throws Exception invalid function signature message + */ + public function validationSendMoneyToEcurrency($mixed = null) { + $validParameters = array( + "(validationSendMoneyToEcurrency)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validationSendMoneyToEcurrency", $args); + } + + + /** + * Service Call: validateAccounts + * Parameter options: + * (validateAccounts) parameters + * @param mixed,... See function description for parameter options + * @return validateAccountsResponse + * @throws Exception invalid function signature message + */ + public function validateAccounts($mixed = null) { + $validParameters = array( + "(validateAccounts)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validateAccounts", $args); + } + + + /** + * Service Call: sendMoneyToEcurrency + * Parameter options: + * (sendMoneyToEcurrency) parameters + * @param mixed,... See function description for parameter options + * @return sendMoneyToEcurrencyResponse + * @throws Exception invalid function signature message + */ + public function sendMoneyToEcurrency($mixed = null) { + $validParameters = array( + "(sendMoneyToEcurrency)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("sendMoneyToEcurrency", $args); + } + + + /** + * Service Call: transferAdvcashCard + * Parameter options: + * (transferAdvcashCard) parameters + * @param mixed,... See function description for parameter options + * @return transferAdvcashCardResponse + * @throws Exception invalid function signature message + */ + public function transferAdvcashCard($mixed = null) { + $validParameters = array( + "(transferAdvcashCard)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("transferAdvcashCard", $args); + } + + + /** + * Service Call: withdrawalThroughExternalPaymentSystem + * Parameter options: + * (withdrawalThroughExternalPaymentSystem) parameters + * @param mixed,... See function description for parameter options + * @return withdrawalThroughExternalPaymentSystemResponse + * @throws Exception invalid function signature message + */ + public function withdrawalThroughExternalPaymentSystem($mixed = null) { + $validParameters = array( + "(withdrawalThroughExternalPaymentSystem)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("withdrawalThroughExternalPaymentSystem", $args); + } + + + /** + * Service Call: currencyExchange + * Parameter options: + * (currencyExchange) parameters + * @param mixed,... See function description for parameter options + * @return currencyExchangeResponse + * @throws Exception invalid function signature message + */ + public function currencyExchange($mixed = null) { + $validParameters = array( + "(currencyExchange)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("currencyExchange", $args); + } + + + /** + * Service Call: sendMoneyToAdvcashCard + * Parameter options: + * (sendMoneyToAdvcashCard) parameters + * @param mixed,... See function description for parameter options + * @return sendMoneyToAdvcashCardResponse + * @throws Exception invalid function signature message + */ + public function sendMoneyToAdvcashCard($mixed = null) { + $validParameters = array( + "(sendMoneyToAdvcashCard)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("sendMoneyToAdvcashCard", $args); + } + + + /** + * Service Call: sendMoney + * Parameter options: + * (sendMoney) parameters + * @param mixed,... See function description for parameter options + * @return sendMoneyResponse + * @throws Exception invalid function signature message + */ + public function sendMoney($mixed = null) { + $validParameters = array( + "(sendMoney)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("sendMoney", $args); + } + + + /** + * Service Call: validationSendMoneyToAdvcashCard + * Parameter options: + * (validationSendMoneyToAdvcashCard) parameters + * @param mixed,... See function description for parameter options + * @return validationSendMoneyToAdvcashCardResponse + * @throws Exception invalid function signature message + */ + public function validationSendMoneyToAdvcashCard($mixed = null) { + $validParameters = array( + "(validationSendMoneyToAdvcashCard)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validationSendMoneyToAdvcashCard", $args); + } + + + /** + * Service Call: validationCurrencyExchange + * Parameter options: + * (validationCurrencyExchange) parameters + * @param mixed,... See function description for parameter options + * @return validationCurrencyExchangeResponse + * @throws Exception invalid function signature message + */ + public function validationCurrencyExchange($mixed = null) { + $validParameters = array( + "(validationCurrencyExchange)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validationCurrencyExchange", $args); + } + + + /** + * Service Call: emailTransfer + * Parameter options: + * (emailTransfer) parameters + * @param mixed,... See function description for parameter options + * @return emailTransferResponse + * @throws Exception invalid function signature message + */ + public function emailTransfer($mixed = null) { + $validParameters = array( + "(emailTransfer)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("emailTransfer", $args); + } + + + /** + * Service Call: sendMoneyToEmail + * Parameter options: + * (sendMoneyToEmail) parameters + * @param mixed,... See function description for parameter options + * @return sendMoneyToEmailResponse + * @throws Exception invalid function signature message + */ + public function sendMoneyToEmail($mixed = null) { + $validParameters = array( + "(sendMoneyToEmail)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("sendMoneyToEmail", $args); + } + + + /** + * Service Call: sendMoneyToExmo + * Parameter options: + * (sendMoneyToExmo) parameters + * @param mixed,... See function description for parameter options + * @return sendMoneyToExmoResponse + * @throws Exception invalid function signature message + */ + public function sendMoneyToExmo($mixed = null) { + $validParameters = array( + "(sendMoneyToExmo)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("sendMoneyToExmo", $args); + } + + + /** + * Service Call: validateTransfer + * Parameter options: + * (validateTransfer) parameters + * @param mixed,... See function description for parameter options + * @return validateTransferResponse + * @throws Exception invalid function signature message + */ + public function validateTransfer($mixed = null) { + $validParameters = array( + "(validateTransfer)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validateTransfer", $args); + } + + + /** + * Service Call: sendMoneyToBtcE + * Parameter options: + * (sendMoneyToBtcE) parameters + * @param mixed,... See function description for parameter options + * @return sendMoneyToBtcEResponse + * @throws Exception invalid function signature message + */ + public function sendMoneyToBtcE($mixed = null) { + $validParameters = array( + "(sendMoneyToBtcE)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("sendMoneyToBtcE", $args); + } + + + /** + * Service Call: register + * Parameter options: + * (register) parameters + * @param mixed,... See function description for parameter options + * @return registerResponse + * @throws Exception invalid function signature message + */ + public function register($mixed = null) { + $validParameters = array( + "(register)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("register", $args); + } + + + /** + * Service Call: validateAccount + * Parameter options: + * (validateAccount) parameters + * @param mixed,... See function description for parameter options + * @return validateAccountResponse + * @throws Exception invalid function signature message + */ + public function validateAccount($mixed = null) { + $validParameters = array( + "(validateAccount)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validateAccount", $args); + } + + + /** + * Service Call: validationSendMoneyToEmail + * Parameter options: + * (validationSendMoneyToEmail) parameters + * @param mixed,... See function description for parameter options + * @return validationSendMoneyToEmailResponse + * @throws Exception invalid function signature message + */ + public function validationSendMoneyToEmail($mixed = null) { + $validParameters = array( + "(validationSendMoneyToEmail)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validationSendMoneyToEmail", $args); + } + + + /** + * Service Call: validationSendMoneyToBankCard + * Parameter options: + * (validationSendMoneyToBankCard) parameters + * @param mixed,... See function description for parameter options + * @return validationSendMoneyToBankCardResponse + * @throws Exception invalid function signature message + */ + public function validationSendMoneyToBankCard($mixed = null) { + $validParameters = array( + "(validationSendMoneyToBankCard)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validationSendMoneyToBankCard", $args); + } + + + /** + * Service Call: makeCurrencyExchange + * Parameter options: + * (makeCurrencyExchange) parameters + * @param mixed,... See function description for parameter options + * @return makeCurrencyExchangeResponse + * @throws Exception invalid function signature message + */ + public function makeCurrencyExchange($mixed = null) { + $validParameters = array( + "(makeCurrencyExchange)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("makeCurrencyExchange", $args); + } + + + /** + * Service Call: validationSendMoney + * Parameter options: + * (validationSendMoney) parameters + * @param mixed,... See function description for parameter options + * @return validationSendMoneyResponse + * @throws Exception invalid function signature message + */ + public function validationSendMoney($mixed = null) { + $validParameters = array( + "(validationSendMoney)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validationSendMoney", $args); + } + + + /** + * Service Call: validationSendMoneyToExmo + * Parameter options: + * (validationSendMoneyToExmo) parameters + * @param mixed,... See function description for parameter options + * @return validationSendMoneyToExmoResponse + * @throws Exception invalid function signature message + */ + public function validationSendMoneyToExmo($mixed = null) { + $validParameters = array( + "(validationSendMoneyToExmo)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validationSendMoneyToExmo", $args); + } + + + /** + * Service Call: validateCurrencyExchange + * Parameter options: + * (validateCurrencyExchange) parameters + * @param mixed,... See function description for parameter options + * @return validateCurrencyExchangeResponse + * @throws Exception invalid function signature message + */ + public function validateCurrencyExchange($mixed = null) { + $validParameters = array( + "(validateCurrencyExchange)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validateCurrencyExchange", $args); + } + + + /** + * Service Call: validateWithdrawalThroughExternalPaymentSystem + * Parameter options: + * (validateWithdrawalThroughExternalPaymentSystem) parameters + * @param mixed,... See function description for parameter options + * @return validateWithdrawalThroughExternalPaymentSystemResponse + * @throws Exception invalid function signature message + */ + public function validateWithdrawalThroughExternalPaymentSystem($mixed = null) { + $validParameters = array( + "(validateWithdrawalThroughExternalPaymentSystem)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validateWithdrawalThroughExternalPaymentSystem", $args); + } + + + /** + * Service Call: validationSendMoneyToBtcE + * Parameter options: + * (validationSendMoneyToBtcE) parameters + * @param mixed,... See function description for parameter options + * @return validationSendMoneyToBtcEResponse + * @throws Exception invalid function signature message + */ + public function validationSendMoneyToBtcE($mixed = null) { + $validParameters = array( + "(validationSendMoneyToBtcE)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validationSendMoneyToBtcE", $args); + } + + + /** + * Service Call: validateBankCardTransfer + * Parameter options: + * (validateBankCardTransfer) parameters + * @param mixed,... See function description for parameter options + * @return validateBankCardTransferResponse + * @throws Exception invalid function signature message + */ + public function validateBankCardTransfer($mixed = null) { + $validParameters = array( + "(validateBankCardTransfer)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("validateBankCardTransfer", $args); + } + + + /** + * Service Call: makeTransfer + * Parameter options: + * (makeTransfer) parameters + * @param mixed,... See function description for parameter options + * @return makeTransferResponse + * @throws Exception invalid function signature message + */ + public function makeTransfer($mixed = null) { + $validParameters = array( + "(makeTransfer)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("makeTransfer", $args); + } + + + /** + * Service Call: getBalances + * Parameter options: + * (getBalances) parameters + * @param mixed,... See function description for parameter options + * @return getBalancesResponse + * @throws Exception invalid function signature message + */ + public function getBalances($mixed = null) { + $validParameters = array( + "(getBalances)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("getBalances", $args); + } + + + /** + * Service Call: checkCurrencyExchange + * Parameter options: + * (checkCurrencyExchange) parameters + * @param mixed,... See function description for parameter options + * @return checkCurrencyExchangeResponse + * @throws Exception invalid function signature message + */ + public function checkCurrencyExchange($mixed = null) { + $validParameters = array( + "(checkCurrencyExchange)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("checkCurrencyExchange", $args); + } + + + /** + * Service Call: sendMoneyToBankCard + * Parameter options: + * (sendMoneyToBankCard) parameters + * @param mixed,... See function description for parameter options + * @return sendMoneyToBankCardResponse + * @throws Exception invalid function signature message + */ + public function sendMoneyToBankCard($mixed = null) { + $validParameters = array( + "(sendMoneyToBankCard)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("sendMoneyToBankCard", $args); + } + + + /** + * Service Call: history + * Parameter options: + * (history) parameters + * @param mixed,... See function description for parameter options + * @return historyResponse + * @throws Exception invalid function signature message + */ + public function history($mixed = null) { + $validParameters = array( + "(history)", + ); + $args = func_get_args(); + $this->_checkArguments($args, $validParameters); + return $this->__soapCall("history", $args); + } + + public function getAuthenticationToken($securityWord) { + $gmt = gmdate('Ymd:H'); + $token = hash("sha256", $securityWord . ':' . $gmt); + return $token; + } + +}} + +?> \ No newline at end of file diff --git a/inc/payment/entromoney.php b/inc/payment/entromoney.php new file mode 100644 index 0000000..ae8f6f9 --- /dev/null +++ b/inc/payment/entromoney.php @@ -0,0 +1,178 @@ +{'_'.$p} = $config[$p]; + } + } + } + + // -------------------------------------------------------------------- + + /** + * Create hash + * @param array $data Data that will be sent + */ + public function create_hash(array $data) + { + $hash = array($this->_sci_pass); + + foreach (array( + 'receiver', 'amount', 'desc', 'payment_id', + 'url_status', 'url_success', 'url_fail', + ) as $p) + { + $hash[] = (isset($data[$p])) ? $data[$p] : ''; + } + + $hash = implode('|', $hash); + $hash = md5($hash); + + return $hash; + } + + // -------------------------------------------------------------------- + + /** + * Get transaction details from data return by sci callback + * @param array $input Data received from sci callback + * @param string $error Error received + * @return false || (object)Transaction details + */ + public function query(array $input, &$error = '') + { + // Get hash + $hash = (isset($input['hash'])) ? $input['hash'] : ''; + if ( ! $hash) + { + $error = 'Invalid hash'; + return false; + } + + // Create security + $security = array($this->_sci_pass, $hash); + $security = implode('|', $security); + $security = md5($security); + + // Send data + $data = array(); + $data['sci_user'] = $this->_sci_user; + $data['sci_id'] = $this->_sci_id; + $data['hash'] = $hash; + $data['security'] = $security; + $res = $this->_curl(self::URL_SCI_QUERY, $data); + $res = @json_decode($res); + + // Error + if (empty($res->status)) + { + $error = (isset($res->result)) ? $res->result : 'Can not connect to SCI'; + return false; + } + + return $res->result; + } + + // -------------------------------------------------------------------- + + /** + * Send data to the server end received response + * @param string $url URL send request + * @param array $data Data that will be send + */ + protected function _curl($url, array $data = array()) + { + // Check curl library + if ( ! function_exists('curl_init')) + { + exit('Curl library not installed.'); + } + + // Set options + $opts = array(); + $opts[CURLOPT_URL] = $url; + $opts[CURLOPT_USERAGENT] = 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.43 Safari/537.31'; + $opts[CURLOPT_HEADER] = false; + $opts[CURLOPT_RETURNTRANSFER] = true; + $opts[CURLOPT_TIMEOUT] = 15; + + if (count($data)) + { + $opts[CURLOPT_POST] = true; + $opts[CURLOPT_POSTFIELDS] = http_build_query($data); + } + + if (preg_match('#^https:#i', $url)) + { + $opts[CURLOPT_SSL_VERIFYPEER] = FALSE; + $opts[CURLOPT_SSL_VERIFYHOST] = 0; + //$opts[CURLOPT_SSLVERSION] = 3; + } + + // Init curl + $curl = curl_init(); + curl_setopt_array($curl, $opts); + $res = curl_exec($curl); + if ( + curl_errno($curl) || + curl_getinfo($curl, CURLINFO_HTTP_CODE) != 200 + ) + { + return false; + } + + return $res; + } + +} + + +/** + * Paygate Exception class + */ +if ( ! class_exists('Paygate_Exception')) +{ + class Paygate_Exception extends Exception {} +} + diff --git a/inc/payment/entromoney_api.php b/inc/payment/entromoney_api.php new file mode 100644 index 0000000..36bc6d9 --- /dev/null +++ b/inc/payment/entromoney_api.php @@ -0,0 +1,213 @@ +{'_'.$p} = $config[$p]; + } + } + } + + // -------------------------------------------------------------------- + + /** + * Get account name + * @param string $purse Account purse + */ + public function acc_name($purse) + { + $params = array(); + $params['purse'] = $purse; + + return $this->_exec('acc_name', $params); + } + + // -------------------------------------------------------------------- + + /** + * Get balance of purse + * @param string $purse Purse num + */ + public function balance($purse = '') + { + $params = array(); + $params['purse'] = $purse; + + return $this->_exec('balance', $params); + } + + // -------------------------------------------------------------------- + + /** + * Get history + * @param array $params History parameters + * The available parameters are: + * batch Transaction id + * date_from Date from (Y-m-d) + * date_to Date to (Y-m-d) + * purse Your purse + * account_purse Account purse + * type Transaction type (transfer || transfer_api || transfer_sci) + * status Transaction status (pending || completed || cancel) + * payment_id Payment id + * rows_per_page How many transactions to see per page (default is 10) + * current_page Current page + */ + public function history(array $params = array()) + { + return $this->_exec('history', $params); + } + + // -------------------------------------------------------------------- + + /** + * Send money to other purse + * @param string $sender_purse Sender purse + * @param string $receiver_purse Receiver purse + * @param float $amount Amount + * @param string $desc Transfer description + * @param string $payment_id Payment id + */ + public function transfer($sender_purse, $receiver_purse, $amount, $desc = '', $payment_id = '') + { + $params = array(); + $params['sender_purse'] = $sender_purse; + $params['receiver_purse'] = $receiver_purse; + $params['amount'] = $amount; + $params['desc'] = $desc; + $params['payment_id'] = $payment_id; + + return $this->_exec('transfer', $params); + } + + // -------------------------------------------------------------------- + + /** + * Send data to the API end received response + * @param string $act Api action + * @param array $params Params that will be send + */ + protected function _exec($act, array $params = array()) + { + // Set api config + $params['api_user'] = $this->_api_user; + $params['api_id'] = $this->_api_id; + $params['api_pass'] = $this->_api_pass; + + // Request to api + $url = self::URL_API . $act . '.html'; + $res = $this->_curl($url, $params); + $res = @json_decode($res); + + // Error + if ( ! isset($res->status)) + { + $res = array(); + $res['status'] = 0; + $res['result']['error_code'] = 404; + $res['result']['error_message'] = 'Can not connect to api'; + $res = json_decode(json_encode($res)); + } + + return $res; + } + + // -------------------------------------------------------------------- + + /** + * Send data to the server end received response + * @param string $url URL send request + * @param array $data Data that will be send + */ + protected function _curl($url, array $data = array()) + { + // Check curl library + if ( ! function_exists('curl_init')) + { + exit('Curl library not installed.'); + } + + // Set options + $opts = array(); + $opts[CURLOPT_URL] = $url; + $opts[CURLOPT_USERAGENT] = 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.43 Safari/537.31'; + $opts[CURLOPT_HEADER] = false; + $opts[CURLOPT_RETURNTRANSFER] = true; + $opts[CURLOPT_TIMEOUT] = 15; + + if (count($data)) + { + $opts[CURLOPT_POST] = true; + $opts[CURLOPT_POSTFIELDS] = http_build_query($data); + } + + if (preg_match('#^https:#i', $url)) + { + $opts[CURLOPT_SSL_VERIFYPEER] = FALSE; + $opts[CURLOPT_SSL_VERIFYHOST] = 0; + //$opts[CURLOPT_SSLVERSION] = 3; + } + + // Init curl + $curl = curl_init(); + curl_setopt_array($curl, $opts); + $res = curl_exec($curl); + if ( + curl_errno($curl) || + curl_getinfo($curl, CURLINFO_HTTP_CODE) != 200 + ) + { + return false; + } + + return $res; + } + +} + + +/** + * Paygate Exception class + */ +if ( ! class_exists('Paygate_Exception')) +{ + class Paygate_Exception extends Exception {} +} + diff --git a/inc/payment/index.htm b/inc/payment/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/inc/payment/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/inc/payment/paypal_class.php b/inc/payment/paypal_class.php new file mode 100644 index 0000000..7cc483c --- /dev/null +++ b/inc/payment/paypal_class.php @@ -0,0 +1,235 @@ + + * @copyright (C) 2008 - 2009 Eric.Wang + * + */ + +/** filename of the IPN log */ +define('LOG_FILE', '.ipn_results.log'); + +define('SSL_P_URL', 'https://www.paypal.com/cgi-bin/webscr'); +define('SSL_SAND_URL','https://www.sandbox.paypal.com/cgi-bin/webscr'); + +class paypal_class { + + private $ipn_status; // holds the last status + public $admin_mail; // receive the ipn status report pre transaction + public $paypal_mail; // paypal account, if set, class need to verify receiver + public $txn_id; // array: if the txn_id array existed, class need to verified the txn_id duplicate + public $ipn_log; // bool: log IPN results to text file? + private $ipn_response; // holds the IPN response from paypal + public $ipn_data = array(); // array contains the POST values for IPN + private $fields = array(); // array holds the fields to submit to paypal + private $ipn_debug; // ipn_debug + + // initialization constructor. Called when class is created. + function __construct() { + + $this->ipn_status = ''; + $this->admin_mail = null; + $this->paypal_mail = null; + $this->txn_id = null; + $this->tax = null; + $this->ipn_log = true; + $this->ipn_response = ''; + $this->ipn_debug = false; + } + + // adds a key=>value pair to the fields array, which is what will be + // sent to paypal as POST variables. + public function add_field($field, $value) { + $this->fields["$field"] = $value; + } + + + // this function actually generates an entire HTML page consisting of + // a form with hidden elements which is submitted to paypal via the + // BODY element's onLoad attribute. We do this so that you can validate + // any POST vars from you custom form before submitting to paypal. So + // basically, you'll have your own form which is submitted to your script + // to validate the data, which in turn calls this function to create + // another hidden form and submit to paypal. + + // The user will briefly see a message on the screen that reads: + // "Please wait, your order is being processed..." and then immediately + // is redirected to paypal. + public function submit_paypal_post() { + + $paypal_url = ($_GET['sandbox'] == 1) ? SSL_SAND_URL : SSL_P_URL; + echo "
    \n"; + if (isset($this->paypal_mail))echo "paypal_mail\"/>\n"; + foreach ($this->fields as $name => $value) { + echo "\n"; + } + echo "\n"; + + echo "
    \n"; + } + +/** + * validate the IPN + * + * @return bool IPN validation result + */ + public function validate_ipn() { + + $hostname = gethostbyaddr ( $_SERVER ['REMOTE_ADDR'] ); + if (! preg_match ( '/paypal\.com$/', $hostname )) { + $this->ipn_status = 'Validation post isn\'t from PayPal'; + $this->log_ipn_results ( false ); + return false; + } + + if (isset($this->paypal_mail) && strtolower ( $_POST['receiver_email'] ) != strtolower(trim( $this->paypal_mail ))) { + $this->ipn_status = "Receiver Email Not Match"; + $this->log_ipn_results ( false ); + return false; + } + + if (isset($this->txn_id)&& in_array($_POST['txn_id'],$this->txn_id)) { + $this->ipn_status = "txn_id have a duplicate"; + $this->log_ipn_results ( false ); + return false; + } + + // parse the paypal URL + $paypal_url = ($_POST['test_ipn'] == 1) ? SSL_SAND_URL : SSL_P_URL; + $url_parsed = parse_url($paypal_url); + + // generate the post string from the _POST vars aswell as load the + // _POST vars into an arry so we can play with them from the calling + // script. + $post_string = ''; + foreach ($_POST as $field=>$value) { + $this->ipn_data["$field"] = $value; + $post_string .= $field.'='.urlencode(stripslashes($value)).'&'; + } + $post_string.="cmd=_notify-validate"; // append ipn command + + // open the connection to paypal + if (isset($_POST['test_ipn']) ) + $fp = fsockopen ( 'ssl://www.sandbox.paypal.com', "443", $err_num, $err_str, 60 ); + else + $fp = fsockopen ( 'ssl://www.paypal.com', "443", $err_num, $err_str, 60 ); + + if(!$fp) { + // could not open the connection. If loggin is on, the error message + // will be in the log. + $this->ipn_status = "fsockopen error no. $err_num: $err_str"; + $this->log_ipn_results(false); + return false; + } else { + // Post the data back to paypal + fputs($fp, "POST $url_parsed[path] HTTP/1.1\r\n"); + fputs($fp, "Host: $url_parsed[host]\r\n"); + fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n"); + fputs($fp, "Content-length: ".strlen($post_string)."\r\n"); + fputs($fp, "Connection: close\r\n\r\n"); + fputs($fp, $post_string . "\r\n\r\n"); + + // loop through the response from the server and append to variable + while(!feof($fp)) { + $this->ipn_response .= fgets($fp, 1024); + } + fclose($fp); // close connection + } + + // Invalid IPN transaction. Check the $ipn_status and log for details. + if (! eregi("VERIFIED",$this->ipn_response)) { + $this->ipn_status = 'IPN Validation Failed'; + $this->log_ipn_results(false); + return false; + } else { + $this->ipn_status = "IPN VERIFIED"; + $this->log_ipn_results(true); + return true; + } + } + + private function log_ipn_results($success) { + $hostname = gethostbyaddr ( $_SERVER ['REMOTE_ADDR'] ); + // Timestamp + $text = '[' . date ( 'm/d/Y g:i A' ) . '] - '; + // Success or failure being logged? + if ($success) + $this->ipn_status = $text . 'SUCCESS:' . $this->ipn_status . "!\n"; + else + $this->ipn_status = $text . 'FAIL: ' . $this->ipn_status . "!\n"; + // Log the POST variables + $this->ipn_status .= "[From:" . $hostname . "|" . $_SERVER ['REMOTE_ADDR'] . "]IPN POST Vars Received By Paypal_IPN Response API:\n"; + foreach ( $this->ipn_data as $key => $value ) { + $this->ipn_status .= "$key=$value \n"; + } + // Log the response from the paypal server + $this->ipn_status .= "IPN Response from Paypal Server:\n" . $this->ipn_response; + $this->write_to_log (); + } + + private function write_to_log() { + if (! $this->ipn_log) + return; // is logging turned off? + + // Write to log + $fp = fopen ( LOG_FILE , 'a' ); + fwrite ( $fp, $this->ipn_status . "\n\n" ); + fclose ( $fp ); // close file + chmod ( LOG_FILE , 0600 ); + } + + public function send_report($subject) { + $body .= "from " . $this->ipn_data ['payer_email'] . " on " . date ( 'm/d/Y' ); + $body .= " at " . date ( 'g:i A' ) . "\n\nDetails:\n" . $this->ipn_status; + mail ( $this->admin_mail, $subject, $body ); + } + + public function print_report(){ + $find [] = "\n"; + $replace [] = '
    '; + $html_content = str_replace ( $find, $replace, $this->ipn_status ); + echo $html_content; + } + + public function dump_fields() { + + // Used for debugging, this function will output all the field/value pairs + // that are currently defined in the instance of the class using the + // add_field() function. + echo "

    paypal_class->dump_fields() Output:

    "; + echo " + + + + "; + ksort($this->fields); + foreach ($this->fields as $key => $value) {echo "";} + echo "
    Field NameValue
    $key".urldecode($value)." 

    "; + } + + private function debug($msg) { + + if (! $this->ipn_debug) + return; + + $today = date ( "Y-m-d H:i:s " ); + $myFile = ".ipn_debugs.log"; + $fh = fopen ( $myFile, 'a' ) or die ( "Can't open debug file. Please manually create the 'debug.log' file and make it writable." ); + $ua_simple = preg_replace ( "/(.*)\s\(.*/", "\\1", $_SERVER ['HTTP_USER_AGENT'] ); + fwrite ( $fh, $today . " [from: " . $_SERVER ['REMOTE_ADDR'] . "|$ua_simple] - " . $msg . "\n" ); + fclose ( $fh ); + chmod ( $myFile, 0600 ); + } + +} + + + diff --git a/inc/payment/paypal_ipn/PaypalIPN.php b/inc/payment/paypal_ipn/PaypalIPN.php new file mode 100644 index 0000000..edc580e --- /dev/null +++ b/inc/payment/paypal_ipn/PaypalIPN.php @@ -0,0 +1,141 @@ +use_sandbox = true; + } + + /** + * Sets curl to use php curl's built in certs (may be required in some + * environments). + * @return void + */ + public function usePHPCerts() + { + $this->use_local_certs = false; + } + + /** + * Determine endpoint to post the verification data to. + * + * @return string + */ + public function getPaypalUri() + { + if ($this->use_sandbox) { + return self::SANDBOX_VERIFY_URI; + } else { + return self::VERIFY_URI; + } + } + + /** + * Verification Function + * Sends the incoming post data back to PayPal using the cURL library. + * + * @return bool + * @throws Exception + */ + public function verifyIPN() + { + if ( ! count($_POST)) { + throw new Exception("Missing POST Data"); + } + + $raw_post_data = file_get_contents('php://input'); + $raw_post_array = explode('&', $raw_post_data); + $myPost = array(); + foreach ($raw_post_array as $keyval) { + $keyval = explode('=', $keyval); + if (count($keyval) == 2) { + // Since we do not want the plus in the datetime string to be encoded to a space, we manually encode it. + if ($keyval[0] === 'payment_date') { + if (substr_count($keyval[1], '+') === 1) { + $keyval[1] = str_replace('+', '%2B', $keyval[1]); + } + } + $myPost[$keyval[0]] = urldecode($keyval[1]); + } + } + + // Build the body of the verification post request, adding the _notify-validate command. + $req = 'cmd=_notify-validate'; + $get_magic_quotes_exists = false; + if (function_exists('get_magic_quotes_gpc')) { + $get_magic_quotes_exists = true; + } + foreach ($myPost as $key => $value) { + if ($get_magic_quotes_exists == true && get_magic_quotes_gpc() == 1) { + $value = urlencode(stripslashes($value)); + } else { + $value = urlencode($value); + } + $req .= "&$key=$value"; + } + + // Post the data back to PayPal, using curl. Throw exceptions if errors occur. + $ch = curl_init($this->getPaypalUri()); + curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); + curl_setopt($ch, CURLOPT_POST, 1); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($ch, CURLOPT_POSTFIELDS, $req); + curl_setopt($ch, CURLOPT_SSLVERSION, 6); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1); + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); + + // This is often required if the server is missing a global cert bundle, or is using an outdated one. + if ($this->use_local_certs) { + curl_setopt($ch, CURLOPT_CAINFO, __DIR__ . "/cert/cacert.pem"); + } + curl_setopt($ch, CURLOPT_FORBID_REUSE, 1); + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); + curl_setopt($ch, CURLOPT_HTTPHEADER, array( + 'User-Agent: PHP-IPN-Verification-Script', + 'Connection: Close', + )); + $res = curl_exec($ch); + if ( ! ($res)) { + $errno = curl_errno($ch); + $errstr = curl_error($ch); + curl_close($ch); + throw new Exception("cURL error: [$errno] $errstr"); + } + + $info = curl_getinfo($ch); + $http_code = $info['http_code']; + if ($http_code != 200) { + throw new Exception("PayPal responded with http code $http_code"); + } + + curl_close($ch); + + // Check if PayPal verifies the IPN data, and if so, return true. + if ($res == self::VALID) { + return true; + } else { + return false; + } + } +} diff --git a/inc/payment/paypal_ipn/cert/cacert.pem b/inc/payment/paypal_ipn/cert/cacert.pem new file mode 100644 index 0000000..74e5f52 --- /dev/null +++ b/inc/payment/paypal_ipn/cert/cacert.pem @@ -0,0 +1,4036 @@ +## +## Bundle of CA Root Certificates +## +## Certificate data from Mozilla as of: Wed Sep 14 03:12:05 2016 +## +## This is a bundle of X.509 certificates of public Certificate Authorities +## (CA). These were automatically extracted from Mozilla's root certificates +## file (certdata.txt). This file can be found in the mozilla source tree: +## http://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt +## +## It contains the certificates in PEM format and therefore +## can be directly used with curl / libcurl / php_curl, or with +## an Apache+mod_ssl webserver for SSL client authentication. +## Just configure this file as the SSLCACertificateFile. +## +## Conversion done with mk-ca-bundle.pl version 1.26. +## SHA256: 01bbf1ecdd693f554ff4dcbe15880b3e6c33188a956c15ff845d313ca69cfeb8 +## + + +GlobalSign Root CA +================== +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkGA1UEBhMCQkUx +GTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkds +b2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAwMDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNV +BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYD +VQQDExJHbG9iYWxTaWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDa +DuaZjc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavpxy0Sy6sc +THAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp1Wrjsok6Vjk4bwY8iGlb +Kk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdGsnUOhugZitVtbNV4FpWi6cgKOOvyJBNP +c1STE4U6G7weNLWLBYy5d4ux2x8gkasJU26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrX +gzT/LCrBbBlDSgeF59N89iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0BAQUF +AAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOzyj1hTdNGCbM+w6Dj +Y1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE38NflNUVyRRBnMRddWQVDf9VMOyG +j/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymPAbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhH +hm4qxFYxldBniYUr+WymXUadDKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveC +X4XSQRjbgbMEHMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- + +GlobalSign Root CA - R2 +======================= +-----BEGIN CERTIFICATE----- +MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4GA1UECxMXR2xv +YmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh +bFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT +aWduIFJvb3QgQ0EgLSBSMjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln +bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6 +ErPLv4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8eoLrvozp +s6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklqtTleiDTsvHgMCJiEbKjN +S7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzdC9XZzPnqJworc5HGnRusyMvo4KD0L5CL +TfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pazq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6C +ygPCm48CAwEAAaOBnDCBmTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQUm+IHV2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nbG9i +YWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG3lm0mi3f3BmGLjAN +BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp +9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu +01yiPqFbQfXf5WRDLenVOavSot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG7 +9G+dwfCMNYxdAfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 +TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== +-----END CERTIFICATE----- + +Verisign Class 3 Public Primary Certification Authority - G3 +============================================================ +-----BEGIN CERTIFICATE----- +MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV +UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv +cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl +IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy +dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkg +Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAMu6nFL8eB8aHm8bN3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1 +EUGO+i2tKmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGukxUc +cLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBmCC+Vk7+qRy+oRpfw +EuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJXwzw3sJ2zq/3avL6QaaiMxTJ5Xpj +055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWuimi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA +ERSWwauSCPc/L8my/uRan2Te2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5f +j267Cz3qWhMeDGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC +/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565pF4ErWjfJXir0 +xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGtTxzhT5yvDwyd93gN2PQ1VoDa +t20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ== +-----END CERTIFICATE----- + +Entrust.net Premium 2048 Secure Server CA +========================================= +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChMLRW50cnVzdC5u +ZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBpbmNvcnAuIGJ5IHJlZi4gKGxp +bWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNV +BAMTKkVudHJ1c3QubmV0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQx +NzUwNTFaFw0yOTA3MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3 +d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTEl +MCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5u +ZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEArU1LqRKGsuqjIAcVFmQqK0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOL +Gp18EzoOH1u3Hs/lJBQesYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSr +hRSGlVuXMlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVTXTzW +nLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/HoZdenoVve8AjhUi +VBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH4QIDAQABo0IwQDAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJ +KoZIhvcNAQEFBQADggEBADubj1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPy +T/4xmf3IDExoU8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5bu/8j72gZyxKT +J1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+bYQLCIt+jerXmCHG8+c8eS9e +nNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/ErfF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- + +Baltimore CyberTrust Root +========================= +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE +ChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li +ZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC +SUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs +dGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME +uyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB +UnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C +G9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9 +XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr +l3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI +VDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB +BQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh +cL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5 +hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa +Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H +RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- + +AddTrust Low-Value Services Root +================================ +-----BEGIN CERTIFICATE----- +MIIEGDCCAwCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQGEwJTRTEUMBIGA1UEChML +QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYDVQQDExhBZGRU +cnVzdCBDbGFzcyAxIENBIFJvb3QwHhcNMDAwNTMwMTAzODMxWhcNMjAwNTMwMTAzODMxWjBlMQsw +CQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBO +ZXR3b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCWltQhSWDia+hBBwzexODcEyPNwTXH+9ZOEQpnXvUGW2ulCDtbKRY6 +54eyNAbFvAWlA3yCyykQruGIgb3WntP+LVbBFc7jJp0VLhD7Bo8wBN6ntGO0/7Gcrjyvd7ZWxbWr +oulpOj0OM3kyP3CCkplhbY0wCI9xP6ZIVxn4JdxLZlyldI+Yrsj5wAYi56xz36Uu+1LcsRVlIPo1 +Zmne3yzxbrww2ywkEtvrNTVokMsAsJchPXQhI2U0K7t4WaPW4XY5mqRJjox0r26kmqPZm9I4XJui +GMx1I4S+6+JNM3GOGvDC+Mcdoq0Dlyz4zyXG9rgkMbFjXZJ/Y/AlyVMuH79NAgMBAAGjgdIwgc8w +HQYDVR0OBBYEFJWxtPCUtr3H2tERCSG+wa9J/RB7MAsGA1UdDwQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MIGPBgNVHSMEgYcwgYSAFJWxtPCUtr3H2tERCSG+wa9J/RB7oWmkZzBlMQswCQYDVQQGEwJT +RTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEw +HwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBACxt +ZBsfzQ3duQH6lmM0MkhHma6X7f1yFqZzR1r0693p9db7RcwpiURdv0Y5PejuvE1Uhh4dbOMXJ0Ph +iVYrqW9yTkkz43J8KiOavD7/KCrto/8cI7pDVwlnTUtiBi34/2ydYB7YHEt9tTEv2dB8Xfjea4MY +eDdXL+gzB2ffHsdrKpV2ro9Xo/D0UrSpUwjP4E/TelOL/bscVjby/rK25Xa71SJlpz/+0WatC7xr +mYbvP33zGDLKe8bjq2RGlfgmadlVg3sslgf/WSxEo8bl6ancoWOAWiFeIc9TVPC6b4nbqKqVz4vj +ccweGyBECMB6tkD9xOQ14R0WHNC8K47Wcdk= +-----END CERTIFICATE----- + +AddTrust External Root +====================== +-----BEGIN CERTIFICATE----- +MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChML +QWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYD +VQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEw +NDgzOFowbzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRU +cnVzdCBFeHRlcm5hbCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0Eg +Um9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvtH7xsD821 ++iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9uMq/NzgtHj6RQa1wVsfw +Tz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzXmk6vBbOmcZSccbNQYArHE504B4YCqOmo +aSYYkKtMsE8jqzpPhNjfzp/haW+710LXa0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy +2xSoRcRdKn23tNbE7qzNE0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv7 +7+ldU9U0WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYDVR0P +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0Jvf6xCZU7wO94CTL +VBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEmMCQGA1UECxMdQWRk +VHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsxIjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENB +IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZl +j7DYd7usQWxHYINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5 +6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvCNr4TDea9Y355 +e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEXc4g/VhsxOBi0cQ+azcgOno4u +G+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5amnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ= +-----END CERTIFICATE----- + +AddTrust Public Services Root +============================= +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQGEwJTRTEUMBIGA1UEChML +QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSAwHgYDVQQDExdBZGRU +cnVzdCBQdWJsaWMgQ0EgUm9vdDAeFw0wMDA1MzAxMDQxNTBaFw0yMDA1MzAxMDQxNTBaMGQxCzAJ +BgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5l +dHdvcmsxIDAeBgNVBAMTF0FkZFRydXN0IFB1YmxpYyBDQSBSb290MIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEA6Rowj4OIFMEg2Dybjxt+A3S72mnTRqX4jsIMEZBRpS9mVEBV6tsfSlbu +nyNu9DnLoblv8n75XYcmYZ4c+OLspoH4IcUkzBEMP9smcnrHAZcHF/nXGCwwfQ56HmIexkvA/X1i +d9NEHif2P0tEs7c42TkfYNVRknMDtABp4/MUTu7R3AnPdzRGULD4EfL+OHn3Bzn+UZKXC1sIXzSG +Aa2Il+tmzV7R/9x98oTaunet3IAIx6eH1lWfl2royBFkuucZKT8Rs3iQhCBSWxHveNCD9tVIkNAw +HM+A+WD+eeSI8t0A65RF62WUaUC6wNW0uLp9BBGo6zEFlpROWCGOn9Bg/QIDAQABo4HRMIHOMB0G +A1UdDgQWBBSBPjfYkrAfd59ctKtzquf2NGAv+jALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zCBjgYDVR0jBIGGMIGDgBSBPjfYkrAfd59ctKtzquf2NGAv+qFopGYwZDELMAkGA1UEBhMCU0Ux +FDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29yazEgMB4G +A1UEAxMXQWRkVHJ1c3QgUHVibGljIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBAAP3FUr4 +JNojVhaTdt02KLmuG7jD8WS6IBh4lSknVwW8fCr0uVFV2ocC3g8WFzH4qnkuCRO7r7IgGRLlk/lL ++YPoRNWyQSW/iHVv/xD8SlTQX/D67zZzfRs2RcYhbbQVuE7PnFylPVoAjgbjPGsye/Kf8Lb93/Ao +GEjwxrzQvzSAlsJKsW2Ox5BF3i9nrEUEo3rcVZLJR2bYGozH7ZxOmuASu7VqTITh4SINhwBk/ox9 +Yjllpu9CtoAlEmEBqCQTcAARJl/6NVDFSMwGR+gn2HCNX2TmoUQmXiLsks3/QppEIW1cxeMiHV9H +EufOX1362KqxMy3ZdvJOOjMMK7MtkAY= +-----END CERTIFICATE----- + +AddTrust Qualified Certificates Root +==================================== +-----BEGIN CERTIFICATE----- +MIIEHjCCAwagAwIBAgIBATANBgkqhkiG9w0BAQUFADBnMQswCQYDVQQGEwJTRTEUMBIGA1UEChML +QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSMwIQYDVQQDExpBZGRU +cnVzdCBRdWFsaWZpZWQgQ0EgUm9vdDAeFw0wMDA1MzAxMDQ0NTBaFw0yMDA1MzAxMDQ0NTBaMGcx +CzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQ +IE5ldHdvcmsxIzAhBgNVBAMTGkFkZFRydXN0IFF1YWxpZmllZCBDQSBSb290MIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5B6a/twJWoekn0e+EV+vhDTbYjx5eLfpMLXsDBwqxBb/4Oxx +64r1EW7tTw2R0hIYLUkVAcKkIhPHEWT/IhKauY5cLwjPcWqzZwFZ8V1G87B4pfYOQnrjfxvM0PC3 +KP0q6p6zsLkEqv32x7SxuCqg+1jxGaBvcCV+PmlKfw8i2O+tCBGaKZnhqkRFmhJePp1tUvznoD1o +L/BLcHwTOK28FSXx1s6rosAx1i+f4P8UWfyEk9mHfExUE+uf0S0R+Bg6Ot4l2ffTQO2kBhLEO+GR +wVY18BTcZTYJbqukB8c10cIDMzZbdSZtQvESa0NvS3GU+jQd7RNuyoB/mC9suWXY6QIDAQABo4HU +MIHRMB0GA1UdDgQWBBQ5lYtii1zJ1IC6WA+XPxUIQ8yYpzALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zCBkQYDVR0jBIGJMIGGgBQ5lYtii1zJ1IC6WA+XPxUIQ8yYp6FrpGkwZzELMAkGA1UE +BhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29y +azEjMCEGA1UEAxMaQWRkVHJ1c3QgUXVhbGlmaWVkIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBABmrder4i2VhlRO6aQTvhsoToMeqT2QbPxj2qC0sVY8FtzDqQmodwCVRLae/DLPt7wh/bDxG +GuoYQ992zPlmhpwsaPXpF/gxsxjE1kh9I0xowX67ARRvxdlu3rsEQmr49lx95dr6h+sNNVJn0J6X +dgWTP5XHAeZpVTh/EGGZyeNfpso+gmNIquIISD6q8rKFYqa0p9m9N5xotS1WfbC3P6CxB9bpT9ze +RXEwMn8bLgn5v1Kh7sKAPgZcLlVAwRv1cEWw3F369nJad9Jjzc9YiQBCYz95OdBEsIJuQRno3eDB +iFrRHnGTHyQwdOUeqN48Jzd/g66ed8/wMLH/S5noxqE= +-----END CERTIFICATE----- + +Entrust Root Certification Authority +==================================== +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMCVVMxFjAUBgNV +BAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0Lm5ldC9DUFMgaXMgaW5jb3Jw +b3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMWKGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsG +A1UEAxMkRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0 +MloXDTI2MTEyNzIwNTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMu +MTkwNwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSByZWZlcmVu +Y2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNVBAMTJEVudHJ1c3QgUm9v +dCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +ALaVtkNC+sZtKm9I35RMOVcF7sN5EUFoNu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYsz +A9u3g3s+IIRe7bJWKKf44LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOww +Cj0Yzfv9KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGIrb68 +j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi94DkZfs0Nw4pgHBN +rziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOBsDCBrTAOBgNVHQ8BAf8EBAMCAQYw +DwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAigA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1 +MzQyWjAfBgNVHSMEGDAWgBRokORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DH +hmak8fdLQ/uEvW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9tO1KzKtvn1ISM +Y/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6ZuaAGAT/3B+XxFNSRuzFVJ7yVTa +v52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTS +W3iDVuycNsMm4hH2Z0kdkquM++v/eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0 +tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +RSA Security 2048 v3 +==================== +-----BEGIN CERTIFICATE----- +MIIDYTCCAkmgAwIBAgIQCgEBAQAAAnwAAAAKAAAAAjANBgkqhkiG9w0BAQUFADA6MRkwFwYDVQQK +ExBSU0EgU2VjdXJpdHkgSW5jMR0wGwYDVQQLExRSU0EgU2VjdXJpdHkgMjA0OCBWMzAeFw0wMTAy +MjIyMDM5MjNaFw0yNjAyMjIyMDM5MjNaMDoxGTAXBgNVBAoTEFJTQSBTZWN1cml0eSBJbmMxHTAb +BgNVBAsTFFJTQSBTZWN1cml0eSAyMDQ4IFYzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAt49VcdKA3XtpeafwGFAyPGJn9gqVB93mG/Oe2dJBVGutn3y+Gc37RqtBaB4Y6lXIL5F4iSj7 +Jylg/9+PjDvJSZu1pJTOAeo+tWN7fyb9Gd3AIb2E0S1PRsNO3Ng3OTsor8udGuorryGlwSMiuLgb +WhOHV4PR8CDn6E8jQrAApX2J6elhc5SYcSa8LWrg903w8bYqODGBDSnhAMFRD0xS+ARaqn1y07iH +KrtjEAMqs6FPDVpeRrc9DvV07Jmf+T0kgYim3WBU6JU2PcYJk5qjEoAAVZkZR73QpXzDuvsf9/UP ++Ky5tfQ3mBMY3oVbtwyCO4dvlTlYMNpuAWgXIszACwIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/ +MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQHw1EwpKrpRa41JPr/JCwz0LGdjDAdBgNVHQ4E +FgQUB8NRMKSq6UWuNST6/yQsM9CxnYwwDQYJKoZIhvcNAQEFBQADggEBAF8+hnZuuDU8TjYcHnmY +v/3VEhF5Ug7uMYm83X/50cYVIeiKAVQNOvtUudZj1LGqlk2iQk3UUx+LEN5/Zb5gEydxiKRz44Rj +0aRV4VCT5hsOedBnvEbIvz8XDZXmxpBp3ue0L96VfdASPz0+f00/FGj1EVDVwfSQpQgdMWD/YIwj +VAqv/qFuxdF6Kmh4zx6CCiC0H63lhbJqaHVOrSU3lIW+vaHU6rcMSzyd6BIA8F+sDeGscGNz9395 +nzIlQnQFgCi/vcEkllgVsRch6YlL2weIZ/QVrXA+L02FO8K32/6YaCOJ4XQP3vTFhGMpG8zLB8kA +pKnXwiJPZ9d37CAFYd4= +-----END CERTIFICATE----- + +GeoTrust Global CA +================== +-----BEGIN CERTIFICATE----- +MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQK +Ew1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9iYWwgQ0EwHhcNMDIwNTIxMDQw +MDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j +LjEbMBkGA1UEAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjo +BbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDviS2Aelet +8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU1XupGc1V3sjs0l44U+Vc +T4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagU +vTLrGAMoUgRx5aszPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVk +DBF9qn1luMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKInZ57Q +zxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfStQWVYrmm3ok9Nns4 +d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcFPseKUgzbFbS9bZvlxrFUaKnjaZC2 +mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Unhw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6p +XE0zX5IJL4hmXXeXxx12E6nV5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvm +Mw== +-----END CERTIFICATE----- + +GeoTrust Global CA 2 +==================== +-----BEGIN CERTIFICATE----- +MIIDZjCCAk6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN +R2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwHhcNMDQwMzA0MDUw +MDAwWhcNMTkwMzA0MDUwMDAwWjBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j +LjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw +ggEKAoIBAQDvPE1APRDfO1MA4Wf+lGAVPoWI8YkNkMgoI5kF6CsgncbzYEbYwbLVjDHZ3CB5JIG/ +NTL8Y2nbsSpr7iFY8gjpeMtvy/wWUsiRxP89c96xPqfCfWbB9X5SJBri1WeR0IIQ13hLTytCOb1k +LUCgsBDTOEhGiKEMuzozKmKY+wCdE1l/bztyqu6mD4b5BWHqZ38MN5aL5mkWRxHCJ1kDs6ZgwiFA +Vvqgx306E+PsV8ez1q6diYD3Aecs9pYrEw15LNnA5IZ7S4wMcoKK+xfNAGw6EzywhIdLFnopsk/b +HdQL82Y3vdj2V7teJHq4PIu5+pIaGoSe2HSPqht/XvT+RSIhAgMBAAGjYzBhMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFHE4NvICMVNHK266ZUapEBVYIAUJMB8GA1UdIwQYMBaAFHE4NvICMVNH +K266ZUapEBVYIAUJMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQUFAAOCAQEAA/e1K6tdEPx7 +srJerJsOflN4WT5CBP51o62sgU7XAotexC3IUnbHLB/8gTKY0UvGkpMzNTEv/NgdRN3ggX+d6Yvh +ZJFiCzkIjKx0nVnZellSlxG5FntvRdOW2TF9AjYPnDtuzywNA0ZF66D0f0hExghAzN4bcLUprbqL +OzRldRtxIR0sFAqwlpW41uryZfspuk/qkZN0abby/+Ea0AzRdoXLiiW9l14sbxWZJue2Kf8i7MkC +x1YAzUm5s2x7UwQa4qjJqhIFI8LO57sEAszAR6LkxCkvW0VXiVHuPOtSCP8HNR6fNWpHSlaY0VqF +H4z1Ir+rzoPz4iIprn2DQKi6bA== +-----END CERTIFICATE----- + +GeoTrust Universal CA +===================== +-----BEGIN CERTIFICATE----- +MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN +R2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVyc2FsIENBMB4XDTA0MDMwNDA1 +MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IElu +Yy4xHjAcBgNVBAMTFUdlb1RydXN0IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIP +ADCCAgoCggIBAKYVVaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9t +JPi8cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTTQjOgNB0e +RXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFhF7em6fgemdtzbvQKoiFs +7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2vc7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d +8Lsrlh/eezJS/R27tQahsiFepdaVaH/wmZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7V +qnJNk22CDtucvc+081xdVHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3Cga +Rr0BHdCXteGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZf9hB +Z3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfReBi9Fi1jUIxaS5BZu +KGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+nhutxx9z3SxPGWX9f5NAEC7S8O08 +ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0 +XG0D08DYj3rWMB8GA1UdIwQYMBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIB +hjANBgkqhkiG9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc +aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fXIwjhmF7DWgh2 +qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzynANXH/KttgCJwpQzgXQQpAvvL +oJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0zuzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsK +xr2EoyNB3tZ3b4XUhRxQ4K5RirqNPnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxF +KyDuSN/n3QmOGKjaQI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2 +DFKWkoRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9ER/frslK +xfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQtDF4JbAiXfKM9fJP/P6EU +p8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/SfuvmbJxPgWp6ZKy7PtXny3YuxadIwVyQD8vI +P/rmMuGNG2+k5o7Y+SlIis5z/iw= +-----END CERTIFICATE----- + +GeoTrust Universal CA 2 +======================= +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN +R2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwHhcNMDQwMzA0 +MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3Qg +SW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0 +DE81WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUGFF+3Qs17 +j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdqXbboW0W63MOhBW9Wjo8Q +JqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxLse4YuU6W3Nx2/zu+z18DwPw76L5GG//a +QMJS9/7jOvdqdzXQ2o3rXhhqMcceujwbKNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2 +WP0+GfPtDCapkzj4T8FdIgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP +20gaXT73y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRthAAn +ZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgocQIgfksILAAX/8sgC +SqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4Lt1ZrtmhN79UNdxzMk+MBB4zsslG +8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2 ++/CfXGJx7Tz0RzgQKzAfBgNVHSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8E +BAMCAYYwDQYJKoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z +dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQL1EuxBRa3ugZ +4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgrFg5fNuH8KrUwJM/gYwx7WBr+ +mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSoag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpq +A1Ihn0CoZ1Dy81of398j9tx4TuaYT1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpg +Y+RdM4kX2TGq2tbzGDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiP +pm8m1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJVOCiNUW7d +FGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH6aLcr34YEoP9VhdBLtUp +gn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwXQMAJKOSLakhT2+zNVVXxxvjpoixMptEm +X36vWkzaH6byHCx+rgIW0lbQL1dTR+iS +-----END CERTIFICATE----- + +Visa eCommerce Root +=================== +-----BEGIN CERTIFICATE----- +MIIDojCCAoqgAwIBAgIQE4Y1TR0/BvLB+WUF1ZAcYjANBgkqhkiG9w0BAQUFADBrMQswCQYDVQQG +EwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2Ug +QXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNvbW1lcmNlIFJvb3QwHhcNMDIwNjI2MDIxODM2 +WhcNMjIwNjI0MDAxNjEyWjBrMQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMm +VmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNv +bW1lcmNlIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvV95WHm6h2mCxlCfL +F9sHP4CFT8icttD0b0/Pmdjh28JIXDqsOTPHH2qLJj0rNfVIsZHBAk4ElpF7sDPwsRROEW+1QK8b +RaVK7362rPKgH1g/EkZgPI2h4H3PVz4zHvtH8aoVlwdVZqW1LS7YgFmypw23RuwhY/81q6UCzyr0 +TP579ZRdhE2o8mCP2w4lPJ9zcc+U30rq299yOIzzlr3xF7zSujtFWsan9sYXiwGd/BmoKoMWuDpI +/k4+oKsGGelT84ATB+0tvz8KPFUgOSwsAGl0lUq8ILKpeeUYiZGo3BxN77t+Nwtd/jmliFKMAGzs +GHxBvfaLdXe6YJ2E5/4tAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEG +MB0GA1UdDgQWBBQVOIMPPyw/cDMezUb+B4wg4NfDtzANBgkqhkiG9w0BAQUFAAOCAQEAX/FBfXxc +CLkr4NWSR/pnXKUTwwMhmytMiUbPWU3J/qVAtmPN3XEolWcRzCSs00Rsca4BIGsDoo8Ytyk6feUW +YFN4PMCvFYP3j1IzJL1kk5fui/fbGKhtcbP3LBfQdCVp9/5rPJS+TUtBjE7ic9DjkCJzQ83z7+pz +zkWKsKZJ/0x9nXGIxHYdkFsd7v3M9+79YKWxehZx0RbQfBI8bGmX265fOZpwLwU8GUYEmSA20GBu +YQa7FkKMcPcw++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt +398znM/jra6O1I7mT1GvFpLgXPYHDw== +-----END CERTIFICATE----- + +Certum Root CA +============== +-----BEGIN CERTIFICATE----- +MIIDDDCCAfSgAwIBAgIDAQAgMA0GCSqGSIb3DQEBBQUAMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQK +ExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBDQTAeFw0wMjA2MTExMDQ2Mzla +Fw0yNzA2MTExMDQ2MzlaMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8u +by4xEjAQBgNVBAMTCUNlcnR1bSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6x +wS7TT3zNJc4YPk/EjG+AanPIW1H4m9LcuwBcsaD8dQPugfCI7iNS6eYVM42sLQnFdvkrOYCJ5JdL +kKWoePhzQ3ukYbDYWMzhbGZ+nPMJXlVjhNWo7/OxLjBos8Q82KxujZlakE403Daaj4GIULdtlkIJ +89eVgw1BS7Bqa/j8D35in2fE7SZfECYPCE/wpFcozo+47UX2bu4lXapuOb7kky/ZR6By6/qmW6/K +Uz/iDsaWVhFu9+lmqSbYf5VT7QqFiLpPKaVCjF62/IUgAKpoC6EahQGcxEZjgoi2IrHu/qpGWX7P +NSzVttpd90gzFFS269lvzs2I1qsb2pY7HVkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkq +hkiG9w0BAQUFAAOCAQEAuI3O7+cUus/usESSbLQ5PqKEbq24IXfS1HeCh+YgQYHu4vgRt2PRFze+ +GXYkHAQaTOs9qmdvLdTN/mUxcMUbpgIKumB7bVjCmkn+YzILa+M6wKyrO7Do0wlRjBCDxjTgxSvg +GrZgFCdsMneMvLJymM/NzD+5yCRCFNZX/OYmQ6kd5YCQzgNUKD73P9P4Te1qCjqTE5s7FCMTY5w/ +0YcneeVMUeMBrYVdGjux1XMQpNPyvG5k9VpWkKjHDkx0Dy5xO/fIR/RpbxXyEV6DHpx8Uq79AtoS +qFlnGNu8cN2bsWntgM6JQEhqDjXKKWYVIZQs6GAqm4VKQPNriiTsBhYscw== +-----END CERTIFICATE----- + +Comodo AAA Services root +======================== +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS +R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg +TGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAw +MFoXDTI4MTIzMTIzNTk1OVowezELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hl +c3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNV +BAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQuaBtDFcCLNSS1UY8y2bmhG +C1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe3M/vg4aijJRPn2jymJBGhCfHdr/jzDUs +i14HZGWCwEiwqJH5YZ92IFCokcdmtet4YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszW +Y19zjNoFmag4qMsXeDZRrOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjH +Ypy+g8cmez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQUoBEK +Iz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wewYDVR0f +BHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNl +cy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29tb2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2Vz +LmNybDANBgkqhkiG9w0BAQUFAAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm +7l3sAg9g1o1QGE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2G9w84FoVxp7Z +8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsil2D4kF501KKaU73yqWjgom7C +12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- + +Comodo Secure Services root +=========================== +-----BEGIN CERTIFICATE----- +MIIEPzCCAyegAwIBAgIBATANBgkqhkiG9w0BAQUFADB+MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS +R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg +TGltaXRlZDEkMCIGA1UEAwwbU2VjdXJlIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAw +MDAwMFoXDTI4MTIzMTIzNTk1OVowfjELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFu +Y2hlc3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxJDAi +BgNVBAMMG1NlY3VyZSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAMBxM4KK0HDrc4eCQNUd5MvJDkKQ+d40uaG6EfQlhfPMcm3ye5drswfxdySRXyWP +9nQ95IDC+DwN879A6vfIUtFyb+/Iq0G4bi4XKpVpDM3SHpR7LZQdqnXXs5jLrLxkU0C8j6ysNstc +rbvd4JQX7NFc0L/vpZXJkMWwrPsbQ996CF23uPJAGysnnlDOXmWCiIxe004MeuoIkbY2qitC++rC +oznl2yY4rYsK7hljxxwk3wN42ubqwUcaCwtGCd0C/N7Lh1/XMGNooa7cMqG6vv5Eq2i2pRcV/b3V +p6ea5EQz6YiO/O1R65NxTq0B50SOqy3LqP4BSUjwwN3HaNiS/j0CAwEAAaOBxzCBxDAdBgNVHQ4E +FgQUPNiTiMLAggnMAZkGkyDpnnAJY08wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w +gYEGA1UdHwR6MHgwO6A5oDeGNWh0dHA6Ly9jcmwuY29tb2RvY2EuY29tL1NlY3VyZUNlcnRpZmlj +YXRlU2VydmljZXMuY3JsMDmgN6A1hjNodHRwOi8vY3JsLmNvbW9kby5uZXQvU2VjdXJlQ2VydGlm +aWNhdGVTZXJ2aWNlcy5jcmwwDQYJKoZIhvcNAQEFBQADggEBAIcBbSMdflsXfcFhMs+P5/OKlFlm +4J4oqF7Tt/Q05qo5spcWxYJvMqTpjOev/e/C6LlLqqP05tqNZSH7uoDrJiiFGv45jN5bBAS0VPmj +Z55B+glSzAVIqMk/IQQezkhr/IXownuvf7fM+F86/TXGDe+X3EyrEeFryzHRbPtIgKvcnDe4IRRL +DXE97IMzbtFuMhbsmMcWi1mmNKsFVy2T96oTy9IT4rcuO81rUBcJaD61JlfutuC23bkpgHl9j6Pw +pCikFcSF9CfUa7/lXORlAnZUtOM3ZiTTGWHIUhDlizeauan5Hb/qmZJhlv8BzaFfDbxxvA6sCx1H +RR3B7Hzs/Sk= +-----END CERTIFICATE----- + +Comodo Trusted Services root +============================ +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIBATANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS +R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg +TGltaXRlZDElMCMGA1UEAwwcVHJ1c3RlZCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczAeFw0wNDAxMDEw +MDAwMDBaFw0yODEyMzEyMzU5NTlaMH8xCzAJBgNVBAYTAkdCMRswGQYDVQQIDBJHcmVhdGVyIE1h +bmNoZXN0ZXIxEDAOBgNVBAcMB1NhbGZvcmQxGjAYBgNVBAoMEUNvbW9kbyBDQSBMaW1pdGVkMSUw +IwYDVQQDDBxUcnVzdGVkIENlcnRpZmljYXRlIFNlcnZpY2VzMIIBIjANBgkqhkiG9w0BAQEFAAOC +AQ8AMIIBCgKCAQEA33FvNlhTWvI2VFeAxHQIIO0Yfyod5jWaHiWsnOWWfnJSoBVC21ndZHoa0Lh7 +3TkVvFVIxO06AOoxEbrycXQaZ7jPM8yoMa+j49d/vzMtTGo87IvDktJTdyR0nAducPy9C1t2ul/y +/9c3S0pgePfw+spwtOpZqqPOSC+pw7ILfhdyFgymBwwbOM/JYrc/oJOlh0Hyt3BAd9i+FHzjqMB6 +juljatEPmsbS9Is6FARW1O24zG71++IsWL1/T2sr92AkWCTOJu80kTrV44HQsvAEAtdbtz6SrGsS +ivnkBbA7kUlcsutT6vifR4buv5XAwAaf0lteERv0xwQ1KdJVXOTt6wIDAQABo4HJMIHGMB0GA1Ud +DgQWBBTFe1i97doladL3WRaoszLAeydb9DAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zCBgwYDVR0fBHwwejA8oDqgOIY2aHR0cDovL2NybC5jb21vZG9jYS5jb20vVHJ1c3RlZENlcnRp +ZmljYXRlU2VydmljZXMuY3JsMDqgOKA2hjRodHRwOi8vY3JsLmNvbW9kby5uZXQvVHJ1c3RlZENl +cnRpZmljYXRlU2VydmljZXMuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQDIk4E7ibSvuIQSTI3S8Ntw +uleGFTQQuS9/HrCoiWChisJ3DFBKmwCL2Iv0QeLQg4pKHBQGsKNoBXAxMKdTmw7pSqBYaWcOrp32 +pSxBvzwGa+RZzG0Q8ZZvH9/0BAKkn0U+yNj6NkZEUD+Cl5EfKNsYEYwq5GWDVxISjBc/lDb+XbDA +BHcTuPQV1T84zJQ6VdCsmPW6AF/ghhmBeC8owH7TzEIK9a5QoNE+xqFx7D+gIIxmOom0jtTYsU0l +R+4viMi14QVFwL4Ucd56/Y57fU0IlqUSc/AtyjcndBInTMu2l+nZrghtWjlA3QVHdWpaIbOjGM9O +9y5Xt5hwXsjEeLBi +-----END CERTIFICATE----- + +QuoVadis Root CA +================ +-----BEGIN CERTIFICATE----- +MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJCTTEZMBcGA1UE +ChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 +eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAz +MTkxODMzMzNaFw0yMTAzMTcxODMzMzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRp +cyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQD +EyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Ypli4kVEAkOPcahdxYTMuk +J0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2DrOpm2RgbaIr1VxqYuvXtdj182d6UajtL +F8HVj71lODqV0D1VNk7feVcxKh7YWWVJWCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeL +YzcS19Dsw3sgQUSj7cugF+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWen +AScOospUxbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCCAk4w +PQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVvdmFkaXNvZmZzaG9y +ZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREwggENMIIBCQYJKwYBBAG+WAABMIH7 +MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNlIG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmlj +YXRlIGJ5IGFueSBwYXJ0eSBhc3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJs +ZSBzdGFuZGFyZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh +Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYIKwYBBQUHAgEW +Fmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3TKbkGGew5Oanwl4Rqy+/fMIGu +BgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rqy+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkw +FwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MS4wLAYDVQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6 +tlCLMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSkfnIYj9lo +fFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf87C9TqnN7Az10buYWnuul +LsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1RcHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2x +gI4JVrmcGmD+XcHXetwReNDWXcG31a0ymQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi +5upZIof4l/UO/erMkqQWxFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi +5nrQNiOKSnQ2+Q== +-----END CERTIFICATE----- + +QuoVadis Root CA 2 +================== +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT +EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMjAeFw0wNjExMjQx +ODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQCaGMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6 +XJxgFyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55JWpzmM+Yk +lvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bBrrcCaoF6qUWD4gXmuVbB +lDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp+ARz8un+XJiM9XOva7R+zdRcAitMOeGy +lZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt +66/3FsvbzSUr5R/7mp/iUcw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1Jdxn +wQ5hYIizPtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og/zOh +D7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UHoycR7hYQe7xFSkyy +BNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuIyV77zGHcizN300QyNQliBJIWENie +J0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1Ud +DgQWBBQahGK8SEwzJQTU7tD2A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGU +a6FJpEcwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2fBluornFdLwUv +Z+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzng/iN/Ae42l9NLmeyhP3ZRPx3 +UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2BlfF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodm +VjB3pjd4M1IQWK4/YY7yarHvGH5KWWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK ++JDSV6IZUaUtl0HaB0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrW +IozchLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPRTUIZ3Ph1 +WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWDmbA4CD/pXvk1B+TJYm5X +f6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0ZohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II +4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8 +VCLAAVBpQ570su9t+Oza8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +QuoVadis Root CA 3 +================== +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT +EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMzAeFw0wNjExMjQx +OTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQDMV0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNgg +DhoB4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUrH556VOij +KTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd8lyyBTNvijbO0BNO/79K +DDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9CabwvvWhDFlaJKjdhkf2mrk7AyxRllDdLkgbv +BNDInIjbC3uBr7E9KsRlOni27tyAsdLTmZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwp +p5ijJUMv7/FfJuGITfhebtfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8 +nT8KKdjcT5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDtWAEX +MJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZc6tsgLjoC2SToJyM +Gf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A4iLItLRkT9a6fUg+qGkM17uGcclz +uD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYDVR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHT +BgkrBgEEAb5YAAMwgcUwgZMGCCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmlj +YXRlIGNvbnN0aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVudC4wLQYIKwYB +BQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2NwczALBgNVHQ8EBAMCAQYwHQYD +VR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4GA1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4 +ywLQoUmkRzBFMQswCQYDVQQGEwJCTTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UE +AxMSUXVvVmFkaXMgUm9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZV +qyM07ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSemd1o417+s +hvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd+LJ2w/w4E6oM3kJpK27z +POuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2 +Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadNt54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp +8kokUvd0/bpO5qgdAm6xDYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBC +bjPsMZ57k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6szHXu +g/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0jWy10QJLZYxkNc91p +vGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeTmJlglFwjz1onl14LBQaTNx47aTbr +qZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +Security Communication Root CA +============================== +-----BEGIN CERTIFICATE----- +MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP +U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw +HhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP +U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw +8yl89f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJDKaVv0uM +DPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9Ms+k2Y7CI9eNqPPYJayX +5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/NQV3Is00qVUarH9oe4kA92819uZKAnDfd +DJZkndwi92SL32HeFZRSFaB9UslLqCHJxrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2 +JChzAgMBAAGjPzA9MB0GA1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYw +DwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vGkl3g +0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfrUj94nK9NrvjVT8+a +mCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5Bw+SUEmK3TGXX8npN6o7WWWXlDLJ +s58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJUJRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ +6rBK+1YWc26sTfcioU+tHXotRSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAi +FL39vmwLAw== +-----END CERTIFICATE----- + +Sonera Class 2 Root CA +====================== +-----BEGIN CERTIFICATE----- +MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEPMA0GA1UEChMG +U29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAxMDQwNjA3Mjk0MFoXDTIxMDQw +NjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNVBAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJh +IENsYXNzMiBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3 +/Ei9vX+ALTU74W+oZ6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybT +dXnt5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s3TmVToMG +f+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2EjvOr7nQKV0ba5cTppCD8P +tOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu8nYybieDwnPz3BjotJPqdURrBGAgcVeH +nfO+oJAjPYok4doh28MCAwEAAaMzMDEwDwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITT +XjwwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt +0jSv9zilzqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/3DEI +cbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvDFNr450kkkdAdavph +Oe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6Tk6ezAyNlNzZRZxe7EJQY670XcSx +EtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLH +llpwrN9M +-----END CERTIFICATE----- + +UTN USERFirst Hardware Root CA +============================== +-----BEGIN CERTIFICATE----- +MIIEdDCCA1ygAwIBAgIQRL4Mi1AAJLQR0zYq/mUK/TANBgkqhkiG9w0BAQUFADCBlzELMAkGA1UE +BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl +IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHzAd +BgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwHhcNOTkwNzA5MTgxMDQyWhcNMTkwNzA5MTgx +OTIyWjCBlzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0 +eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVz +ZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCx98M4P7Sof885glFn0G2f0v9Y8+efK+wNiVSZuTiZFvfgIXlI +wrthdBKWHTxqctU8EGc6Oe0rE81m65UJM6Rsl7HoxuzBdXmcRl6Nq9Bq/bkqVRcQVLMZ8Jr28bFd +tqdt++BxF2uiiPsA3/4aMXcMmgF6sTLjKwEHOG7DpV4jvEWbe1DByTCP2+UretNb+zNAHqDVmBe8 +i4fDidNdoI6yqqr2jmmIBsX6iSHzCJ1pLgkzmykNRg+MzEk0sGlRvfkGzWitZky8PqxhvQqIDsjf +Pe58BEydCl5rkdbux+0ojatNh4lz0G6k0B4WixThdkQDf2Os5M1JnMWS9KsyoUhbAgMBAAGjgbkw +gbYwCwYDVR0PBAQDAgHGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFKFyXyYbKJhDlV0HN9WF +lp1L0sNFMEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VVE4tVVNF +UkZpcnN0LUhhcmR3YXJlLmNybDAxBgNVHSUEKjAoBggrBgEFBQcDAQYIKwYBBQUHAwUGCCsGAQUF +BwMGBggrBgEFBQcDBzANBgkqhkiG9w0BAQUFAAOCAQEARxkP3nTGmZev/K0oXnWO6y1n7k57K9cM +//bey1WiCuFMVGWTYGufEpytXoMs61quwOQt9ABjHbjAbPLPSbtNk28GpgoiskliCE7/yMgUsogW +XecB5BKV5UU0s4tpvc+0hY91UZ59Ojg6FEgSxvunOxqNDYJAB+gECJChicsZUN/KHAG8HQQZexB2 +lzvukJDKxA4fFm517zP4029bHpbj4HR3dHuKom4t3XbWOTCC8KucUvIqx69JXn7HaOWCgchqJ/kn +iCrVWFCVH/A7HFe7fRQ5YiuayZSSKqMiDP+JJn1fIytH1xUdqWqeUQ0qUZ6B+dQ7XnASfxAynB67 +nfhmqA== +-----END CERTIFICATE----- + +Camerfirma Chambers of Commerce Root +==================================== +-----BEGIN CERTIFICATE----- +MIIEvTCCA6WgAwIBAgIBADANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJFVTEnMCUGA1UEChMe +QUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1i +ZXJzaWduLm9yZzEiMCAGA1UEAxMZQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdDAeFw0wMzA5MzAx +NjEzNDNaFw0zNzA5MzAxNjEzNDRaMH8xCzAJBgNVBAYTAkVVMScwJQYDVQQKEx5BQyBDYW1lcmZp +cm1hIFNBIENJRiBBODI3NDMyODcxIzAhBgNVBAsTGmh0dHA6Ly93d3cuY2hhbWJlcnNpZ24ub3Jn +MSIwIAYDVQQDExlDaGFtYmVycyBvZiBDb21tZXJjZSBSb290MIIBIDANBgkqhkiG9w0BAQEFAAOC +AQ0AMIIBCAKCAQEAtzZV5aVdGDDg2olUkfzIx1L4L1DZ77F1c2VHfRtbunXF/KGIJPov7coISjlU +xFF6tdpg6jg8gbLL8bvZkSM/SAFwdakFKq0fcfPJVD0dBmpAPrMMhe5cG3nCYsS4No41XQEMIwRH +NaqbYE6gZj3LJgqcQKH0XZi/caulAGgq7YN6D6IUtdQis4CwPAxaUWktWBiP7Zme8a7ileb2R6jW +DA+wWFjbw2Y3npuRVDM30pQcakjJyfKl2qUMI/cjDpwyVV5xnIQFUZot/eZOKjRa3spAN2cMVCFV +d9oKDMyXroDclDZK9D7ONhMeU+SsTjoF7Nuucpw4i9A5O4kKPnf+dQIBA6OCAUQwggFAMBIGA1Ud +EwEB/wQIMAYBAf8CAQwwPAYDVR0fBDUwMzAxoC+gLYYraHR0cDovL2NybC5jaGFtYmVyc2lnbi5v +cmcvY2hhbWJlcnNyb290LmNybDAdBgNVHQ4EFgQU45T1sU3p26EpW1eLTXYGduHRooowDgYDVR0P +AQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzAnBgNVHREEIDAegRxjaGFtYmVyc3Jvb3RAY2hh +bWJlcnNpZ24ub3JnMCcGA1UdEgQgMB6BHGNoYW1iZXJzcm9vdEBjaGFtYmVyc2lnbi5vcmcwWAYD +VR0gBFEwTzBNBgsrBgEEAYGHLgoDATA+MDwGCCsGAQUFBwIBFjBodHRwOi8vY3BzLmNoYW1iZXJz +aWduLm9yZy9jcHMvY2hhbWJlcnNyb290Lmh0bWwwDQYJKoZIhvcNAQEFBQADggEBAAxBl8IahsAi +fJ/7kPMa0QOx7xP5IV8EnNrJpY0nbJaHkb5BkAFyk+cefV/2icZdp0AJPaxJRUXcLo0waLIJuvvD +L8y6C98/d3tGfToSJI6WjzwFCm/SlCgdbQzALogi1djPHRPH8EjX1wWnz8dHnjs8NMiAT9QUu/wN +UPf6s+xCX6ndbcj0dc97wXImsQEcXCz9ek60AcUFV7nnPKoF2YjpB0ZBzu9Bga5Y34OirsrXdx/n +ADydb47kMgkdTXg0eDQ8lJsm7U9xxhl6vSAiSFr+S30Dt+dYvsYyTnQeaN2oaFuzPu5ifdmA6Ap1 +erfutGWaIZDgqtCYvDi1czyL+Nw= +-----END CERTIFICATE----- + +Camerfirma Global Chambersign Root +================================== +-----BEGIN CERTIFICATE----- +MIIExTCCA62gAwIBAgIBADANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJFVTEnMCUGA1UEChMe +QUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1i +ZXJzaWduLm9yZzEgMB4GA1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwHhcNMDMwOTMwMTYx +NDE4WhcNMzcwOTMwMTYxNDE4WjB9MQswCQYDVQQGEwJFVTEnMCUGA1UEChMeQUMgQ2FtZXJmaXJt +YSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEg +MB4GA1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwggEgMA0GCSqGSIb3DQEBAQUAA4IBDQAw +ggEIAoIBAQCicKLQn0KuWxfH2H3PFIP8T8mhtxOviteePgQKkotgVvq0Mi+ITaFgCPS3CU6gSS9J +1tPfnZdan5QEcOw/Wdm3zGaLmFIoCQLfxS+EjXqXd7/sQJ0lcqu1PzKY+7e3/HKE5TWH+VX6ox8O +by4o3Wmg2UIQxvi1RMLQQ3/bvOSiPGpVeAp3qdjqGTK3L/5cPxvusZjsyq16aUXjlg9V9ubtdepl +6DJWk0aJqCWKZQbua795B9Dxt6/tLE2Su8CoX6dnfQTyFQhwrJLWfQTSM/tMtgsL+xrJxI0DqX5c +8lCrEqWhz0hQpe/SyBoT+rB/sYIcd2oPX9wLlY/vQ37mRQklAgEDo4IBUDCCAUwwEgYDVR0TAQH/ +BAgwBgEB/wIBDDA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLmNoYW1iZXJzaWduLm9yZy9j +aGFtYmVyc2lnbnJvb3QuY3JsMB0GA1UdDgQWBBRDnDafsJ4wTcbOX60Qq+UDpfqpFDAOBgNVHQ8B +Af8EBAMCAQYwEQYJYIZIAYb4QgEBBAQDAgAHMCoGA1UdEQQjMCGBH2NoYW1iZXJzaWducm9vdEBj +aGFtYmVyc2lnbi5vcmcwKgYDVR0SBCMwIYEfY2hhbWJlcnNpZ25yb290QGNoYW1iZXJzaWduLm9y +ZzBbBgNVHSAEVDBSMFAGCysGAQQBgYcuCgEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly9jcHMuY2hh +bWJlcnNpZ24ub3JnL2Nwcy9jaGFtYmVyc2lnbnJvb3QuaHRtbDANBgkqhkiG9w0BAQUFAAOCAQEA +PDtwkfkEVCeR4e3t/mh/YV3lQWVPMvEYBZRqHN4fcNs+ezICNLUMbKGKfKX0j//U2K0X1S0E0T9Y +gOKBWYi+wONGkyT+kL0mojAt6JcmVzWJdJYY9hXiryQZVgICsroPFOrGimbBhkVVi76SvpykBMdJ +PJ7oKXqJ1/6v/2j1pReQvayZzKWGVwlnRtvWFsJG8eSpUPWP0ZIV018+xgBJOm5YstHRJw0lyDL4 +IBHNfTIzSJRUTN3cecQwn+uOuFW114hcxWokPbLTBQNRxgfvzBRydD1ucs4YKIxKoHflCStFREes +t2d/AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A== +-----END CERTIFICATE----- + +XRamp Global CA Root +==================== +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UE +BhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2Vj +dXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwHhcNMDQxMTAxMTcxNDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMx +HjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkg +U2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3Jp +dHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS638eMpSe2OAtp87ZOqCwu +IR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCPKZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMx +foArtYzAQDsRhtDLooY2YKTVMIJt2W7QDxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FE +zG+gSqmUsE3a56k0enI4qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqs +AxcZZPRaJSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNViPvry +xS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASsjVy16bYbMDYGA1UdHwQvMC0wK6Ap +oCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMC +AQEwDQYJKoZIhvcNAQEFBQADggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc +/Kh4ZzXxHfARvbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLaIR9NmXmd4c8n +nxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSyi6mx5O+aGtA9aZnuqCij4Tyz +8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQO+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- + +Go Daddy Class 2 CA +=================== +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMY +VGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkG +A1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28g +RGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQAD +ggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv +2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32 +qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6j +YGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmY +vLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0O +BBYEFNLEsNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h/t2o +atTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMu +MTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwG +A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wim +PQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKt +I3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mERdEr/VxqHD3VI +Ls9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX/b +vZ8= +-----END CERTIFICATE----- + +Starfield Class 2 CA +==================== +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzElMCMGA1UEChMc +U3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZpZWxkIENsYXNzIDIg +Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQwNjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBo +MQswCQYDVQQGEwJVUzElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAG +A1UECxMpU3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqG +SIb3DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf8MOh2tTY +bitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN+lq2cwQlZut3f+dZxkqZ +JRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVm +epsZGD3/cVE8MC5fvj13c7JdBmzDI1aaK4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSN +F4Azbl5KXZnJHoe0nRrA1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HF +MIHCMB0GA1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fRzt0f +hvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNo +bm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24g +QXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGs +afPzWdqbAYcaT1epoXkJKtv3L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLM +PUxA2IGvd56Deruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynpVSJYACPq4xJD +KVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEYWQPJIrSPnNVeKtelttQKbfi3 +QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- + +StartCom Certification Authority +================================ +-----BEGIN CERTIFICATE----- +MIIHyTCCBbGgAwIBAgIBATANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN +U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu +ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0 +NjM2WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk +LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg +U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y +o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/ +Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d +eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt +2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z +6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ +osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/ +untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc +UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT +37uMdBNSSwIDAQABo4ICUjCCAk4wDAYDVR0TBAUwAwEB/zALBgNVHQ8EBAMCAa4wHQYDVR0OBBYE +FE4L7xqkQFulF2mHMMo0aEPQQa7yMGQGA1UdHwRdMFswLKAqoCiGJmh0dHA6Ly9jZXJ0LnN0YXJ0 +Y29tLm9yZy9zZnNjYS1jcmwuY3JsMCugKaAnhiVodHRwOi8vY3JsLnN0YXJ0Y29tLm9yZy9zZnNj +YS1jcmwuY3JsMIIBXQYDVR0gBIIBVDCCAVAwggFMBgsrBgEEAYG1NwEBATCCATswLwYIKwYBBQUH +AgEWI2h0dHA6Ly9jZXJ0LnN0YXJ0Y29tLm9yZy9wb2xpY3kucGRmMDUGCCsGAQUFBwIBFilodHRw +Oi8vY2VydC5zdGFydGNvbS5vcmcvaW50ZXJtZWRpYXRlLnBkZjCB0AYIKwYBBQUHAgIwgcMwJxYg +U3RhcnQgQ29tbWVyY2lhbCAoU3RhcnRDb20pIEx0ZC4wAwIBARqBl0xpbWl0ZWQgTGlhYmlsaXR5 +LCByZWFkIHRoZSBzZWN0aW9uICpMZWdhbCBMaW1pdGF0aW9ucyogb2YgdGhlIFN0YXJ0Q29tIENl +cnRpZmljYXRpb24gQXV0aG9yaXR5IFBvbGljeSBhdmFpbGFibGUgYXQgaHR0cDovL2NlcnQuc3Rh +cnRjb20ub3JnL3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilT +dGFydENvbSBGcmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQUFAAOC +AgEAFmyZ9GYMNPXQhV59CuzaEE44HF7fpiUFS5Eyweg78T3dRAlbB0mKKctmArexmvclmAk8jhvh +3TaHK0u7aNM5Zj2gJsfyOZEdUauCe37Vzlrk4gNXcGmXCPleWKYK34wGmkUWFjgKXlf2Ysd6AgXm +vB618p70qSmD+LIU424oh0TDkBreOKk8rENNZEXO3SipXPJzewT4F+irsfMuXGRuczE6Eri8sxHk +fY+BUZo7jYn0TZNmezwD7dOaHZrzZVD1oNB1ny+v8OqCQ5j4aZyJecRDjkZy42Q2Eq/3JR44iZB3 +fsNrarnDy0RLrHiQi+fHLB5LEUTINFInzQpdn4XBidUaePKVEFMy3YCEZnXZtWgo+2EuvoSoOMCZ +EoalHmdkrQYuL6lwhceWD3yJZfWOQ1QOq92lgDmUYMA0yZZwLKMS9R9Ie70cfmu3nZD0Ijuu+Pwq +yvqCUqDvr0tVk+vBtfAii6w0TiYiBKGHLHVKt+V9E9e4DGTANtLJL4YSjCMJwRuCO3NJo2pXh5Tl +1njFmUNj403gdy3hZZlyaQQaRwnmDwFWJPsfvw55qVguucQJAX6Vum0ABj6y6koQOdjQK/W/7HW/ +lwLFCRsI3FU34oH7N4RDYiDK51ZLZer+bMEkkyShNOsF/5oirpt9P/FlUQqmMGqz9IgcgA38coro +g14= +-----END CERTIFICATE----- + +Taiwan GRCA +=========== +-----BEGIN CERTIFICATE----- +MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/MQswCQYDVQQG +EwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4X +DTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1owPzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dv +dmVybm1lbnQgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qN +w8XRIePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1qgQdW8or5 +BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKyyhwOeYHWtXBiCAEuTk8O +1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAtsF/tnyMKtsc2AtJfcdgEWFelq16TheEfO +htX7MfP6Mb40qij7cEwdScevLJ1tZqa2jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wov +J5pGfaENda1UhhXcSTvxls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7 +Q3hub/FCVGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHKYS1t +B6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoHEgKXTiCQ8P8NHuJB +O9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThNXo+EHWbNxWCWtFJaBYmOlXqYwZE8 +lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1UdDgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNV +HRMEBTADAQH/MDkGBGcqBwAEMTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg2 +09yewDL7MTqKUWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ +TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyfqzvS/3WXy6Tj +Zwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaKZEk9GhiHkASfQlK3T8v+R0F2 +Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFEJPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlU +D7gsL0u8qV1bYH+Mh6XgUmMqvtg7hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6Qz +DxARvBMB1uUO07+1EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+Hbk +Z6MmnD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WXudpVBrkk +7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44VbnzssQwmSNOXfJIoRIM3BKQ +CZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDeLMDDav7v3Aun+kbfYNucpllQdSNpc5Oy ++fwC00fmcc4QAu4njIT/rEUNE1yDMuAlpYYsfPQS +-----END CERTIFICATE----- + +Swisscom Root CA 1 +================== +-----BEGIN CERTIFICATE----- +MIIF2TCCA8GgAwIBAgIQXAuFXAvnWUHfV8w/f52oNjANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQG +EwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2VydGlmaWNhdGUgU2Vy +dmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3QgQ0EgMTAeFw0wNTA4MTgxMjA2MjBaFw0yNTA4 +MTgyMjA2MjBaMGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGln +aXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAxMIIC +IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0LmwqAzZuz8h+BvVM5OAFmUgdbI9m2BtRsiM +MW8Xw/qabFbtPMWRV8PNq5ZJkCoZSx6jbVfd8StiKHVFXqrWW/oLJdihFvkcxC7mlSpnzNApbjyF +NDhhSbEAn9Y6cV9Nbc5fuankiX9qUvrKm/LcqfmdmUc/TilftKaNXXsLmREDA/7n29uj/x2lzZAe +AR81sH8A25Bvxn570e56eqeqDFdvpG3FEzuwpdntMhy0XmeLVNxzh+XTF3xmUHJd1BpYwdnP2IkC +b6dJtDZd0KTeByy2dbcokdaXvij1mB7qWybJvbCXc9qukSbraMH5ORXWZ0sKbU/Lz7DkQnGMU3nn +7uHbHaBuHYwadzVcFh4rUx80i9Fs/PJnB3r1re3WmquhsUvhzDdf/X/NTa64H5xD+SpYVUNFvJbN +cA78yeNmuk6NO4HLFWR7uZToXTNShXEuT46iBhFRyePLoW4xCGQMwtI89Tbo19AOeCMgkckkKmUp +WyL3Ic6DXqTz3kvTaI9GdVyDCW4pa8RwjPWd1yAv/0bSKzjCL3UcPX7ape8eYIVpQtPM+GP+HkM5 +haa2Y0EQs3MevNP6yn0WR+Kn1dCjigoIlmJWbjTb2QK5MHXjBNLnj8KwEUAKrNVxAmKLMb7dxiNY +MUJDLXT5xp6mig/p/r+D5kNXJLrvRjSq1xIBOO0CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYw +HQYDVR0hBBYwFDASBgdghXQBUwABBgdghXQBUwABMBIGA1UdEwEB/wQIMAYBAf8CAQcwHwYDVR0j +BBgwFoAUAyUv3m+CATpcLNwroWm1Z9SM0/0wHQYDVR0OBBYEFAMlL95vggE6XCzcK6FptWfUjNP9 +MA0GCSqGSIb3DQEBBQUAA4ICAQA1EMvspgQNDQ/NwNurqPKIlwzfky9NfEBWMXrrpA9gzXrzvsMn +jgM+pN0S734edAY8PzHyHHuRMSG08NBsl9Tpl7IkVh5WwzW9iAUPWxAaZOHHgjD5Mq2eUCzneAXQ +MbFamIp1TpBcahQq4FJHgmDmHtqBsfsUC1rxn9KVuj7QG9YVHaO+htXbD8BJZLsuUBlL0iT43R4H +VtA4oJVwIHaM190e3p9xxCPvgxNcoyQVTSlAPGrEqdi3pkSlDfTgnXceQHAm/NrZNuR55LU/vJtl +vrsRls/bxig5OgjOR1tTWsWZ/l2p3e9M1MalrQLmjAcSHm8D0W+go/MpvRLHUKKwf4ipmXeascCl +OS5cfGniLLDqN2qk4Vrh9VDlg++luyqI54zb/W1elxmofmZ1a3Hqv7HHb6D0jqTsNFFbjCYDcKF3 +1QESVwA12yPeDooomf2xEG9L/zgtYE4snOtnta1J7ksfrK/7DZBaZmBwXarNeNQk7shBoJMBkpxq +nvy5JMWzFYJ+vq6VK+uxwNrjAWALXmmshFZhvnEX/h0TD/7Gh0Xp/jKgGg0TpJRVcaUWi7rKibCy +x/yP2FS1k2Kdzs9Z+z0YzirLNRWCXf9UIltxUvu3yf5gmwBBZPCqKuy2QkPOiWaByIufOVQDJdMW +NY6E0F/6MBr1mmz0DlP5OlvRHA== +-----END CERTIFICATE----- + +DigiCert Assured ID Root CA +=========================== +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw +IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzEx +MTEwMDAwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL +ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7cJpSIqvTO +9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYPmDI2dsze3Tyoou9q+yHy +UmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW +/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpy +oeb6pNnVFzF1roV9Iq4/AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whf +GHdPAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRF +66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzANBgkq +hkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRCdWKuh+vy1dneVrOfzM4UKLkNl2Bc +EkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTffwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38Fn +SbNd67IJKusm7Xi+fT8r87cmNW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i +8b5QZ7dsvfPxH2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +DigiCert Global Root CA +======================= +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw +HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw +MDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 +dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq +hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn +TjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5 +BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H +4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y +7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB +o2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm +8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF +BQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr +EbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt +tep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886 +UAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +DigiCert High Assurance EV Root CA +================================== +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBsMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSsw +KQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAw +MFoXDTMxMTExMDAwMDAwMFowbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZ +MBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFu +Y2UgRVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm+9S75S0t +Mqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTWPNt0OKRKzE0lgvdKpVMS +OO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEMxChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3 +MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFBIk5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQ +NAQTXKFx01p8VdteZOE3hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUe +h10aUAsgEsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMB +Af8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaAFLE+w2kD+L9HAdSY +JhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3NecnzyIZgYIVyHbIUf4KmeqvxgydkAQ +V8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6zeM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFp +myPInngiK3BD41VHMWEZ71jFhS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkK +mNEVX58Svnw2Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep+OkuE6N36B9K +-----END CERTIFICATE----- + +Certplus Class 2 Primary CA +=========================== +-----BEGIN CERTIFICATE----- +MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAwPTELMAkGA1UE +BhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFzcyAyIFByaW1hcnkgQ0EwHhcN +OTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2Vy +dHBsdXMxGzAZBgNVBAMTEkNsYXNzIDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBANxQltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR +5aiRVhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyLkcAbmXuZ +Vg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCdEgETjdyAYveVqUSISnFO +YFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yasH7WLO7dDWWuwJKZtkIvEcupdM5i3y95e +e++U8Rs+yskhwcWYAqqi9lt3m/V+llU0HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRME +CDAGAQH/AgEKMAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJ +YIZIAYb4QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMuY29t +L0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/AN9WM2K191EBkOvD +P9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8yfFC82x/xXp8HVGIutIKPidd3i1R +TtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMRFcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+ +7UCmnYR0ObncHoUW2ikbhiMAybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW +//1IMwrh3KWBkJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7 +l7+ijrRU +-----END CERTIFICATE----- + +DST Root CA X3 +============== +-----BEGIN CERTIFICATE----- +MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/MSQwIgYDVQQK +ExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4X +DTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVowPzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1 +cmUgVHJ1c3QgQ28uMRcwFQYDVQQDEw5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBAN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmT +rE4Orz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEqOLl5CjH9 +UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9bxiqKqy69cK3FCxolkHRy +xXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40d +utolucbY38EVAjqr2m7xPi71XAicPNaDaeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQ +MA0GCSqGSIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69ikug +dB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXrAvHRAosZy5Q6XkjE +GB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZzR8srzJmwN0jP41ZL9c8PDHIyh8bw +RLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubS +fZGL+T0yjWW06XyxV3bqxbYoOb8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ +-----END CERTIFICATE----- + +DST ACES CA X6 +============== +-----BEGIN CERTIFICATE----- +MIIECTCCAvGgAwIBAgIQDV6ZCtadt3js2AdWO4YV2TANBgkqhkiG9w0BAQUFADBbMQswCQYDVQQG +EwJVUzEgMB4GA1UEChMXRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QxETAPBgNVBAsTCERTVCBBQ0VT +MRcwFQYDVQQDEw5EU1QgQUNFUyBDQSBYNjAeFw0wMzExMjAyMTE5NThaFw0xNzExMjAyMTE5NTha +MFsxCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdDERMA8GA1UE +CxMIRFNUIEFDRVMxFzAVBgNVBAMTDkRTVCBBQ0VTIENBIFg2MIIBIjANBgkqhkiG9w0BAQEFAAOC +AQ8AMIIBCgKCAQEAuT31LMmU3HWKlV1j6IR3dma5WZFcRt2SPp/5DgO0PWGSvSMmtWPuktKe1jzI +DZBfZIGxqAgNTNj50wUoUrQBJcWVHAx+PhCEdc/BGZFjz+iokYi5Q1K7gLFViYsx+tC3dr5BPTCa +pCIlF3PoHuLTrCq9Wzgh1SpL11V94zpVvddtawJXa+ZHfAjIgrrep4c9oW24MFbCswKBXy314pow +GCi4ZtPLAZZv6opFVdbgnf9nKxcCpk4aahELfrd755jWjHZvwTvbUJN+5dCOHze4vbrGn2zpfDPy +MjwmR/onJALJfh1biEITajV8fTXpLmaRcpPVMibEdPVTo7NdmvYJywIDAQABo4HIMIHFMA8GA1Ud +EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgHGMB8GA1UdEQQYMBaBFHBraS1vcHNAdHJ1c3Rkc3Qu +Y29tMGIGA1UdIARbMFkwVwYKYIZIAWUDAgEBATBJMEcGCCsGAQUFBwIBFjtodHRwOi8vd3d3LnRy +dXN0ZHN0LmNvbS9jZXJ0aWZpY2F0ZXMvcG9saWN5L0FDRVMtaW5kZXguaHRtbDAdBgNVHQ4EFgQU +CXIGThhDD+XWzMNqizF7eI+og7gwDQYJKoZIhvcNAQEFBQADggEBAKPYjtay284F5zLNAdMEA+V2 +5FYrnJmQ6AgwbN99Pe7lv7UkQIRJ4dEorsTCOlMwiPH1d25Ryvr/ma8kXxug/fKshMrfqfBfBC6t +Fr8hlxCBPeP/h40y3JTlR4peahPJlJU90u7INJXQgNStMgiAVDzgvVJT11J8smk/f3rPanTK+gQq +nExaBqXpIK1FZg9p8d2/6eMyi/rgwYZNcjwu2JN4Cir42NInPRmJX1p7ijvMDNpRrscL9yuwNwXs +vFcj4jjSm2jzVhKIT0J8uDHEtdvkyCE06UgRNe76x5JXxZ805Mf29w4LTJxoeHtxMcfrHuBnQfO3 +oKfN5XozNmr6mis= +-----END CERTIFICATE----- + +SwissSign Gold CA - G2 +====================== +-----BEGIN CERTIFICATE----- +MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkNIMRUw +EwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2lnbiBHb2xkIENBIC0gRzIwHhcN +MDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBFMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dp +c3NTaWduIEFHMR8wHQYDVQQDExZTd2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUq +t2/876LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+bbqBHH5C +jCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c6bM8K8vzARO/Ws/BtQpg +vd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqEemA8atufK+ze3gE/bk3lUIbLtK/tREDF +ylqM2tIrfKjuvqblCqoOpd8FUrdVxyJdMmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvR +AiTysybUa9oEVeXBCsdtMDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuend +jIj3o02yMszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69yFGkO +peUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPiaG59je883WX0XaxR +7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxMgI93e2CaHt+28kgeDrpOVG2Y4OGi +GqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUWyV7lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64 +OfPAeGZe6Drn8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov +L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe645R88a7A3hfm +5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczOUYrHUDFu4Up+GC9pWbY9ZIEr +44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOf +Mke6UiI0HTJ6CVanfCU2qT1L2sCCbwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6m +Gu6uLftIdxf+u+yvGPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxp +mo/a77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCChdiDyyJk +vC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid392qgQmwLOM7XdVAyksLf +KzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEppLd6leNcG2mqeSz53OiATIgHQv2ieY2Br +NU0LbbqhPcCT4H8js1WtciVORvnSFu+wZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6Lqj +viOvrv1vA+ACOzB2+httQc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ +-----END CERTIFICATE----- + +SwissSign Silver CA - G2 +======================== +-----BEGIN CERTIFICATE----- +MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCQ0gxFTAT +BgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMB4X +DTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0NlowRzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3 +aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG +9w0BAQEFAAOCAg8AMIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644 +N0MvFz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7brYT7QbNHm ++/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieFnbAVlDLaYQ1HTWBCrpJH +6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH6ATK72oxh9TAtvmUcXtnZLi2kUpCe2Uu +MGoM9ZDulebyzYLs2aFK7PayS+VFheZteJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5h +qAaEuSh6XzjZG6k4sIN/c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5 +FZGkECwJMoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRHHTBs +ROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTfjNFusB3hB48IHpmc +celM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb65i/4z3GcRm25xBWNOHkDRUjvxF3X +CO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUF6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRB +tjpbO8tFnb0cwpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 +cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBAHPGgeAn0i0P +4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShpWJHckRE1qTodvBqlYJ7YH39F +kWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L +3XWgwF15kIwb4FDm3jH+mHtwX6WQ2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx +/uNncqCxv1yL5PqZIseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFa +DGi8aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2Xem1ZqSqP +e97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQRdAtq/gsD/KNVV4n+Ssuu +WxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJ +DIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ub +DgEj8Z+7fNzcbBGXJbLytGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u +-----END CERTIFICATE----- + +GeoTrust Primary Certification Authority +======================================== +-----BEGIN CERTIFICATE----- +MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQG +EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMoR2VvVHJ1c3QgUHJpbWFyeSBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjExMjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgx +CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQ +cmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9AWbK7hWN +b6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjAZIVcFU2Ix7e64HXprQU9 +nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE07e9GceBrAqg1cmuXm2bgyxx5X9gaBGge +RwLmnWDiNpcB3841kt++Z8dtd1k7j53WkBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGt +tm/81w7a4DSwDRp35+MImO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJKoZI +hvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ16CePbJC/kRYkRj5K +Ts4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl4b7UVXGYNTq+k+qurUKykG/g/CFN +NWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6KoKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHa +Floxt/m0cYASSJlyc1pZU8FjUjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG +1riR/aYNKxoUAT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk= +-----END CERTIFICATE----- + +thawte Primary Root CA +====================== +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCBqTELMAkGA1UE +BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2 +aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3 +MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwg +SW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMv +KGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMT +FnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCs +oPD7gFnUnMekz52hWXMJEEUMDSxuaPFsW0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ +1CRfBsDMRJSUjQJib+ta3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGc +q/gcfomk6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6Sk/K +aAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94JNqR32HuHUETVPm4p +afs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XPr87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUF +AAOCAQEAeRHAS7ORtvzw6WfUDW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeE +uzLlQRHAd9mzYJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX +xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2/qxAeeWsEG89 +jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/LHbTY5xZ3Y+m4Q6gLkH3LpVH +z7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7jVaMaA== +-----END CERTIFICATE----- + +VeriSign Class 3 Public Primary Certification Authority - G5 +============================================================ +-----BEGIN CERTIFICATE----- +MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCByjELMAkGA1UE +BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO +ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk +IHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCB +yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2ln +biBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBh +dXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmlt +YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw +ggEKAoIBAQCvJAgIKXo1nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKz +j/i5Vbext0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIzSdhD +Y2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQGBO+QueQA5N06tRn/ +Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+rCpSx4/VBEnkjWNHiDxpg8v+R70r +fk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/ +BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2Uv +Z2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy +aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqG +SIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzEp6B4Eq1iDkVwZMXnl2YtmAl+ +X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKE +KQsTb47bDN0lAtukixlE0kF6BWlKWE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiC +Km0oHw0LxOXnGiYZ4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vE +ZV8NhnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq +-----END CERTIFICATE----- + +SecureTrust CA +============== +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBIMQswCQYDVQQG +EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xFzAVBgNVBAMTDlNlY3VyZVRy +dXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIzMTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAe +BgNVBAoTF1NlY3VyZVRydXN0IENvcnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQX +OZEzZum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO0gMdA+9t +DWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIaowW8xQmxSPmjL8xk037uH +GFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b +01k/unK8RCSc43Oz969XL0Imnal0ugBS8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmH +ursCAwEAAaOBnTCBmjATBgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCegJYYj +aHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ +KoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt36Z3q059c4EVlew3KW+JwULKUBRSu +SceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHf +mbx8IVQr5Fiiu1cprp6poxkmD5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZ +nMUFdAvnZyPSCPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +Secure Global CA +================ +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQG +EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBH +bG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkxMjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEg +MB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwg +Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jx +YDiJiQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa/FHtaMbQ +bqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJjnIFHovdRIWCQtBJwB1g +8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnIHmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYV +HDGA76oYa8J719rO+TMg1fW9ajMtgQT7sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi +0XPnj3pDAgMBAAGjgZ0wgZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCswKaAn +oCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsGAQQBgjcVAQQDAgEA +MA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0LURYD7xh8yOOvaliTFGCRsoTciE6+ +OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXOH0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cn +CDpOGR86p1hcF895P4vkp9MmI50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/5 +3CYNv6ZHdAbYiNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +COMODO Certification Authority +============================== +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCBgTELMAkGA1UE +BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG +A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNVBAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1 +dGhvcml0eTAeFw0wNjEyMDEwMDAwMDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEb +MBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFD +T01PRE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3UcEbVASY06m/weaKXTuH ++7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI2GqGd0S7WWaXUF601CxwRM/aN5VCaTww +xHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV +4EajcNxo2f8ESIl33rXp+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA +1KGzqSX+DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5OnKVI +rLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW/zAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6gPKA6hjhodHRwOi8vY3JsLmNvbW9k +b2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOC +AQEAPpiem/Yb6dc5t3iuHXIYSdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CP +OGEIqB6BCsAvIC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4zJVSk/BwJVmc +IGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5ddBA6+C4OmF4O5MBKgxTMVBbkN ++8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IBZQ== +-----END CERTIFICATE----- + +Network Solutions Certificate Authority +======================================= +-----BEGIN CERTIFICATE----- +MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQG +EwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydOZXR3b3Jr +IFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMx +MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu +MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwzc7MEL7xx +jOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPPOCwGJgl6cvf6UDL4wpPT +aaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rlmGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXT +crA/vGp97Eh/jcOrqnErU2lBUzS1sLnFBgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc +/Qzpf14Dl847ABSHJ3A4qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMB +AAGjgZcwgZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwubmV0c29sc3NsLmNv +bS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3JpdHkuY3JsMA0GCSqGSIb3DQEBBQUA +A4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc86fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q +4LqILPxFzBiwmZVRDuwduIj/h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/ +GGUsyfJj4akH/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv +wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHNpGxlaKFJdlxD +ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey +-----END CERTIFICATE----- + +WellsSecure Public Root Certificate Authority +============================================= +-----BEGIN CERTIFICATE----- +MIIEvTCCA6WgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoM +F1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYw +NAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcN +MDcxMjEzMTcwNzU0WhcNMjIxMjE0MDAwNzU0WjCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dl +bGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYD +VQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDub7S9eeKPCCGeOARBJe+rWxxTkqxtnt3CxC5FlAM1 +iGd0V+PfjLindo8796jE2yljDpFoNoqXjopxaAkH5OjUDk/41itMpBb570OYj7OeUt9tkTmPOL13 +i0Nj67eT/DBMHAGTthP796EfvyXhdDcsHqRePGj4S78NuR4uNuip5Kf4D8uCdXw1LSLWwr8L87T8 +bJVhHlfXBIEyg1J55oNjz7fLY4sR4r1e6/aN7ZVyKLSsEmLpSjPmgzKuBXWVvYSV2ypcm44uDLiB +K0HmOFafSZtsdvqKXfcBeYF8wYNABf5x/Qw/zE5gCQ5lRxAvAcAFP4/4s0HvWkJ+We/SlwxlAgMB +AAGjggE0MIIBMDAPBgNVHRMBAf8EBTADAQH/MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmwu +cGtpLndlbGxzZmFyZ28uY29tL3dzcHJjYS5jcmwwDgYDVR0PAQH/BAQDAgHGMB0GA1UdDgQWBBQm +lRkQ2eihl5H/3BnZtQQ+0nMKajCBsgYDVR0jBIGqMIGngBQmlRkQ2eihl5H/3BnZtQQ+0nMKaqGB +i6SBiDCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRww +GgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMg +Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHmCAQEwDQYJKoZIhvcNAQEFBQADggEBALkVsUSRzCPI +K0134/iaeycNzXK7mQDKfGYZUMbVmO2rvwNa5U3lHshPcZeG1eMd/ZDJPHV3V3p9+N701NX3leZ0 +bh08rnyd2wIDBSxxSyU+B+NemvVmFymIGjifz6pBA4SXa5M4esowRBskRDPQ5NHcKDj0E0M1NSlj +qHyita04pO2t/caaH/+Xc/77szWnk4bGdpEA5qxRFsQnMlzbc9qlk1eOPm01JghZ1edE13YgY+es +E2fDbbFwRnzVlhE9iW9dqKHrjQrawx0zbKPqZxmamX9LPYNRKh3KL4YMon4QLSvUFpULB6ouFJJJ +tylv2G0xffX8oRAHh84vWdw+WNs= +-----END CERTIFICATE----- + +COMODO ECC Certification Authority +================================== +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTELMAkGA1UEBhMC +R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE +ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwHhcNMDgwMzA2MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0Ix +GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRo +b3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSRFtSrYpn1PlILBs5BAH+X +4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0JcfRK9ChQtP6IHG4/bC8vCVlbpVsLM5ni +wz2J+Wos77LTBumjQjBAMB0GA1UdDgQWBBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VG +FAkK+qDmfQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdvGDeA +U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +IGC/A +===== +-----BEGIN CERTIFICATE----- +MIIEAjCCAuqgAwIBAgIFORFFEJQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAkZSMQ8wDQYD +VQQIEwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVE +Q1NTSTEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZy +MB4XDTAyMTIxMzE0MjkyM1oXDTIwMTAxNzE0MjkyMlowgYUxCzAJBgNVBAYTAkZSMQ8wDQYDVQQI +EwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVEQ1NT +STEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZyMIIB +IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsh/R0GLFMzvABIaIs9z4iPf930Pfeo2aSVz2 +TqrMHLmh6yeJ8kbpO0px1R2OLc/mratjUMdUC24SyZA2xtgv2pGqaMVy/hcKshd+ebUyiHDKcMCW +So7kVc0dJ5S/znIq7Fz5cyD+vfcuiWe4u0dzEvfRNWk68gq5rv9GQkaiv6GFGvm/5P9JhfejcIYy +HF2fYPepraX/z9E0+X1bF8bc1g4oa8Ld8fUzaJ1O/Id8NhLWo4DoQw1VYZTqZDdH6nfK0LJYBcNd +frGoRpAxVs5wKpayMLh35nnAvSk7/ZR3TL0gzUEl4C7HG7vupARB0l2tEmqKm0f7yd1GQOGdPDPQ +tQIDAQABo3cwdTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBRjAVBgNVHSAEDjAMMAoGCCqB +egF5AQEBMB0GA1UdDgQWBBSjBS8YYFDCiQrdKyFP/45OqDAxNjAfBgNVHSMEGDAWgBSjBS8YYFDC +iQrdKyFP/45OqDAxNjANBgkqhkiG9w0BAQUFAAOCAQEABdwm2Pp3FURo/C9mOnTgXeQp/wYHE4RK +q89toB9RlPhJy3Q2FLwV3duJL92PoF189RLrn544pEfMs5bZvpwlqwN+Mw+VgQ39FuCIvjfwbF3Q +MZsyK10XZZOYYLxuj7GoPB7ZHPOpJkL5ZB3C55L29B5aqhlSXa/oovdgoPaN8In1buAKBQGVyYsg +Crpa/JosPL3Dt8ldeCUFP1YUmwza+zpI/pdpXsoQhvdOlgQITeywvl3cO45Pwf2aNjSaTFR+FwNI +lQgRHAdvhQh+XU3Endv7rs6y0bO4g2wdsrN58dhwmX7wEwLOXt1R0982gaEbeC9xs/FZTEYYKKuF +0mBWWg== +-----END CERTIFICATE----- + +Security Communication EV RootCA1 +================================= +-----BEGIN CERTIFICATE----- +MIIDfTCCAmWgAwIBAgIBADANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJKUDElMCMGA1UEChMc +U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU2VjdXJpdHkgQ29tbXVuaWNh +dGlvbiBFViBSb290Q0ExMB4XDTA3MDYwNjAyMTIzMloXDTM3MDYwNjAyMTIzMlowYDELMAkGA1UE +BhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKjAoBgNVBAsTIVNl +Y3VyaXR5IENvbW11bmljYXRpb24gRVYgUm9vdENBMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC +AQoCggEBALx/7FebJOD+nLpCeamIivqA4PUHKUPqjgo0No0c+qe1OXj/l3X3L+SqawSERMqm4miO +/VVQYg+kcQ7OBzgtQoVQrTyWb4vVog7P3kmJPdZkLjjlHmy1V4qe70gOzXppFodEtZDkBp2uoQSX +WHnvIEqCa4wiv+wfD+mEce3xDuS4GBPMVjZd0ZoeUWs5bmB2iDQL87PRsJ3KYeJkHcFGB7hj3R4z +ZbOOCVVSPbW9/wfrrWFVGCypaZhKqkDFMxRldAD5kd6vA0jFQFTcD4SQaCDFkpbcLuUCRarAX1T4 +bepJz11sS6/vmsJWXMY1VkJqMF/Cq/biPT+zyRGPMUzXn0kCAwEAAaNCMEAwHQYDVR0OBBYEFDVK +9U2vP9eCOKyrcWUXdYydVZPmMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqG +SIb3DQEBBQUAA4IBAQCoh+ns+EBnXcPBZsdAS5f8hxOQWsTvoMpfi7ent/HWtWS3irO4G8za+6xm +iEHO6Pzk2x6Ipu0nUBsCMCRGef4Eh3CXQHPRwMFXGZpppSeZq51ihPZRwSzJIxXYKLerJRO1RuGG +Av8mjMSIkh1W/hln8lXkgKNrnKt34VFxDSDbEJrbvXZ5B3eZKK2aXtqxT0QsNY6llsf9g/BYxnnW +mHyojf6GPgcWkuF75x3sM3Z+Qi5KhfmRiWiEA4Glm5q+4zfFVKtWOxgtQaQM+ELbmaDgcm+7XeEW +T1MKZPlO9L9OVL14bIjqv5wTJMJwaaJ/D8g8rQjJsJhAoyrniIPtd490 +-----END CERTIFICATE----- + +OISTE WISeKey Global Root GA CA +=============================== +-----BEGIN CERTIFICATE----- +MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCBijELMAkGA1UE +BhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHlyaWdodCAoYykgMjAwNTEiMCAG +A1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBH +bG9iYWwgUm9vdCBHQSBDQTAeFw0wNTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYD +VQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIw +IAYDVQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5 +IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy0+zAJs9 +Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxRVVuuk+g3/ytr6dTqvirdqFEr12bDYVxg +Asj1znJ7O7jyTmUIms2kahnBAbtzptf2w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbD +d50kc3vkDIzh2TbhmYsFmQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ +/yxViJGg4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t94B3R +LoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ +KoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOxSPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vIm +MMkQyh2I+3QZH4VFvbBsUfk2ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4 ++vg1YFkCExh8vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa +hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZiFj4A4xylNoEY +okxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ/L7fCg0= +-----END CERTIFICATE----- + +Microsec e-Szigno Root CA +========================= +-----BEGIN CERTIFICATE----- +MIIHqDCCBpCgAwIBAgIRAMy4579OKRr9otxmpRwsDxEwDQYJKoZIhvcNAQEFBQAwcjELMAkGA1UE +BhMCSFUxETAPBgNVBAcTCEJ1ZGFwZXN0MRYwFAYDVQQKEw1NaWNyb3NlYyBMdGQuMRQwEgYDVQQL +EwtlLVN6aWdubyBDQTEiMCAGA1UEAxMZTWljcm9zZWMgZS1Temlnbm8gUm9vdCBDQTAeFw0wNTA0 +MDYxMjI4NDRaFw0xNzA0MDYxMjI4NDRaMHIxCzAJBgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVz +dDEWMBQGA1UEChMNTWljcm9zZWMgTHRkLjEUMBIGA1UECxMLZS1Temlnbm8gQ0ExIjAgBgNVBAMT +GU1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQDtyADVgXvNOABHzNuEwSFpLHSQDCHZU4ftPkNEU6+r+ICbPHiN1I2uuO/TEdyB5s87lozWbxXG +d36hL+BfkrYn13aaHUM86tnsL+4582pnS4uCzyL4ZVX+LMsvfUh6PXX5qqAnu3jCBspRwn5mS6/N +oqdNAoI/gqyFxuEPkEeZlApxcpMqyabAvjxWTHOSJ/FrtfX9/DAFYJLG65Z+AZHCabEeHXtTRbjc +QR/Ji3HWVBTji1R4P770Yjtb9aPs1ZJ04nQw7wHb4dSrmZsqa/i9phyGI0Jf7Enemotb9HI6QMVJ +PqW+jqpx62z69Rrkav17fVVA71hu5tnVvCSrwe+3AgMBAAGjggQ3MIIEMzBnBggrBgEFBQcBAQRb +MFkwKAYIKwYBBQUHMAGGHGh0dHBzOi8vcmNhLmUtc3ppZ25vLmh1L29jc3AwLQYIKwYBBQUHMAKG +IWh0dHA6Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNydDAPBgNVHRMBAf8EBTADAQH/MIIBcwYD +VR0gBIIBajCCAWYwggFiBgwrBgEEAYGoGAIBAQEwggFQMCgGCCsGAQUFBwIBFhxodHRwOi8vd3d3 +LmUtc3ppZ25vLmh1L1NaU1ovMIIBIgYIKwYBBQUHAgIwggEUHoIBEABBACAAdABhAG4A+gBzAO0A +dAB2AOEAbgB5ACAA6QByAHQAZQBsAG0AZQB6AOkAcwDpAGgAZQB6ACAA6QBzACAAZQBsAGYAbwBn +AGEAZADhAHMA4QBoAG8AegAgAGEAIABTAHoAbwBsAGcA4QBsAHQAYQB0APMAIABTAHoAbwBsAGcA +4QBsAHQAYQB0AOEAcwBpACAAUwB6AGEAYgDhAGwAeQB6AGEAdABhACAAcwB6AGUAcgBpAG4AdAAg +AGsAZQBsAGwAIABlAGwAagDhAHIAbgBpADoAIABoAHQAdABwADoALwAvAHcAdwB3AC4AZQAtAHMA +egBpAGcAbgBvAC4AaAB1AC8AUwBaAFMAWgAvMIHIBgNVHR8EgcAwgb0wgbqggbeggbSGIWh0dHA6 +Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNybIaBjmxkYXA6Ly9sZGFwLmUtc3ppZ25vLmh1L0NO +PU1pY3Jvc2VjJTIwZS1Temlnbm8lMjBSb290JTIwQ0EsT1U9ZS1Temlnbm8lMjBDQSxPPU1pY3Jv +c2VjJTIwTHRkLixMPUJ1ZGFwZXN0LEM9SFU/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDtiaW5h +cnkwDgYDVR0PAQH/BAQDAgEGMIGWBgNVHREEgY4wgYuBEGluZm9AZS1zemlnbm8uaHWkdzB1MSMw +IQYDVQQDDBpNaWNyb3NlYyBlLVN6aWduw7MgUm9vdCBDQTEWMBQGA1UECwwNZS1TemlnbsOzIEhT +WjEWMBQGA1UEChMNTWljcm9zZWMgS2Z0LjERMA8GA1UEBxMIQnVkYXBlc3QxCzAJBgNVBAYTAkhV +MIGsBgNVHSMEgaQwgaGAFMegSXUWYYTbMUuE0vE3QJDvTtz3oXakdDByMQswCQYDVQQGEwJIVTER +MA8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBAoTDU1pY3Jvc2VjIEx0ZC4xFDASBgNVBAsTC2UtU3pp +Z25vIENBMSIwIAYDVQQDExlNaWNyb3NlYyBlLVN6aWdubyBSb290IENBghEAzLjnv04pGv2i3Gal +HCwPETAdBgNVHQ4EFgQUx6BJdRZhhNsxS4TS8TdAkO9O3PcwDQYJKoZIhvcNAQEFBQADggEBANMT +nGZjWS7KXHAM/IO8VbH0jgdsZifOwTsgqRy7RlRw7lrMoHfqaEQn6/Ip3Xep1fvj1KcExJW4C+FE +aGAHQzAxQmHl7tnlJNUb3+FKG6qfx1/4ehHqE5MAyopYse7tDk2016g2JnzgOsHVV4Lxdbb9iV/a +86g4nzUGCM4ilb7N1fy+W955a9x6qWVmvrElWl/tftOsRm1M9DKHtCAE4Gx4sHfRhUZLphK3dehK +yVZs15KrnfVJONJPU+NVkBHbmJbGSfI+9J8b4PeI3CVimUTYc78/MPMMNz7UwiiAc7EBt51alhQB +S6kRnSlqLtBdgcDPsiBDxwPgN05dCtxZICU= +-----END CERTIFICATE----- + +Certigna +======== +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNVBAYTAkZSMRIw +EAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4XDTA3MDYyOTE1MTMwNVoXDTI3 +MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwI +Q2VydGlnbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7q +XOEm7RFHYeGifBZ4QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyH +GxnygQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbwzBfsV1/p +ogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q130yGLMLLGq/jj8UEYkg +DncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKf +Irjxwo1p3Po6WAbfAgMBAAGjgbwwgbkwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQ +tCRZvgHyUtVF9lo53BEwZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJ +BgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzjAQ/J +SP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG9w0BAQUFAAOCAQEA +hQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8hbV6lUmPOEvjvKtpv6zf+EwLHyzs+ +ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFncfca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1klu +PBS1xp81HlDQwY9qcEQCYsuuHWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY +1gkIl2PlwS6wt0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +Deutsche Telekom Root CA 2 +========================== +-----BEGIN CERTIFICATE----- +MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMT +RGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEG +A1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENBIDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5 +MjM1OTAwWjBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0G +A1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBS +b290IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEUha88EOQ5 +bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhCQN/Po7qCWWqSG6wcmtoI +KyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1MjwrrFDa1sPeg5TKqAyZMg4ISFZbavva4VhY +AUlfckE8FQYBjl2tqriTtM2e66foai1SNNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aK +Se5TBY8ZTNXeWHmb0mocQqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTV +jlsB9WoHtxa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAPBgNV +HRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAlGRZrTlk5ynr +E/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756AbrsptJh6sTtU6zkXR34ajgv8HzFZMQSy +zhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpaIzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8 +rZ7/gFnkm0W09juwzTkZmDLl6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4G +dyd1Lx+4ivn+xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU +Cm26OWMohpLzGITY+9HPBVZkVw== +-----END CERTIFICATE----- + +Cybertrust Global Root +====================== +-----BEGIN CERTIFICATE----- +MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYGA1UEChMPQ3li +ZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBSb290MB4XDTA2MTIxNTA4 +MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQD +ExZDeWJlcnRydXN0IEdsb2JhbCBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA ++Mi8vRRQZhP/8NN57CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW +0ozSJ8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2yHLtgwEZL +AfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iPt3sMpTjr3kfb1V05/Iin +89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNzFtApD0mpSPCzqrdsxacwOUBdrsTiXSZT +8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAYXSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2 +MDSgMqAwhi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3JsMB8G +A1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUAA4IBAQBW7wojoFRO +lZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMjWqd8BfP9IjsO0QbE2zZMcwSO5bAi +5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUxXOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2 +hO0j9n0Hq0V+09+zv+mKts2oomcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+T +X3EJIrduPuocA06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW +WL1WMRJOEcgh4LMRkWXbtKaIOM5V +-----END CERTIFICATE----- + +ePKI Root Certification Authority +================================= +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBeMQswCQYDVQQG +EwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0ZC4xKjAoBgNVBAsMIWVQS0kg +Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMx +MjdaMF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEq +MCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAHSyZbCUNs +IZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAhijHyl3SJCRImHJ7K2RKi +lTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3XDZoTM1PRYfl61dd4s5oz9wCGzh1NlDiv +qOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX +12ruOzjjK9SXDrkb5wdJfzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0O +WQqraffAsgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uUWH1+ +ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLSnT0IFaUQAS2zMnao +lQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pHdmX2Os+PYhcZewoozRrSgx4hxyy/ +vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJipNiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXi +Zo1jDiVN1Rmy5nk3pyKdVDECAwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/Qkqi +MAwGA1UdEwQFMAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGBuvl2ICO1J2B0 +1GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6YlPwZpVnPDimZI+ymBV3QGypzq +KOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkPJXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdV +xrsStZf0X4OFunHB2WyBEXYKCrC/gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEP +NXubrjlpC2JgQCA2j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+r +GNm65ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUBo2M3IUxE +xJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS/jQ6fbjpKdx2qcgw+BRx +gMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2zGp1iro2C6pSe3VkQw63d4k3jMdXH7Ojy +sP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTEW9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmOD +BCEIZ43ygknQW/2xzQ+DhNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +T\xc3\x9c\x42\xC4\xB0TAK UEKAE K\xC3\xB6k Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1 - S\xC3\xBCr\xC3\xBCm 3 +============================================================================================================================= +-----BEGIN CERTIFICATE----- +MIIFFzCCA/+gAwIBAgIBETANBgkqhkiG9w0BAQUFADCCASsxCzAJBgNVBAYTAlRSMRgwFgYDVQQH +DA9HZWJ6ZSAtIEtvY2FlbGkxRzBFBgNVBAoMPlTDvHJraXllIEJpbGltc2VsIHZlIFRla25vbG9q +aWsgQXJhxZ90xLFybWEgS3VydW11IC0gVMOcQsSwVEFLMUgwRgYDVQQLDD9VbHVzYWwgRWxla3Ry +b25payB2ZSBLcmlwdG9sb2ppIEFyYcWfdMSxcm1hIEVuc3RpdMO8c8O8IC0gVUVLQUUxIzAhBgNV +BAsMGkthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppMUowSAYDVQQDDEFUw5xCxLBUQUsgVUVLQUUg +S8O2ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSAtIFPDvHLDvG0gMzAeFw0wNzA4 +MjQxMTM3MDdaFw0xNzA4MjExMTM3MDdaMIIBKzELMAkGA1UEBhMCVFIxGDAWBgNVBAcMD0dlYnpl +IC0gS29jYWVsaTFHMEUGA1UECgw+VMO8cmtpeWUgQmlsaW1zZWwgdmUgVGVrbm9sb2ppayBBcmHF +n3TEsXJtYSBLdXJ1bXUgLSBUw5xCxLBUQUsxSDBGBgNVBAsMP1VsdXNhbCBFbGVrdHJvbmlrIHZl +IEtyaXB0b2xvamkgQXJhxZ90xLFybWEgRW5zdGl0w7xzw7wgLSBVRUtBRTEjMCEGA1UECwwaS2Ft +dSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQVTDnELEsFRBSyBVRUtBRSBLw7ZrIFNl +cnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIC0gU8O8csO8bSAzMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEAim1L/xCIOsP2fpTo6iBkcK4hgb46ezzb8R1Sf1n68yJMlaCQvEhO +Eav7t7WNeoMojCZG2E6VQIdhn8WebYGHV2yKO7Rm6sxA/OOqbLLLAdsyv9Lrhc+hDVXDWzhXcLh1 +xnnRFDDtG1hba+818qEhTsXOfJlfbLm4IpNQp81McGq+agV/E5wrHur+R84EpW+sky58K5+eeROR +6Oqeyjh1jmKwlZMq5d/pXpduIF9fhHpEORlAHLpVK/swsoHvhOPc7Jg4OQOFCKlUAwUp8MmPi+oL +hmUZEdPpCSPeaJMDyTYcIW7OjGbxmTDY17PDHfiBLqi9ggtm/oLL4eAagsNAgQIDAQABo0IwQDAd +BgNVHQ4EFgQUvYiHyY/2pAoLquvF/pEjnatKijIwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAB18+kmPNOm3JpIWmgV050vQbTlswyb2zrgxvMTfvCr4 +N5EY3ATIZJkrGG2AA1nJrvhY0D7twyOfaTyGOBye79oneNGEN3GKPEs5z35FBtYt2IpNeBLWrcLT +y9LQQfMmNkqblWwM7uXRQydmwYj3erMgbOqwaSvHIOgMA8RBBZniP+Rr+KCGgceExh/VS4ESshYh +LBOhgLJeDEoTniDYYkCrkOpkSi+sDQESeUWoL4cZaMjihccwsnX5OD+ywJO0a+IDRM5noN+J1q2M +dqMTw5RhK2vZbMEHCiIHhWyFJEapvj+LeISCfiQMnf2BN+MlqO02TpUsyZyQ2uypQjyttgI= +-----END CERTIFICATE----- + +Buypass Class 2 CA 1 +==================== +-----BEGIN CERTIFICATE----- +MIIDUzCCAjugAwIBAgIBATANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU +QnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3MgQ2xhc3MgMiBDQSAxMB4XDTA2 +MTAxMzEwMjUwOVoXDTE2MTAxMzEwMjUwOVowSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBh +c3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDIgQ0EgMTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAIs8B0XY9t/mx8q6jUPFR42wWsE425KEHK8T1A9vNkYgxC7M +cXA0ojTTNy7Y3Tp3L8DrKehc0rWpkTSHIln+zNvnma+WwajHQN2lFYxuyHyXA8vmIPLXl18xoS83 +0r7uvqmtqEyeIWZDO6i88wmjONVZJMHCR3axiFyCO7srpgTXjAePzdVBHfCuuCkslFJgNJQ72uA4 +0Z0zPhX0kzLFANq1KWYOOngPIVJfAuWSeyXTkh4vFZ2B5J2O6O+JzhRMVB0cgRJNcKi+EAUXfh/R +uFdV7c27UsKwHnjCTTZoy1YmwVLBvXb3WNVyfh9EdrsAiR0WnVE1703CVu9r4Iw7DekCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUP42aWYv8e3uco684sDntkHGA1sgwDgYDVR0P +AQH/BAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQAVGn4TirnoB6NLJzKyQJHyIdFkhb5jatLPgcIV +1Xp+DCmsNx4cfHZSldq1fyOhKXdlyTKdqC5Wq2B2zha0jX94wNWZUYN/Xtm+DKhQ7SLHrQVMdvvt +7h5HZPb3J31cKA9FxVxiXqaakZG3Uxcu3K1gnZZkOb1naLKuBctN518fV4bVIJwo+28TOPX2EZL2 +fZleHwzoq0QkKXJAPTZSr4xYkHPB7GEseaHsh7U/2k3ZIQAw3pDaDtMaSKk+hQsUi4y8QZ5q9w5w +wDX3OaJdZtB7WZ+oRxKaJyOkLY4ng5IgodcVf/EuGO70SH8vf/GhGLWhC5SgYiAynB321O+/TIho +-----END CERTIFICATE----- + +EBG Elektronik Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1 +========================================================================== +-----BEGIN CERTIFICATE----- +MIIF5zCCA8+gAwIBAgIITK9zQhyOdAIwDQYJKoZIhvcNAQEFBQAwgYAxODA2BgNVBAMML0VCRyBF +bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMTcwNQYDVQQKDC5FQkcg +QmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMQswCQYDVQQGEwJUUjAe +Fw0wNjA4MTcwMDIxMDlaFw0xNjA4MTQwMDMxMDlaMIGAMTgwNgYDVQQDDC9FQkcgRWxla3Ryb25p +ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTE3MDUGA1UECgwuRUJHIEJpbGnFn2lt +IFRla25vbG9qaWxlcmkgdmUgSGl6bWV0bGVyaSBBLsWeLjELMAkGA1UEBhMCVFIwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQDuoIRh0DpqZhAy2DE4f6en5f2h4fuXd7hxlugTlkaDT7by +X3JWbhNgpQGR4lvFzVcfd2NR/y8927k/qqk153nQ9dAktiHq6yOU/im/+4mRDGSaBUorzAzu8T2b +gmmkTPiab+ci2hC6X5L8GCcKqKpE+i4stPtGmggDg3KriORqcsnlZR9uKg+ds+g75AxuetpX/dfr +eYteIAbTdgtsApWjluTLdlHRKJ2hGvxEok3MenaoDT2/F08iiFD9rrbskFBKW5+VQarKD7JK/oCZ +TqNGFav4c0JqwmZ2sQomFd2TkuzbqV9UIlKRcF0T6kjsbgNs2d1s/OsNA/+mgxKb8amTD8UmTDGy +Y5lhcucqZJnSuOl14nypqZoaqsNW2xCaPINStnuWt6yHd6i58mcLlEOzrz5z+kI2sSXFCjEmN1Zn +uqMLfdb3ic1nobc6HmZP9qBVFCVMLDMNpkGMvQQxahByCp0OLna9XvNRiYuoP1Vzv9s6xiQFlpJI +qkuNKgPlV5EQ9GooFW5Hd4RcUXSfGenmHmMWOeMRFeNYGkS9y8RsZteEBt8w9DeiQyJ50hBs37vm +ExH8nYQKE3vwO9D8owrXieqWfo1IhR5kX9tUoqzVegJ5a9KK8GfaZXINFHDk6Y54jzJ0fFfy1tb0 +Nokb+Clsi7n2l9GkLqq+CxnCRelwXQIDAJ3Zo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB +/wQEAwIBBjAdBgNVHQ4EFgQU587GT/wWZ5b6SqMHwQSny2re2kcwHwYDVR0jBBgwFoAU587GT/wW +Z5b6SqMHwQSny2re2kcwDQYJKoZIhvcNAQEFBQADggIBAJuYml2+8ygjdsZs93/mQJ7ANtyVDR2t +FcU22NU57/IeIl6zgrRdu0waypIN30ckHrMk2pGI6YNw3ZPX6bqz3xZaPt7gyPvT/Wwp+BVGoGgm +zJNSroIBk5DKd8pNSe/iWtkqvTDOTLKBtjDOWU/aWR1qeqRFsIImgYZ29fUQALjuswnoT4cCB64k +XPBfrAowzIpAoHMEwfuJJPaaHFy3PApnNgUIMbOv2AFoKuB4j3TeuFGkjGwgPaL7s9QJ/XvCgKqT +bCmYIai7FvOpEl90tYeY8pUm3zTvilORiF0alKM/fCL414i6poyWqD1SNGKfAB5UVUJnxk1Gj7sU +RT0KlhaOEKGXmdXTMIXM3rRyt7yKPBgpaP3ccQfuJDlq+u2lrDgv+R4QDgZxGhBM/nV+/x5XOULK +1+EVoVZVWRvRo68R2E7DpSvvkL/A7IITW43WciyTTo9qKd+FPNMN4KIYEsxVL0e3p5sC/kH2iExt +2qkBR4NkJ2IQgtYSe14DHzSpyZH+r11thie3I6p1GMog57AP14kOpmciY/SDQSsGS7tY1dHXt7kQ +Y9iJSrSq3RZj9W6+YKH47ejWkE8axsWgKdOnIaj1Wjz3x0miIZpKlVIglnKaZsv30oZDfCK+lvm9 +AahH3eU7QPl1K5srRmSGjR70j/sHd9DqSaIcjVIUpgqT +-----END CERTIFICATE----- + +certSIGN ROOT CA +================ +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYTAlJPMREwDwYD +VQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTAeFw0wNjA3MDQxNzIwMDRa +Fw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UE +CxMQY2VydFNJR04gUk9PVCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7I +JUqOtdu0KBuqV5Do0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHH +rfAQUySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5dRdY4zTW2 +ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQOA7+j0xbm0bqQfWwCHTD +0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwvJoIQ4uNllAoEwF73XVv4EOLQunpL+943 +AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B +Af8EBAMCAcYwHQYDVR0OBBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IB +AQA+0hyJLjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecYMnQ8 +SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ44gx+FkagQnIl6Z0 +x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6IJd1hJyMctTEHBDa0GpC9oHRxUIlt +vBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNwi/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7Nz +TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +CNNIC ROOT +========== +-----BEGIN CERTIFICATE----- +MIIDVTCCAj2gAwIBAgIESTMAATANBgkqhkiG9w0BAQUFADAyMQswCQYDVQQGEwJDTjEOMAwGA1UE +ChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwHhcNMDcwNDE2MDcwOTE0WhcNMjcwNDE2MDcw +OTE0WjAyMQswCQYDVQQGEwJDTjEOMAwGA1UEChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1Qw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDTNfc/c3et6FtzF8LRb+1VvG7q6KR5smzD +o+/hn7E7SIX1mlwhIhAsxYLO2uOabjfhhyzcuQxauohV3/2q2x8x6gHx3zkBwRP9SFIhxFXf2tiz +VHa6dLG3fdfA6PZZxU3Iva0fFNrfWEQlMhkqx35+jq44sDB7R3IJMfAw28Mbdim7aXZOV/kbZKKT +VrdvmW7bCgScEeOAH8tjlBAKqeFkgjH5jCftppkA9nCTGPihNIaj3XrCGHn2emU1z5DrvTOTn1Or +czvmmzQgLx3vqR1jGqCA2wMv+SYahtKNu6m+UjqHZ0gNv7Sg2Ca+I19zN38m5pIEo3/PIKe38zrK +y5nLAgMBAAGjczBxMBEGCWCGSAGG+EIBAQQEAwIABzAfBgNVHSMEGDAWgBRl8jGtKvf33VKWCscC +wQ7vptU7ETAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIB/jAdBgNVHQ4EFgQUZfIxrSr3991S +lgrHAsEO76bVOxEwDQYJKoZIhvcNAQEFBQADggEBAEs17szkrr/Dbq2flTtLP1se31cpolnKOOK5 +Gv+e5m4y3R6u6jW39ZORTtpC4cMXYFDy0VwmuYK36m3knITnA3kXr5g9lNvHugDnuL8BV8F3RTIM +O/G0HAiw/VGgod2aHRM2mm23xzy54cXZF/qD1T0VoDy7HgviyJA/qIYM/PmLXoXLT1tLYhFHxUV8 +BS9BsZ4QaRuZluBVeftOhpm4lNqGOGqTo+fLbuXf6iFViZx9fX+Y9QCJ7uOEwFyWtcVG6kbghVW2 +G8kS1sHNzYDzAgE8yGnLRUhj2JTQ7IUOO04RZfSCjKY9ri4ilAnIXOo8gV0WKgOXFlUJ24pBgp5m +mxE= +-----END CERTIFICATE----- + +ApplicationCA - Japanese Government +=================================== +-----BEGIN CERTIFICATE----- +MIIDoDCCAoigAwIBAgIBMTANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJKUDEcMBoGA1UEChMT +SmFwYW5lc2UgR292ZXJubWVudDEWMBQGA1UECxMNQXBwbGljYXRpb25DQTAeFw0wNzEyMTIxNTAw +MDBaFw0xNzEyMTIxNTAwMDBaMEMxCzAJBgNVBAYTAkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zl +cm5tZW50MRYwFAYDVQQLEw1BcHBsaWNhdGlvbkNBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAp23gdE6Hj6UG3mii24aZS2QNcfAKBZuOquHMLtJqO8F6tJdhjYq+xpqcBrSGUeQ3DnR4 +fl+Kf5Sk10cI/VBaVuRorChzoHvpfxiSQE8tnfWuREhzNgaeZCw7NCPbXCbkcXmP1G55IrmTwcrN +wVbtiGrXoDkhBFcsovW8R0FPXjQilbUfKW1eSvNNcr5BViCH/OlQR9cwFO5cjFW6WY2H/CPek9AE +jP3vbb3QesmlOmpyM8ZKDQUXKi17safY1vC+9D/qDihtQWEjdnjDuGWk81quzMKq2edY3rZ+nYVu +nyoKb58DKTCXKB28t89UKU5RMfkntigm/qJj5kEW8DOYRwIDAQABo4GeMIGbMB0GA1UdDgQWBBRU +WssmP3HMlEYNllPqa0jQk/5CdTAOBgNVHQ8BAf8EBAMCAQYwWQYDVR0RBFIwUKROMEwxCzAJBgNV +BAYTAkpQMRgwFgYDVQQKDA/ml6XmnKzlm73mlL/lupwxIzAhBgNVBAsMGuOCouODl+ODquOCseOD +vOOCt+ODp+ODs0NBMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADlqRHZ3ODrs +o2dGD/mLBqj7apAxzn7s2tGJfHrrLgy9mTLnsCTWw//1sogJhyzjVOGjprIIC8CFqMjSnHH2HZ9g +/DgzE+Ge3Atf2hZQKXsvcJEPmbo0NI2VdMV+eKlmXb3KIXdCEKxmJj3ekav9FfBv7WxfEPjzFvYD +io+nEhEMy/0/ecGc/WLuo89UDNErXxc+4z6/wCs+CZv+iKZ+tJIX/COUgb1up8WMwusRRdv4QcmW +dupwX3kSa+SjB1oF7ydJzyGfikwJcGapJsErEU4z0g781mzSDjJkaP+tBXhfAx2o45CsJOAPQKdL +rosot4LKGAfmt1t06SAZf7IbiVQ= +-----END CERTIFICATE----- + +GeoTrust Primary Certification Authority - G3 +============================================= +-----BEGIN CERTIFICATE----- +MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UE +BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA4IEdlb1RydXN0 +IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFy +eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIz +NTk1OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAo +YykgMjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMT +LUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz+uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5j +K/BGvESyiaHAKAxJcCGVn2TAppMSAmUmhsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdE +c5IiaacDiGydY8hS2pgn5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3C +IShwiP/WJmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exALDmKu +dlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZChuOl1UcCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMR5yo6hTgMdHNxr +2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IBAQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9 +cr5HqQ6XErhK8WTTOd8lNNTBzU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbE +Ap7aDHdlDkQNkv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD +AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUHSJsMC8tJP33s +t/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2Gspki4cErx5z481+oghLrGREt +-----END CERTIFICATE----- + +thawte Primary Root CA - G2 +=========================== +-----BEGIN CERTIFICATE----- +MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDELMAkGA1UEBhMC +VVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMpIDIwMDcgdGhhd3RlLCBJbmMu +IC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3Qg +Q0EgLSBHMjAeFw0wNzExMDUwMDAwMDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEV +MBMGA1UEChMMdGhhd3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBG +b3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAt +IEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/BebfowJPDQfGAFG6DAJS +LSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6papu+7qzcMBniKI11KOasf2twu8x+qi5 +8/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU +mtgAMADna3+FGO6Lts6KDPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUN +G4k8VIZ3KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41oxXZ3K +rr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg== +-----END CERTIFICATE----- + +thawte Primary Root CA - G3 +=========================== +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCBrjELMAkGA1UE +BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2 +aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0w +ODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh +d3RlLCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMTgwNgYD +VQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIG +A1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAsr8nLPvb2FvdeHsbnndmgcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2At +P0LMqmsywCPLLEHd5N/8YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC ++BsUa0Lfb1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS99irY +7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2SzhkGcuYMXDhpxwTW +vGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUkOQIDAQABo0IwQDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJ +KoZIhvcNAQELBQADggEBABpA2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweK +A3rD6z8KLFIWoCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu +t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7cKUGRIjxpp7sC +8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fMm7v/OeZWYdMKp8RcTGB7BXcm +er/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZuMdRAGmI0Nj81Aa6sY6A= +-----END CERTIFICATE----- + +GeoTrust Primary Certification Authority - G2 +============================================= +-----BEGIN CERTIFICATE----- +MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA3IEdlb1RydXN0IElu +Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1 +OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg +MjAwNyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMTLUdl +b1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjB2MBAGByqGSM49AgEG +BSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcLSo17VDs6bl8VAsBQps8lL33KSLjHUGMc +KiEIfJo22Av+0SbFWDEwKCXzXV2juLaltJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+ +EVXVMAoGCCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGTqQ7m +ndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBuczrD6ogRLQy7rQkgu2 +npaqBA+K +-----END CERTIFICATE----- + +VeriSign Universal Root Certification Authority +=============================================== +-----BEGIN CERTIFICATE----- +MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCBvTELMAkGA1UE +BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO +ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk +IHVzZSBvbmx5MTgwNgYDVQQDEy9WZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9u +IEF1dGhvcml0eTAeFw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJV +UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv +cmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl +IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj +1mCOkdeQmIN65lgZOIzF9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGP +MiJhgsWHH26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+HLL72 +9fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN/BMReYTtXlT2NJ8I +AfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPTrJ9VAMf2CGqUuV/c4DPxhGD5WycR +tPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0G +CCsGAQUFBwEMBGEwX6FdoFswWTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2O +a8PPgGrUSBgsexkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud +DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4sAPmLGd75JR3 +Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+seQxIcaBlVZaDrHC1LGmWazx +Y8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTx +P/jgdFcrGJ2BtMQo2pSXpXDrrB2+BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+P +wGZsY6rp2aQW9IHRlRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4 +mJO37M2CYfE45k+XmCpajQ== +-----END CERTIFICATE----- + +VeriSign Class 3 Public Primary Certification Authority - G4 +============================================================ +-----BEGIN CERTIFICATE----- +MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjELMAkGA1UEBhMC +VVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3 +b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVz +ZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjEL +MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBU +cnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRo +b3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5 +IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8 +Utpkmw4tXNherJI9/gHmGUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGz +rl0Bp3vefLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEw +HzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVyaXNpZ24u +Y29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMWkf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMD +A2gAMGUCMGYhDBgmYFo4e1ZC4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIx +AJw9SDkjOVgaFRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA== +-----END CERTIFICATE----- + +NetLock Arany (Class Gold) Főtanúsítvány +============================================ +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G +A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610 +dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBB +cmFueSAoQ2xhc3MgR29sZCkgRsWRdGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgx +MjA2MTUwODIxWjCBpzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxO +ZXRMb2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlmaWNhdGlv +biBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNzIEdvbGQpIEbFkXRhbsO6 +c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxCRec75LbRTDofTjl5Bu +0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrTlF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw +/HpYzY6b7cNGbIRwXdrzAZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAk +H3B5r9s5VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRGILdw +fzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2BJtr+UBdADTHLpl1 +neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAGAQH/AgEEMA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2MU9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwW +qZw8UQCgwBEIBaeZ5m8BiFRhbvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTta +YtOUZcTh5m2C+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2FuLjbvrW5Kfna +NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu +dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +Staat der Nederlanden Root CA - G2 +================================== +-----BEGIN CERTIFICATE----- +MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE +CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g +Um9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oXDTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMC +TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l +ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ +5291qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8SpuOUfiUtn +vWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPUZ5uW6M7XxgpT0GtJlvOj +CwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvEpMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiil +e7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCR +OME4HYYEhLoaJXhena/MUGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpI +CT0ugpTNGmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy5V65 +48r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv6q012iDTiIJh8BIi +trzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEKeN5KzlW/HdXZt1bv8Hb/C3m1r737 +qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMB +AAGjgZcwgZQwDwYDVR0TAQH/BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcC +ARYxaHR0cDovL3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV +HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqGSIb3DQEBCwUA +A4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLySCZa59sCrI2AGeYwRTlHSeYAz ++51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwj +f/ST7ZwaUb7dRUG/kSS0H4zpX897IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaN +kqbG9AclVMwWVxJKgnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfk +CpYL+63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxLvJxxcypF +URmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkmbEgeqmiSBeGCc1qb3Adb +CG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvkN1trSt8sV4pAWja63XVECDdCcAz+3F4h +oKOKwJCcaNpQ5kUQR3i2TtJlycM33+FCY7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoV +IPVVYpbtbZNQvOSqeK3Zywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm +66+KAQ== +-----END CERTIFICATE----- + +Juur-SK +======= +-----BEGIN CERTIFICATE----- +MIIE5jCCA86gAwIBAgIEO45L/DANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lA +c2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAw +DgYDVQQDEwdKdXVyLVNLMB4XDTAxMDgzMDE0MjMwMVoXDTE2MDgyNjE0MjMwMVowXTEYMBYGCSqG +SIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVy +aW1pc2tlc2t1czEQMA4GA1UEAxMHSnV1ci1TSzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAIFxNj4zB9bjMI0TfncyRsvPGbJgMUaXhvSYRqTCZUXP00B841oiqBB4M8yIsdOBSvZiF3tf +TQou0M+LI+5PAk676w7KvRhj6IAcjeEcjT3g/1tf6mTll+g/mX8MCgkzABpTpyHhOEvWgxutr2TC ++Rx6jGZITWYfGAriPrsfB2WThbkasLnE+w0R9vXW+RvHLCu3GFH+4Hv2qEivbDtPL+/40UceJlfw +UR0zlv/vWT3aTdEVNMfqPxZIe5EcgEMPPbgFPtGzlc3Yyg/CQ2fbt5PgIoIuvvVoKIO5wTtpeyDa +Tpxt4brNj3pssAki14sL2xzVWiZbDcDq5WDQn/413z8CAwEAAaOCAawwggGoMA8GA1UdEwEB/wQF +MAMBAf8wggEWBgNVHSAEggENMIIBCTCCAQUGCisGAQQBzh8BAQEwgfYwgdAGCCsGAQUFBwICMIHD +HoHAAFMAZQBlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0ACAAbwBuACAAdgDkAGwAagBhAHMAdABh +AHQAdQBkACAAQQBTAC0AaQBzACAAUwBlAHIAdABpAGYAaQB0AHMAZQBlAHIAaQBtAGkAcwBrAGUA +cwBrAHUAcwAgAGEAbABhAG0ALQBTAEsAIABzAGUAcgB0AGkAZgBpAGsAYQBhAHQAaQBkAGUAIABr +AGkAbgBuAGkAdABhAG0AaQBzAGUAawBzMCEGCCsGAQUFBwIBFhVodHRwOi8vd3d3LnNrLmVlL2Nw +cy8wKwYDVR0fBCQwIjAgoB6gHIYaaHR0cDovL3d3dy5zay5lZS9qdXVyL2NybC8wHQYDVR0OBBYE +FASqekej5ImvGs8KQKcYP2/v6X2+MB8GA1UdIwQYMBaAFASqekej5ImvGs8KQKcYP2/v6X2+MA4G +A1UdDwEB/wQEAwIB5jANBgkqhkiG9w0BAQUFAAOCAQEAe8EYlFOiCfP+JmeaUOTDBS8rNXiRTHyo +ERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+gkcm2k298gFTsxwhwDY77guwqYHhpNjbRxZyL +abVAyJRld/JXIWY7zoVAtjNjGr95HvxcHdMdkxuLDF2FvZkwMhgJkVLpfKG6/2SSmuz+Ne6ML678 +IIbsSt4beDI3poHSna9aEhbKmVv8b20OxaAehsmR0FyYgl9jDIpaq9iVpszLita/ZEuOyoqysOkh +Mp6qqIWYNIE5ITuoOlIyPfZrN4YGWhWY3PARZv40ILcD9EEQfTmEeZZyY7aWAuVrua0ZTbvGRNs2 +yyqcjg== +-----END CERTIFICATE----- + +Hongkong Post Root CA 1 +======================= +-----BEGIN CERTIFICATE----- +MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoT +DUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMB4XDTAzMDUx +NTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25n +IFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1 +ApzQjVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEnPzlTCeqr +auh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjhZY4bXSNmO7ilMlHIhqqh +qZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9nnV0ttgCXjqQesBCNnLsak3c78QA3xMY +V18meMjWCnl3v/evt3a5pQuEF10Q6m/hq5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNV +HRMBAf8ECDAGAQH/AgEDMA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7i +h9legYsCmEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI37pio +l7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clBoiMBdDhViw+5Lmei +IAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJsEhTkYY2sEJCehFC78JZvRZ+K88ps +T/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpOfMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilT +c4afU9hDDl3WY4JxHYB0yvbiAmvZWg== +-----END CERTIFICATE----- + +SecureSign RootCA11 +=================== +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDErMCkGA1UEChMi +SmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoGA1UEAxMTU2VjdXJlU2lnbiBS +b290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSsw +KQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1 +cmVTaWduIFJvb3RDQTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvL +TJszi1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8h9uuywGO +wvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOVMdrAG/LuYpmGYz+/3ZMq +g6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rP +O7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitA +bpSACW22s293bzUIUPsCh8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZX +t94wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAKCh +OBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xmKbabfSVSSUOrTC4r +bnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQX5Ucv+2rIrVls4W6ng+4reV6G4pQ +Oh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWrQbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01 +y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061 +lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- + +ACEDICOM Root +============= +-----BEGIN CERTIFICATE----- +MIIFtTCCA52gAwIBAgIIYY3HhjsBggUwDQYJKoZIhvcNAQEFBQAwRDEWMBQGA1UEAwwNQUNFRElD +T00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00xCzAJBgNVBAYTAkVTMB4XDTA4 +MDQxODE2MjQyMloXDTI4MDQxMzE2MjQyMlowRDEWMBQGA1UEAwwNQUNFRElDT00gUm9vdDEMMAoG +A1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00xCzAJBgNVBAYTAkVTMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA/5KV4WgGdrQsyFhIyv2AVClVYyT/kGWbEHV7w2rbYgIB8hiGtXxaOLHk +WLn709gtn70yN78sFW2+tfQh0hOR2QetAQXW8713zl9CgQr5auODAKgrLlUTY4HKRxx7XBZXehuD +YAQ6PmXDzQHe3qTWDLqO3tkE7hdWIpuPY/1NFgu3e3eM+SW10W2ZEi5PGrjm6gSSrj0RuVFCPYew +MYWveVqc/udOXpJPQ/yrOq2lEiZmueIM15jO1FillUAKt0SdE3QrwqXrIhWYENiLxQSfHY9g5QYb +m8+5eaA9oiM/Qj9r+hwDezCNzmzAv+YbX79nuIQZ1RXve8uQNjFiybwCq0Zfm/4aaJQ0PZCOrfbk +HQl/Sog4P75n/TSW9R28MHTLOO7VbKvU/PQAtwBbhTIWdjPp2KOZnQUAqhbm84F9b32qhm2tFXTT +xKJxqvQUfecyuB+81fFOvW8XAjnXDpVCOscAPukmYxHqC9FK/xidstd7LzrZlvvoHpKuE1XI2Sf2 +3EgbsCTBheN3nZqk8wwRHQ3ItBTutYJXCb8gWH8vIiPYcMt5bMlL8qkqyPyHK9caUPgn6C9D4zq9 +2Fdx/c6mUlv53U3t5fZvie27k5x2IXXwkkwp9y+cAS7+UEaeZAwUswdbxcJzbPEHXEUkFDWug/Fq +TYl6+rPYLWbwNof1K1MCAwEAAaOBqjCBpzAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKaz +4SsrSbbXc6GqlPUB53NlTKxQMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUprPhKytJttdzoaqU +9QHnc2VMrFAwRAYDVR0gBD0wOzA5BgRVHSAAMDEwLwYIKwYBBQUHAgEWI2h0dHA6Ly9hY2VkaWNv +bS5lZGljb21ncm91cC5jb20vZG9jMA0GCSqGSIb3DQEBBQUAA4ICAQDOLAtSUWImfQwng4/F9tqg +aHtPkl7qpHMyEVNEskTLnewPeUKzEKbHDZ3Ltvo/Onzqv4hTGzz3gvoFNTPhNahXwOf9jU8/kzJP +eGYDdwdY6ZXIfj7QeQCM8htRM5u8lOk6e25SLTKeI6RF+7YuE7CLGLHdztUdp0J/Vb77W7tH1Pwk +zQSulgUV1qzOMPPKC8W64iLgpq0i5ALudBF/TP94HTXa5gI06xgSYXcGCRZj6hitoocf8seACQl1 +ThCojz2GuHURwCRiipZ7SkXp7FnFvmuD5uHorLUwHv4FB4D54SMNUI8FmP8sX+g7tq3PgbUhh8oI +KiMnMCArz+2UW6yyetLHKKGKC5tNSixthT8Jcjxn4tncB7rrZXtaAWPWkFtPF2Y9fwsZo5NjEFIq +nxQWWOLcpfShFosOkYuByptZ+thrkQdlVV9SH686+5DdaaVbnG0OLLb6zqylfDJKZ0DcMDQj3dcE +I2bw/FWAp/tmGYI1Z2JwOV5vx+qQQEQIHriy1tvuWacNGHk0vFQYXlPKNFHtRQrmjseCNj6nOGOp +MCwXEGCSn1WHElkQwg9naRHMTh5+Spqtr0CodaxWkHS4oJyleW/c6RrIaQXpuvoDs3zk4E7Czp3o +tkYNbn5XOmeUwssfnHdKZ05phkOTOPu220+DkdRgfks+KzgHVZhepA== +-----END CERTIFICATE----- + +Microsec e-Szigno Root CA 2009 +============================== +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYDVQQGEwJIVTER +MA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jv +c2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTAeFw0wOTA2MTYxMTMwMThaFw0yOTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UE +BwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUt +U3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvPkd6mJviZpWNwrZuuyjNA +fW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tccbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG +0IMZfcChEhyVbUr02MelTTMuhTlAdX4UfIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKA +pxn1ntxVUwOXewdI/5n7N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm +1HxdrtbCxkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1+rUC +AwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTLD8bf +QkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAbBgNVHREE +FDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqGSIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0o +lZMEyL/azXm4Q5DwpL7v8u8hmLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfX +I/OMn74dseGkddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c2Pm2G2JwCz02 +yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5tHMN1Rq41Bab2XD0h7lbwyYIi +LXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +GlobalSign Root CA - R3 +======================= +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xv +YmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh +bFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT +aWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln +bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWt +iHL8RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsTgHeMCOFJ +0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmmKPZpO/bLyCiR5Z2KYVc3 +rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zdQQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjl +OCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZXriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2 +xmmFghcCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE +FI/wS3+oLkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZURUm7 +lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMpjjM5RcOO5LlXbKr8 +EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK6fBdRoyV3XpYKBovHd7NADdBj+1E +bddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQXmcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18 +YIvDQVETI53O9zJrlAGomecsMx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7r +kpeDMdmztcpHWD9f +-----END CERTIFICATE----- + +Autoridad de Certificacion Firmaprofesional CIF A62634068 +========================================================= +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UEBhMCRVMxQjBA +BgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2 +MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEyMzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIw +QAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBB +NjI2MzQwNjgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDD +Utd9thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQMcas9UX4P +B99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefGL9ItWY16Ck6WaVICqjaY +7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15iNA9wBj4gGFrO93IbJWyTdBSTo3OxDqqH +ECNZXyAFGUftaI6SEspd/NYrspI8IM/hX68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyI +plD9amML9ZMWGxmPsu2bm8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctX +MbScyJCyZ/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirjaEbsX +LZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/TKI8xWVvTyQKmtFLK +bpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF6NkBiDkal4ZkQdU7hwxu+g/GvUgU +vzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVhOSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1Ud +EwEB/wQIMAYBAf8CAQEwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNH +DhpkLzCBpgYDVR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp +cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBvACAAZABlACAA +bABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBlAGwAbwBuAGEAIAAwADgAMAAx +ADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx +51tkljYyGOylMnfX40S2wBEqgLk9am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qk +R71kMrv2JYSiJ0L1ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaP +T481PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS3a/DTg4f +Jl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5kSeTy36LssUzAKh3ntLFl +osS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF3dvd6qJ2gHN99ZwExEWN57kci57q13XR +crHedUTnQn3iV2t93Jm8PYMo6oCTjcVMZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoR +saS8I8nkvof/uZS2+F0gStRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTD +KCOM/iczQ0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQBjLMi +6Et8Vcad+qMUu2WFbm5PEn4KPJ2V +-----END CERTIFICATE----- + +Izenpe.com +========== +-----BEGIN CERTIFICATE----- +MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4MQswCQYDVQQG +EwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wHhcNMDcxMjEz +MTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMu +QS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ +03rKDx6sp4boFmVqscIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAK +ClaOxdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6HLmYRY2xU ++zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFXuaOKmMPsOzTFlUFpfnXC +PCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQDyCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxT +OTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbK +F7jJeodWLBoBHmy+E60QrLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK +0GqfvEyNBjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8Lhij+ +0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIBQFqNeb+Lz0vPqhbB +leStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+HMh3/1uaD7euBUbl8agW7EekFwID +AQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2luZm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+ +SVpFTlBFIFMuQS4gLSBDSUYgQTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBG +NjIgUzgxQzBBBgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx +MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O +BBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUAA4ICAQB4pgwWSp9MiDrAyw6l +Fn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWblaQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbga +kEyrkgPH7UIBzg/YsfqikuFgba56awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8q +hT/AQKM6WfxZSzwoJNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Cs +g1lwLDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCTVyvehQP5 +aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGkLhObNA5me0mrZJfQRsN5 +nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJbUjWumDqtujWTI6cfSN01RpiyEGjkpTHC +ClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZo +Q0iy2+tzJOeRf1SktoA+naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1Z +WrOZyGlsQyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== +-----END CERTIFICATE----- + +Chambers of Commerce Root - 2008 +================================ +-----BEGIN CERTIFICATE----- +MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYDVQQGEwJFVTFD +MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv +bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu +QS4xKTAnBgNVBAMTIENoYW1iZXJzIG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEy +Mjk1MFoXDTM4MDczMTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNl +ZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQF +EwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJl +cnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW928sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKA +XuFixrYp4YFs8r/lfTJqVKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorj +h40G072QDuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR5gN/ +ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfLZEFHcpOrUMPrCXZk +NNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05aSd+pZgvMPMZ4fKecHePOjlO+Bd5g +D2vlGts/4+EhySnB8esHnFIbAURRPHsl18TlUlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331 +lubKgdaX8ZSD6e2wsWsSaR6s+12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ +0wlf2eOKNcx5Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj +ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAxhduub+84Mxh2 +EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNVHQ4EFgQU+SSsD7K1+HnA+mCI +G8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1+HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJ +BgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNh +bWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENh +bWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDiC +CQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUH +AgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAJASryI1 +wqM58C7e6bXpeHxIvj99RZJe6dqxGfwWPJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH +3qLPaYRgM+gQDROpI9CF5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbU +RWpGqOt1glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaHFoI6 +M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2pSB7+R5KBWIBpih1 +YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MDxvbxrN8y8NmBGuScvfaAFPDRLLmF +9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QGtjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcK +zBIKinmwPQN/aUv0NCB9szTqjktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvG +nrDQWzilm1DefhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg +OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZd0jQ +-----END CERTIFICATE----- + +Global Chambersign Root - 2008 +============================== +-----BEGIN CERTIFICATE----- +MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYDVQQGEwJFVTFD +MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv +bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu +QS4xJzAlBgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMx +NDBaFw0zODA3MzExMjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUg +Y3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJ +QTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD +aGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDf +VtPkOpt2RbQT2//BthmLN0EYlVJH6xedKYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXf +XjaOcNFccUMd2drvXNL7G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0 +ZJJ0YPP2zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4ddPB +/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyGHoiMvvKRhI9lNNgA +TH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2Id3UwD2ln58fQ1DJu7xsepeY7s2M +H/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3VyJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfe +Ox2YItaswTXbo6Al/3K1dh3ebeksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSF +HTynyQbehP9r6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh +wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsogzCtLkykPAgMB +AAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQWBBS5CcqcHtvTbDprru1U8VuT +BjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDprru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UE +BhMCRVUxQzBBBgNVBAcTOk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJm +aXJtYS5jb20vYWRkcmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJm +aXJtYSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiCCQDJzdPp +1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0 +dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAICIf3DekijZBZRG +/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZUohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6 +ReAJ3spED8IXDneRRXozX1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/s +dZ7LoR/xfxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVza2Mg +9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yydYhz2rXzdpjEetrHH +foUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMdSqlapskD7+3056huirRXhOukP9Du +qqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9OAP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETr +P3iZ8ntxPjzxmKfFGBI/5rsoM0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVq +c5iJWzouE4gev8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z +09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B +-----END CERTIFICATE----- + +Go Daddy Root Certificate Authority - G2 +======================================== +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT +B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMu +MTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8G +A1UEAxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKDE6bFIEMBO4Tx5oVJnyfq +9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD ++qK+ihVqf94Lw7YZFAXK6sOoBJQ7RnwyDfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutd +fMh8+7ArU6SSYmlRJQVhGkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMl +NAJWJwGRtDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9 +BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmXWWcDYfF+OwYxdS2hII5PZYe096ac +vNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r +5N9ss4UXnT3ZJE95kTXWXwTrgIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYV +N8Gb5DKj7Tjo2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI4uJEvlz36hz1 +-----END CERTIFICATE----- + +Starfield Root Certificate Authority - G2 +========================================= +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT +B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s +b2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVsZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0 +eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAw +DgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQg +VGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZpY2F0ZSBB +dXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3twQP89o/8ArFv +W59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMgnLRJdzIpVv257IzdIvpy3Cdhl+72WoTs +bhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNk +N3mSwOxGXn/hbVNMYq/NHwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7Nf +ZTD4p7dNdloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0HZbU +JtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0GCSqGSIb3DQEBCwUAA4IBAQARWfol +TwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjUsHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx +4mcujJUDJi5DnUox9g61DLu34jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUw +F5okxBDgBPfg8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1mMpYjn0q7pBZ +c2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +Starfield Services Root Certificate Authority - G2 +================================================== +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgT +B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s +b2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRl +IEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNV +BAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxT +dGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMg +Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC +AQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2 +h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4Pa +hHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLP +LJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFB +rMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMA0GCSqG +SIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMIbw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPP +E95Dz+I0swSdHynVv/heyNXBve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTy +xQGjhdByPq1zqwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn0q23KXB56jza +YyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCNsSi6 +-----END CERTIFICATE----- + +AffirmTrust Commercial +====================== +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UEBhMCVVMxFDAS +BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMB4XDTEw +MDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly +bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6Eqdb +DuKPHx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yrba0F8PrV +C8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPALMeIrJmqbTFeurCA+ukV6 +BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1yHp52UKqK39c/s4mT6NmgTWvRLpUHhww +MmWd5jyTXlBOeuM61G7MGvv50jeuJCqrVwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNV +HQ4EFgQUnZPGU4teyq8/nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYGXUPG +hi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNjvbz4YYCanrHOQnDi +qX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivtZ8SOyUOyXGsViQK8YvxO8rUzqrJv +0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9gN53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0kh +sUlHRUe072o0EclNmsxZt9YCnlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +AffirmTrust Networking +====================== +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UEBhMCVVMxFDAS +BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMB4XDTEw +MDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly +bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SE +Hi3yYJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbuakCNrmreI +dIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRLQESxG9fhwoXA3hA/Pe24 +/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gb +h+0t+nvujArjqWaJGctB+d1ENmHP4ndGyH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNV +HQ4EFgQUBx/S55zawm6iQLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfOtDIu +UFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzuQY0x2+c06lkh1QF6 +12S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZLgo/bNjR9eUJtGxUAArgFU2HdW23 +WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4uolu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9 +/ZFvgrG+CJPbFEfxojfHRZ48x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +AffirmTrust Premium +=================== +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UEBhMCVVMxFDAS +BgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMB4XDTEwMDEy +OTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRy +dXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A +MIICCgKCAgEAxBLfqV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtn +BKAQJG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ+jjeRFcV +5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrSs8PhaJyJ+HoAVt70VZVs ++7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmd +GPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d770O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5R +p9EixAqnOEhss/n/fauGV+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NI +S+LI+H+SqHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S5u04 +6uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4IaC1nEWTJ3s7xgaVY5 +/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TXOwF0lkLgAOIua+rF7nKsu7/+6qqo ++Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYEFJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByv +MiPIs0laUZx2KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B8OWycvpEgjNC +6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQMKSOyARiqcTtNd56l+0OOF6S +L5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK ++4w1IX2COPKpVJEZNZOUbWo6xbLQu4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmV +BtWVyuEklut89pMFu+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFg +IxpHYoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8GKa1qF60 +g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaORtGdFNrHF+QFlozEJLUb +zxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6eKeC2uAloGRwYQw== +-----END CERTIFICATE----- + +AffirmTrust Premium ECC +======================= +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMCVVMxFDASBgNV +BAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQcmVtaXVtIEVDQzAeFw0xMDAx +MjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJBgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1U +cnVzdDEgMB4GA1UEAwwXQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAQNMF4bFZ0D0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQ +N8O9ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0GA1UdDgQW +BBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAK +BggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/VsaobgxCd05DhT1wV/GzTjxi+zygk8N53X +57hG8f2h4nECMEJZh0PUUd+60wkyWs6Iflc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKM +eQ== +-----END CERTIFICATE----- + +Certum Trusted Network CA +========================= +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBMMSIwIAYDVQQK +ExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBUcnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIy +MTIwNzM3WhcNMjkxMjMxMTIwNzM3WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBU +ZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MSIwIAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC +AQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rHUV+rpDKmYYe2bg+G0jAC +l/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LMTXPb865Px1bVWqeWifrzq2jUI4ZZJ88J +J7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVUBBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4 +fOQtf/WsX+sWn7Et0brMkUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0 +cvW0QM8xAcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNVHRMB +Af8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNVHQ8BAf8EBAMCAQYw +DQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15ysHhE49wcrwn9I0j6vSrEuVUEtRCj +jSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfLI9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1 +mS1FhIrlQgnXdAIv94nYmem8J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5aj +Zt3hrvJBW8qYVoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +Certinomis - Autorité Racine +============================= +-----BEGIN CERTIFICATE----- +MIIFnDCCA4SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJGUjETMBEGA1UEChMK +Q2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxJjAkBgNVBAMMHUNlcnRpbm9taXMg +LSBBdXRvcml0w6kgUmFjaW5lMB4XDTA4MDkxNzA4Mjg1OVoXDTI4MDkxNzA4Mjg1OVowYzELMAkG +A1UEBhMCRlIxEzARBgNVBAoTCkNlcnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMSYw +JAYDVQQDDB1DZXJ0aW5vbWlzIC0gQXV0b3JpdMOpIFJhY2luZTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAJ2Fn4bT46/HsmtuM+Cet0I0VZ35gb5j2CN2DpdUzZlMGvE5x4jYF1AMnmHa +wE5V3udauHpOd4cN5bjr+p5eex7Ezyh0x5P1FMYiKAT5kcOrJ3NqDi5N8y4oH3DfVS9O7cdxbwly +Lu3VMpfQ8Vh30WC8Tl7bmoT2R2FFK/ZQpn9qcSdIhDWerP5pqZ56XjUl+rSnSTV3lqc2W+HN3yNw +2F1MpQiD8aYkOBOo7C+ooWfHpi2GR+6K/OybDnT0K0kCe5B1jPyZOQE51kqJ5Z52qz6WKDgmi92N +jMD2AR5vpTESOH2VwnHu7XSu5DaiQ3XV8QCb4uTXzEIDS3h65X27uK4uIJPT5GHfceF2Z5c/tt9q +c1pkIuVC28+BA5PY9OMQ4HL2AHCs8MF6DwV/zzRpRbWT5BnbUhYjBYkOjUjkJW+zeL9i9Qf6lSTC +lrLooyPCXQP8w9PlfMl1I9f09bze5N/NgL+RiH2nE7Q5uiy6vdFrzPOlKO1Enn1So2+WLhl+HPNb +xxaOu2B9d2ZHVIIAEWBsMsGoOBvrbpgT1u449fCfDu/+MYHB0iSVL1N6aaLwD4ZFjliCK0wi1F6g +530mJ0jfJUaNSih8hp75mxpZuWW/Bd22Ql095gBIgl4g9xGC3srYn+Y3RyYe63j3YcNBZFgCQfna +4NH4+ej9Uji29YnfAgMBAAGjWzBZMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBQNjLZh2kS40RR9w759XkjwzspqsDAXBgNVHSAEEDAOMAwGCiqBegFWAgIAAQEwDQYJ +KoZIhvcNAQEFBQADggIBACQ+YAZ+He86PtvqrxyaLAEL9MW12Ukx9F1BjYkMTv9sov3/4gbIOZ/x +WqndIlgVqIrTseYyCYIDbNc/CMf4uboAbbnW/FIyXaR/pDGUu7ZMOH8oMDX/nyNTt7buFHAAQCva +R6s0fl6nVjBhK4tDrP22iCj1a7Y+YEq6QpA0Z43q619FVDsXrIvkxmUP7tCMXWY5zjKn2BCXwH40 +nJ+U8/aGH88bc62UeYdocMMzpXDn2NU4lG9jeeu/Cg4I58UvD0KgKxRA/yHgBcUn4YQRE7rWhh1B +CxMjidPJC+iKunqjo3M3NYB9Ergzd0A4wPpeMNLytqOx1qKVl4GbUu1pTP+A5FPbVFsDbVRfsbjv +JL1vnxHDx2TCDyhihWZeGnuyt++uNckZM6i4J9szVb9o4XVIRFb7zdNIu0eJOqxp9YDG5ERQL1TE +qkPFMTFYvZbF6nVsmnWxTfj3l/+WFvKXTej28xH5On2KOG4Ey+HTRRWqpdEdnV1j6CTmNhTih60b +WfVEm/vXd3wfAXBioSAaosUaKPQhA+4u2cGA6rnZgtZbdsLLO7XSAPCjDuGtbkD326C00EauFddE +wk01+dIL8hf2rGbVJLJP0RyZwG71fet0BLj5TXcJ17TPBzAJ8bgAVtkXFhYKK4bfjwEZGuW7gmP/ +vgt2Fl43N+bYdJeimUV5 +-----END CERTIFICATE----- + +Root CA Generalitat Valenciana +============================== +-----BEGIN CERTIFICATE----- +MIIGizCCBXOgAwIBAgIEO0XlaDANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJFUzEfMB0GA1UE +ChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290 +IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwHhcNMDEwNzA2MTYyMjQ3WhcNMjEwNzAxMTUyMjQ3 +WjBoMQswCQYDVQQGEwJFUzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UE +CxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGKqtXETcvIorKA3Qdyu0togu8M1JAJke+WmmmO3I2 +F0zo37i7L3bhQEZ0ZQKQUgi0/6iMweDHiVYQOTPvaLRfX9ptI6GJXiKjSgbwJ/BXufjpTjJ3Cj9B +ZPPrZe52/lSqfR0grvPXdMIKX/UIKFIIzFVd0g/bmoGlu6GzwZTNVOAydTGRGmKy3nXiz0+J2ZGQ +D0EbtFpKd71ng+CT516nDOeB0/RSrFOyA8dEJvt55cs0YFAQexvba9dHq198aMpunUEDEO5rmXte +JajCq+TA81yc477OMUxkHl6AovWDfgzWyoxVjr7gvkkHD6MkQXpYHYTqWBLI4bft75PelAgxAgMB +AAGjggM7MIIDNzAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnBraS5n +dmEuZXMwEgYDVR0TAQH/BAgwBgEB/wIBAjCCAjQGA1UdIASCAiswggInMIICIwYKKwYBBAG/VQIB +ADCCAhMwggHoBggrBgEFBQcCAjCCAdoeggHWAEEAdQB0AG8AcgBpAGQAYQBkACAAZABlACAAQwBl +AHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAFIAYQDtAHoAIABkAGUAIABsAGEAIABHAGUAbgBlAHIA +YQBsAGkAdABhAHQAIABWAGEAbABlAG4AYwBpAGEAbgBhAC4ADQAKAEwAYQAgAEQAZQBjAGwAYQBy +AGEAYwBpAPMAbgAgAGQAZQAgAFAAcgDhAGMAdABpAGMAYQBzACAAZABlACAAQwBlAHIAdABpAGYA +aQBjAGEAYwBpAPMAbgAgAHEAdQBlACAAcgBpAGcAZQAgAGUAbAAgAGYAdQBuAGMAaQBvAG4AYQBt +AGkAZQBuAHQAbwAgAGQAZQAgAGwAYQAgAHAAcgBlAHMAZQBuAHQAZQAgAEEAdQB0AG8AcgBpAGQA +YQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAHMAZQAgAGUAbgBjAHUAZQBu +AHQAcgBhACAAZQBuACAAbABhACAAZABpAHIAZQBjAGMAaQDzAG4AIAB3AGUAYgAgAGgAdAB0AHAA +OgAvAC8AdwB3AHcALgBwAGsAaQAuAGcAdgBhAC4AZQBzAC8AYwBwAHMwJQYIKwYBBQUHAgEWGWh0 +dHA6Ly93d3cucGtpLmd2YS5lcy9jcHMwHQYDVR0OBBYEFHs100DSHHgZZu90ECjcPk+yeAT8MIGV +BgNVHSMEgY0wgYqAFHs100DSHHgZZu90ECjcPk+yeAT8oWykajBoMQswCQYDVQQGEwJFUzEfMB0G +A1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5S +b290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmGCBDtF5WgwDQYJKoZIhvcNAQEFBQADggEBACRh +TvW1yEICKrNcda3FbcrnlD+laJWIwVTAEGmiEi8YPyVQqHxK6sYJ2fR1xkDar1CdPaUWu20xxsdz +Ckj+IHLtb8zog2EWRpABlUt9jppSCS/2bxzkoXHPjCpaF3ODR00PNvsETUlR4hTJZGH71BTg9J63 +NI8KJr2XXPR5OkowGcytT6CYirQxlyric21+eLj4iIlPsSKRZEv1UN4D2+XFducTZnV+ZfsBn5OH +iJ35Rld8TWCvmHMTI6QgkYH60GFmuH3Rr9ZvHmw96RH9qfmCIoaZM3Fa6hlXPZHNqcCjbgcTpsnt ++GijnsNacgmHKNHEc8RzGF9QdRYxn7fofMM= +-----END CERTIFICATE----- + +TWCA Root Certification Authority +================================= +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJ +VEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMzWhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQG +EwJUVzESMBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NB +IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFEAcK0HMMx +QhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HHK3XLfJ+utdGdIzdjp9xC +oi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeXRfwZVzsrb+RH9JlF/h3x+JejiB03HFyP +4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/zrX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1r +y+UPizgN7gr8/g+YnzAx3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIB +BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkqhkiG +9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeCMErJk/9q56YAf4lC +mtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdlsXebQ79NqZp4VKIV66IIArB6nCWlW +QtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62Dlhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVY +T0bf+215WfKEIlKuD8z7fDvnaspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocny +Yh0igzyXxfkZYiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +Security Communication RootCA2 +============================== +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc +U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMeU2VjdXJpdHkgQ29tbXVuaWNh +dGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoXDTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMC +SlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3Vy +aXR5IENvbW11bmljYXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +ANAVOVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGrzbl+dp++ ++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVMVAX3NuRFg3sUZdbcDE3R +3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQhNBqyjoGADdH5H5XTz+L62e4iKrFvlNV +spHEfbmwhRkGeC7bYRr6hfVKkaHnFtWOojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1K +EOtOghY6rCcMU/Gt1SSwawNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8 +QIH4D5csOPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEB +CwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpFcoJxDjrSzG+ntKEj +u/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXcokgfGT+Ok+vx+hfuzU7jBBJV1uXk +3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6q +tnRGEmyR7jTV7JqR50S+kDFy1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29 +mvVXIwAHIRc/SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +EC-ACC +====== +-----BEGIN CERTIFICATE----- +MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB8zELMAkGA1UE +BhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0w +ODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYD +VQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UE +CxMsSmVyYXJxdWlhIEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMT +BkVDLUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQGEwJFUzE7 +MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYt +SSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZl +Z2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJh +cnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUND +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R85iK +w5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm4CgPukLjbo73FCeT +ae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaVHMf5NLWUhdWZXqBIoH7nF2W4onW4 +HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNdQlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0a +E9jD2z3Il3rucO2n5nzbcc8tlGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw +0JDnJwIDAQABo4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4opvpXY0wfwYD +VR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBodHRwczovL3d3dy5jYXRjZXJ0 +Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5l +dC92ZXJhcnJlbCAwDQYJKoZIhvcNAQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJ +lF7W2u++AVtd0x7Y/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNa +Al6kSBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhyRp/7SNVe +l+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOSAgu+TGbrIP65y7WZf+a2 +E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xlnJ2lYJU6Un/10asIbvPuW/mIPX64b24D +5EI= +-----END CERTIFICATE----- + +Hellenic Academic and Research Institutions RootCA 2011 +======================================================= +-----BEGIN CERTIFICATE----- +MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1IxRDBCBgNVBAoT +O0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9y +aXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z +IFJvb3RDQSAyMDExMB4XDTExMTIwNjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYT +AkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z +IENlcnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNo +IEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +AKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPzdYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI +1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJfel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa +71HFK9+WXesyHgLacEnsbgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u +8yBRQlqD75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSPFEDH +3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNVHRMBAf8EBTADAQH/ +MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp5dgTBCPuQSUwRwYDVR0eBEAwPqA8 +MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQub3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQu +b3JnMA0GCSqGSIb3DQEBBQUAA4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVt +XdMiKahsog2p6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 +TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7dIsXRSZMFpGD +/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8AcysNnq/onN694/BtZqhFLKPM58N +7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXIl7WdmplNsDz4SgCbZN2fOUvRJ9e4 +-----END CERTIFICATE----- + +Actalis Authentication Root CA +============================== +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UEBhMCSVQxDjAM +BgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UE +AwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDky +MjExMjIwMlowazELMAkGA1UEBhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlz +IFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNvUTufClrJ +wkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX4ay8IMKx4INRimlNAJZa +by/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9KK3giq0itFZljoZUj5NDKd45RnijMCO6 +zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1f +YVEiVRvjRuPjPdA1YprbrxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2 +oxgkg4YQ51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2Fbe8l +EfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxeKF+w6D9Fz8+vm2/7 +hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4Fv6MGn8i1zeQf1xcGDXqVdFUNaBr8 +EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbnfpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5 +jF66CyCU3nuDuP/jVo23Eek7jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLY +iDrIn3hm7YnzezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQALe3KHwGCmSUyI +WOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70jsNjLiNmsGe+b7bAEzlgqqI0 +JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDzWochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKx +K3JCaKygvU5a2hi/a5iB0P2avl4VSM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+ +Xlff1ANATIGk0k9jpwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC +4yyXX04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+OkfcvHlXHo +2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7RK4X9p2jIugErsWx0Hbhz +lefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btUZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXem +OR/qnuOf0GZvBeyqdn6/axag67XH/JJULysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9 +vwGYT7JZVEc+NHt4bVaTLnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +Trustis FPS Root CA +=================== +-----BEGIN CERTIFICATE----- +MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQG +EwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQLExNUcnVzdGlzIEZQUyBSb290 +IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTExMzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNV +BAoTD1RydXN0aXMgTGltaXRlZDEcMBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQ +RUN+AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihHiTHcDnlk +H5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjjvSkCqPoc4Vu5g6hBSLwa +cY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zt +o3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlBOrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEA +AaNTMFEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAd +BgNVHQ4EFgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01GX2c +GE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmWzaD+vkAMXBJV+JOC +yinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP41BIy+Q7DsdwyhEQsb8tGD+pmQQ9P +8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZEf1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHV +l/9D7S3B2l0pKoU/rGXuhg8FjZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYl +iB6XzCGcKQENZetX2fNXlrtIzYE= +-----END CERTIFICATE----- + +StartCom Certification Authority +================================ +-----BEGIN CERTIFICATE----- +MIIHhzCCBW+gAwIBAgIBLTANBgkqhkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN +U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu +ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0 +NjM3WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk +LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg +U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y +o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/ +Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d +eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt +2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z +6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ +osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/ +untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc +UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT +37uMdBNSSwIDAQABo4ICEDCCAgwwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFE4L7xqkQFulF2mHMMo0aEPQQa7yMB8GA1UdIwQYMBaAFE4L7xqkQFulF2mHMMo0aEPQ +Qa7yMIIBWgYDVR0gBIIBUTCCAU0wggFJBgsrBgEEAYG1NwEBATCCATgwLgYIKwYBBQUHAgEWImh0 +dHA6Ly93d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93d3cu +c3RhcnRzc2wuY29tL2ludGVybWVkaWF0ZS5wZGYwgc8GCCsGAQUFBwICMIHCMCcWIFN0YXJ0IENv +bW1lcmNpYWwgKFN0YXJ0Q29tKSBMdGQuMAMCAQEagZZMaW1pdGVkIExpYWJpbGl0eSwgcmVhZCB0 +aGUgc2VjdGlvbiAqTGVnYWwgTGltaXRhdGlvbnMqIG9mIHRoZSBTdGFydENvbSBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBQb2xpY3kgYXZhaWxhYmxlIGF0IGh0dHA6Ly93d3cuc3RhcnRzc2wuY29t +L3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilTdGFydENvbSBG +cmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQsFAAOCAgEAjo/n3JR5 +fPGFf59Jb2vKXfuM/gTFwWLRfUKKvFO3lANmMD+x5wqnUCBVJX92ehQN6wQOQOY+2IirByeDqXWm +N3PH/UvSTa0XQMhGvjt/UfzDtgUx3M2FIk5xt/JxXrAaxrqTi3iSSoX4eA+D/i+tLPfkpLst0OcN +Org+zvZ49q5HJMqjNTbOx8aHmNrs++myziebiMMEofYLWWivydsQD032ZGNcpRJvkrKTlMeIFw6T +tn5ii5B/q06f/ON1FE8qMt9bDeD1e5MNq6HPh+GlBEXoPBKlCcWw0bdT82AUuoVpaiF8H3VhFyAX +e2w7QSlc4axa0c2Mm+tgHRns9+Ww2vl5GKVFP0lDV9LdJNUso/2RjSe15esUBppMeyG7Oq0wBhjA +2MFrLH9ZXF2RsXAiV+uKa0hK1Q8p7MZAwC+ITGgBF3f0JBlPvfrhsiAhS90a2Cl9qrjeVOwhVYBs +HvUwyKMQ5bLmKhQxw4UtjJixhlpPiVktucf3HMiKf8CdBUrmQk9io20ppB+Fq9vlgcitKj1MXVuE +JnHEhV5xJMqlG2zYYdMa4FTbzrqpMrUi9nNBCV24F10OD5mQ1kfabwo6YigUZ4LZ8dCAWZvLMdib +D4x3TrVoivJs9iQOLWxwxXPR3hTQcY+203sC9uO41Alua551hDnmfyWl8kgAwKQB2j8= +-----END CERTIFICATE----- + +StartCom Certification Authority G2 +=================================== +-----BEGIN CERTIFICATE----- +MIIFYzCCA0ugAwIBAgIBOzANBgkqhkiG9w0BAQsFADBTMQswCQYDVQQGEwJJTDEWMBQGA1UEChMN +U3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg +RzIwHhcNMTAwMTAxMDEwMDAxWhcNMzkxMjMxMjM1OTAxWjBTMQswCQYDVQQGEwJJTDEWMBQGA1UE +ChMNU3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3Jp +dHkgRzIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2iTZbB7cgNr2Cu+EWIAOVeq8O +o1XJJZlKxdBWQYeQTSFgpBSHO839sj60ZwNq7eEPS8CRhXBF4EKe3ikj1AENoBB5uNsDvfOpL9HG +4A/LnooUCri99lZi8cVytjIl2bLzvWXFDSxu1ZJvGIsAQRSCb0AgJnooD/Uefyf3lLE3PbfHkffi +Aez9lInhzG7TNtYKGXmu1zSCZf98Qru23QumNK9LYP5/Q0kGi4xDuFby2X8hQxfqp0iVAXV16iul +Q5XqFYSdCI0mblWbq9zSOdIxHWDirMxWRST1HFSr7obdljKF+ExP6JV2tgXdNiNnvP8V4so75qbs +O+wmETRIjfaAKxojAuuKHDp2KntWFhxyKrOq42ClAJ8Em+JvHhRYW6Vsi1g8w7pOOlz34ZYrPu8H +vKTlXcxNnw3h3Kq74W4a7I/htkxNeXJdFzULHdfBR9qWJODQcqhaX2YtENwvKhOuJv4KHBnM0D4L +nMgJLvlblnpHnOl68wVQdJVznjAJ85eCXuaPOQgeWeU1FEIT/wCc976qUM/iUUjXuG+v+E5+M5iS +FGI6dWPPe/regjupuznixL0sAA7IF6wT700ljtizkC+p2il9Ha90OrInwMEePnWjFqmveiJdnxMa +z6eg6+OGCtP95paV1yPIN93EfKo2rJgaErHgTuixO/XWb/Ew1wIDAQABo0IwQDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUS8W0QGutHLOlHGVuRjaJhwUMDrYwDQYJ +KoZIhvcNAQELBQADggIBAHNXPyzVlTJ+N9uWkusZXn5T50HsEbZH77Xe7XRcxfGOSeD8bpkTzZ+K +2s06Ctg6Wgk/XzTQLwPSZh0avZyQN8gMjgdalEVGKua+etqhqaRpEpKwfTbURIfXUfEpY9Z1zRbk +J4kd+MIySP3bmdCPX1R0zKxnNBFi2QwKN4fRoxdIjtIXHfbX/dtl6/2o1PXWT6RbdejF0mCy2wl+ +JYt7ulKSnj7oxXehPOBKc2thz4bcQ///If4jXSRK9dNtD2IEBVeC2m6kMyV5Sy5UGYvMLD0w6dEG +/+gyRr61M3Z3qAFdlsHB1b6uJcDJHgoJIIihDsnzb02CVAAgp9KP5DlUFy6NHrgbuxu9mk47EDTc +nIhT76IxW1hPkWLIwpqazRVdOKnWvvgTtZ8SafJQYqz7Fzf07rh1Z2AQ+4NQ+US1dZxAF7L+/Xld +blhYXzD8AK6vM8EOTmy6p6ahfzLbOOCxchcKK5HsamMm7YnUeMx0HgX4a/6ManY5Ka5lIxKVCCIc +l85bBu4M4ru8H0ST9tg4RQUh7eStqxK2A6RCLi3ECToDZ2mEmuFZkIoohdVddLHRDiBYmxOlsGOm +7XtH/UVVMKTumtTm4ofvmMkyghEpIrwACjFeLQ/Ajulrso8uBtjRkcfGEvRM/TAXw8HaOFvjqerm +obp573PYtlNXLfbQ4ddI +-----END CERTIFICATE----- + +Buypass Class 2 Root CA +======================= +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU +QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMiBSb290IENBMB4X +DTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1owTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1 +eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIw +DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1 +g1Lr6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPVL4O2fuPn +9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC911K2GScuVr1QGbNgGE41b +/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHxMlAQTn/0hpPshNOOvEu/XAFOBz3cFIqU +CqTqc/sLUegTBxj6DvEr0VQVfTzh97QZQmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeff +awrbD02TTqigzXsu8lkBarcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgI +zRFo1clrUs3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLiFRhn +Bkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRSP/TizPJhk9H9Z2vX +Uq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN9SG9dKpN6nIDSdvHXx1iY8f93ZHs +M+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxPAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD +VR0OBBYEFMmAd+BikoL1RpzzuvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF +AAOCAgEAU18h9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3tOluwlN5E40EI +osHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo+fsicdl9sz1Gv7SEr5AcD48S +aq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYd +DnkM/crqJIByw5c/8nerQyIKx+u2DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWD +LfJ6v9r9jv6ly0UsH8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0 +oyLQI+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK75t98biGC +wWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h3PFaTWwyI0PurKju7koS +CTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPzY11aWOIv4x3kqdbQCtCev9eBCfHJxyYN +rJgWVqA= +-----END CERTIFICATE----- + +Buypass Class 3 Root CA +======================= +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU +QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMyBSb290IENBMB4X +DTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFowTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1 +eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIw +DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRH +sJ8YZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3EN3coTRiR +5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9tznDDgFHmV0ST9tD+leh +7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX0DJq1l1sDPGzbjniazEuOQAnFN44wOwZ +ZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH +2xc519woe2v1n/MuwU8XKhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV +/afmiSTYzIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvSO1UQ +RwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D34xFMFbG02SrZvPA +Xpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgPK9Dx2hzLabjKSWJtyNBjYt1gD1iq +j6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD +VR0OBBYEFEe4zf/lb+74suwvTg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF +AAOCAgEAACAjQTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXSIGrs/CIBKM+G +uIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2HJLw5QY33KbmkJs4j1xrG0aG +Q0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsaO5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8 +ZORK15FTAaggiG6cX0S5y2CBNOxv033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2 +KSb12tjE8nVhz36udmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz +6MkEkbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg413OEMXbug +UZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvDu79leNKGef9JOxqDDPDe +eOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq4/g7u9xN12TyUb7mqqta6THuBrxzvxNi +Cp/HuZc= +-----END CERTIFICATE----- + +T-TeleSec GlobalRoot Class 3 +============================ +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM +IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU +cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgx +MDAxMTAyOTU2WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz +dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD +ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN8ELg63iIVl6bmlQdTQyK +9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/RLyTPWGrTs0NvvAgJ1gORH8EGoel15YU +NpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZF +iP0Zf3WHHx+xGwpzJFu5ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W +0eDrXltMEnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGjQjBA +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1A/d2O2GCahKqGFPr +AyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOyWL6ukK2YJ5f+AbGwUgC4TeQbIXQb +fsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzT +ucpH9sry9uetuUg/vBa3wW306gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7h +P0HHRwA11fXT91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4pTpPDpFQUWw== +-----END CERTIFICATE----- + +EE Certification Centre Root CA +=============================== +-----BEGIN CERTIFICATE----- +MIIEAzCCAuugAwIBAgIQVID5oHPtPwBMyonY43HmSjANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQG +EwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2Vy +dGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMCIYDzIw +MTAxMDMwMTAxMDMwWhgPMjAzMDEyMTcyMzU5NTlaMHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlB +UyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRy +ZSBSb290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEBAQUAA4IB +DwAwggEKAoIBAQDIIMDs4MVLqwd4lfNE7vsLDP90jmG7sWLqI9iroWUyeuuOF0+W2Ap7kaJjbMeM +TC55v6kF/GlclY1i+blw7cNRfdCT5mzrMEvhvH2/UpvObntl8jixwKIy72KyaOBhU8E2lf/slLo2 +rpwcpzIP5Xy0xm90/XsY6KxX7QYgSzIwWFv9zajmofxwvI6Sc9uXp3whrj3B9UiHbCe9nyV0gVWw +93X2PaRka9ZP585ArQ/dMtO8ihJTmMmJ+xAdTX7Nfh9WDSFwhfYggx/2uh8Ej+p3iDXE/+pOoYtN +P2MbRMNE1CV2yreN1x5KZmTNXMWcg+HCCIia7E6j8T4cLNlsHaFLAgMBAAGjgYowgYcwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBLyWj7qVhy/zQas8fElyalL1BSZ +MEUGA1UdJQQ+MDwGCCsGAQUFBwMCBggrBgEFBQcDAQYIKwYBBQUHAwMGCCsGAQUFBwMEBggrBgEF +BQcDCAYIKwYBBQUHAwkwDQYJKoZIhvcNAQEFBQADggEBAHv25MANqhlHt01Xo/6tu7Fq1Q+e2+Rj +xY6hUFaTlrg4wCQiZrxTFGGVv9DHKpY5P30osxBAIWrEr7BSdxjhlthWXePdNl4dp1BUoMUq5KqM +lIpPnTX/dqQGE5Gion0ARD9V04I8GtVbvFZMIi5GQ4okQC3zErg7cBqklrkar4dBGmoYDQZPxz5u +uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIWiAYLtqZLICjU +3j2LrTcFU3T+bsy8QxdxXvnFzBqpYe73dgzzcvRyrc9yAjYHR8/vGVCJYMzpJJUPwssd8m92kMfM +dcGWxZ0= +-----END CERTIFICATE----- + +TURKTRUST Certificate Services Provider Root 2007 +================================================= +-----BEGIN CERTIFICATE----- +MIIEPTCCAyWgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvzE/MD0GA1UEAww2VMOcUktUUlVTVCBF +bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEP +MA0GA1UEBwwGQW5rYXJhMV4wXAYDVQQKDFVUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUg +QmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgQXJhbMSxayAyMDA3MB4X +DTA3MTIyNTE4MzcxOVoXDTE3MTIyMjE4MzcxOVowgb8xPzA9BgNVBAMMNlTDnFJLVFJVU1QgRWxl +a3Ryb25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTELMAkGA1UEBhMCVFIxDzAN +BgNVBAcMBkFua2FyYTFeMFwGA1UECgxVVMOcUktUUlVTVCBCaWxnaSDEsGxldGnFn2ltIHZlIEJp +bGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7Fni4gKGMpIEFyYWzEsWsgMjAwNzCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKu3PgqMyKVYFeaK7yc9SrToJdPNM8Ig3BnuiD9N +YvDdE3ePYakqtdTyuTFYKTsvP2qcb3N2Je40IIDu6rfwxArNK4aUyeNgsURSsloptJGXg9i3phQv +KUmi8wUG+7RP2qFsmmaf8EMJyupyj+sA1zU511YXRxcw9L6/P8JorzZAwan0qafoEGsIiveGHtya +KhUG9qPw9ODHFNRRf8+0222vR5YXm3dx2KdxnSQM9pQ/hTEST7ruToK4uT6PIzdezKKqdfcYbwnT +rqdUKDT74eA7YH2gvnmJhsifLfkKS8RQouf9eRbHegsYz85M733WB2+Y8a+xwXrXgTW4qhe04MsC +AwEAAaNCMEAwHQYDVR0OBBYEFCnFkKslrxHkYb+j/4hhkeYO/pyBMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQAQDdr4Ouwo0RSVgrESLFF6QSU2TJ/s +Px+EnWVUXKgWAkD6bho3hO9ynYYKVZ1WKKxmLNA6VpM0ByWtCLCPyA8JWcqdmBzlVPi5RX9ql2+I +aE1KBiY3iAIOtsbWcpnOa3faYjGkVh+uX4132l32iPwa2Z61gfAyuOOI0JzzaqC5mxRZNTZPz/OO +Xl0XrRWV2N2y1RVuAE6zS89mlOTgzbUF2mNXi+WzqtvALhyQRNsaXRik7r4EW5nVcV9VZWRi1aKb +BFmGyGJ353yCRWo9F7/snXUMrqNvWtMvmDb08PUZqxFdyKbjKlhqQgnDvZImZjINXQhVdP+MmNAK +poRq0Tl9 +-----END CERTIFICATE----- + +D-TRUST Root Class 3 CA 2 2009 +============================== +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQK +DAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTAe +Fw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NThaME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxE +LVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOAD +ER03UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42tSHKXzlA +BF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9RySPocq60vFYJfxLLHLGv +KZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsMlFqVlNpQmvH/pStmMaTJOKDfHR+4CS7z +p+hnUquVH+BGPtikw8paxTGA6Eian5Rp/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUC +AwEAAaOCARowggEWMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ +4PGEMA4GA1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVjdG9y +eS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUyMENBJTIwMiUyMDIw +MDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRlcmV2b2NhdGlvbmxpc3QwQ6BBoD+G +PWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAw +OS5jcmwwDQYJKoZIhvcNAQELBQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm +2H6NMLVwMeniacfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4KzCUqNQT4YJEV +dT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8PIWmawomDeCTmGCufsYkl4ph +X5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3YJohw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- + +D-TRUST Root Class 3 CA 2 EV 2009 +================================= +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK +DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw +OTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUwNDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK +DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw +OTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfS +egpnljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM03TP1YtHh +zRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6ZqQTMFexgaDbtCHu39b+T +7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lRp75mpoo6Kr3HGrHhFPC+Oh25z1uxav60 +sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure35 +11H3a6UCAwEAAaOCASQwggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyv +cop9NteaHNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFwOi8v +ZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xhc3MlMjAzJTIwQ0El +MjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1ERT9jZXJ0aWZpY2F0ZXJldm9jYXRp +b25saXN0MEagRKBChkBodHRwOi8vd3d3LmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xh +c3NfM19jYV8yX2V2XzIwMDkuY3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+ +PPoeUSbrh/Yp3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNFCSuGdXzfX2lX +ANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7naxpeG0ILD5EJt/rDiZE4OJudA +NCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqXKVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVv +w9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- + +PSCProcert +========== +-----BEGIN CERTIFICATE----- +MIIJhjCCB26gAwIBAgIBCzANBgkqhkiG9w0BAQsFADCCAR4xPjA8BgNVBAMTNUF1dG9yaWRhZCBk +ZSBDZXJ0aWZpY2FjaW9uIFJhaXogZGVsIEVzdGFkbyBWZW5lem9sYW5vMQswCQYDVQQGEwJWRTEQ +MA4GA1UEBxMHQ2FyYWNhczEZMBcGA1UECBMQRGlzdHJpdG8gQ2FwaXRhbDE2MDQGA1UEChMtU2lz +dGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMUMwQQYDVQQLEzpTdXBl +cmludGVuZGVuY2lhIGRlIFNlcnZpY2lvcyBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMSUw +IwYJKoZIhvcNAQkBFhZhY3JhaXpAc3VzY2VydGUuZ29iLnZlMB4XDTEwMTIyODE2NTEwMFoXDTIw +MTIyNTIzNTk1OVowgdExJjAkBgkqhkiG9w0BCQEWF2NvbnRhY3RvQHByb2NlcnQubmV0LnZlMQ8w +DQYDVQQHEwZDaGFjYW8xEDAOBgNVBAgTB01pcmFuZGExKjAoBgNVBAsTIVByb3ZlZWRvciBkZSBD +ZXJ0aWZpY2Fkb3MgUFJPQ0VSVDE2MDQGA1UEChMtU2lzdGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZp +Y2FjaW9uIEVsZWN0cm9uaWNhMQswCQYDVQQGEwJWRTETMBEGA1UEAxMKUFNDUHJvY2VydDCCAiIw +DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANW39KOUM6FGqVVhSQ2oh3NekS1wwQYalNo97BVC +wfWMrmoX8Yqt/ICV6oNEolt6Vc5Pp6XVurgfoCfAUFM+jbnADrgV3NZs+J74BCXfgI8Qhd19L3uA +3VcAZCP4bsm+lU/hdezgfl6VzbHvvnpC2Mks0+saGiKLt38GieU89RLAu9MLmV+QfI4tL3czkkoh +RqipCKzx9hEC2ZUWno0vluYC3XXCFCpa1sl9JcLB/KpnheLsvtF8PPqv1W7/U0HU9TI4seJfxPmO +EO8GqQKJ/+MMbpfg353bIdD0PghpbNjU5Db4g7ayNo+c7zo3Fn2/omnXO1ty0K+qP1xmk6wKImG2 +0qCZyFSTXai20b1dCl53lKItwIKOvMoDKjSuc/HUtQy9vmebVOvh+qBa7Dh+PsHMosdEMXXqP+UH +0quhJZb25uSgXTcYOWEAM11G1ADEtMo88aKjPvM6/2kwLkDd9p+cJsmWN63nOaK/6mnbVSKVUyqU +td+tFjiBdWbjxywbk5yqjKPK2Ww8F22c3HxT4CAnQzb5EuE8XL1mv6JpIzi4mWCZDlZTOpx+FIyw +Bm/xhnaQr/2v/pDGj59/i5IjnOcVdo/Vi5QTcmn7K2FjiO/mpF7moxdqWEfLcU8UC17IAggmosvp +r2uKGcfLFFb14dq12fy/czja+eevbqQ34gcnAgMBAAGjggMXMIIDEzASBgNVHRMBAf8ECDAGAQH/ +AgEBMDcGA1UdEgQwMC6CD3N1c2NlcnRlLmdvYi52ZaAbBgVghl4CAqASDBBSSUYtRy0yMDAwNDAz +Ni0wMB0GA1UdDgQWBBRBDxk4qpl/Qguk1yeYVKIXTC1RVDCCAVAGA1UdIwSCAUcwggFDgBStuyId +xuDSAaj9dlBSk+2YwU2u06GCASakggEiMIIBHjE+MDwGA1UEAxM1QXV0b3JpZGFkIGRlIENlcnRp +ZmljYWNpb24gUmFpeiBkZWwgRXN0YWRvIFZlbmV6b2xhbm8xCzAJBgNVBAYTAlZFMRAwDgYDVQQH +EwdDYXJhY2FzMRkwFwYDVQQIExBEaXN0cml0byBDYXBpdGFsMTYwNAYDVQQKEy1TaXN0ZW1hIE5h +Y2lvbmFsIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExQzBBBgNVBAsTOlN1cGVyaW50ZW5k +ZW5jaWEgZGUgU2VydmljaW9zIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExJTAjBgkqhkiG +9w0BCQEWFmFjcmFpekBzdXNjZXJ0ZS5nb2IudmWCAQowDgYDVR0PAQH/BAQDAgEGME0GA1UdEQRG +MESCDnByb2NlcnQubmV0LnZloBUGBWCGXgIBoAwMClBTQy0wMDAwMDKgGwYFYIZeAgKgEgwQUklG +LUotMzE2MzUzNzMtNzB2BgNVHR8EbzBtMEagRKBChkBodHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52 +ZS9sY3IvQ0VSVElGSUNBRE8tUkFJWi1TSEEzODRDUkxERVIuY3JsMCOgIaAfhh1sZGFwOi8vYWNy +YWl6LnN1c2NlcnRlLmdvYi52ZTA3BggrBgEFBQcBAQQrMCkwJwYIKwYBBQUHMAGGG2h0dHA6Ly9v +Y3NwLnN1c2NlcnRlLmdvYi52ZTBBBgNVHSAEOjA4MDYGBmCGXgMBAjAsMCoGCCsGAQUFBwIBFh5o +dHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52ZS9kcGMwDQYJKoZIhvcNAQELBQADggIBACtZ6yKZu4Sq +T96QxtGGcSOeSwORR3C7wJJg7ODU523G0+1ng3dS1fLld6c2suNUvtm7CpsR72H0xpkzmfWvADmN +g7+mvTV+LFwxNG9s2/NkAZiqlCxB3RWGymspThbASfzXg0gTB1GEMVKIu4YXx2sviiCtxQuPcD4q +uxtxj7mkoP3YldmvWb8lK5jpY5MvYB7Eqvh39YtsL+1+LrVPQA3uvFd359m21D+VJzog1eWuq2w1 +n8GhHVnchIHuTQfiSLaeS5UtQbHh6N5+LwUeaO6/u5BlOsju6rEYNxxik6SgMexxbJHmpHmJWhSn +FFAFTKQAVzAswbVhltw+HoSvOULP5dAssSS830DD7X9jSr3hTxJkhpXzsOfIt+FTvZLm8wyWuevo +5pLtp4EJFAv8lXrPj9Y0TzYS3F7RNHXGRoAvlQSMx4bEqCaJqD8Zm4G7UaRKhqsLEQ+xrmNTbSjq +3TNWOByyrYDT13K9mmyZY+gAu0F2BbdbmRiKw7gSXFbPVgx96OLP7bx0R/vu0xdOIk9W/1DzLuY5 +poLWccret9W6aAjtmcz9opLLabid+Qqkpj5PkygqYWwHJgD/ll9ohri4zspV4KuxPX+Y1zMOWj3Y +eMLEYC/HYvBhkdI4sPaeVdtAgAUSM84dkpvRabP/v/GSCmE1P93+hvS84Bpxs2Km +-----END CERTIFICATE----- + +China Internet Network Information Center EV Certificates Root +============================================================== +-----BEGIN CERTIFICATE----- +MIID9zCCAt+gAwIBAgIESJ8AATANBgkqhkiG9w0BAQUFADCBijELMAkGA1UEBhMCQ04xMjAwBgNV +BAoMKUNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyMUcwRQYDVQQDDD5D +aGluYSBJbnRlcm5ldCBOZXR3b3JrIEluZm9ybWF0aW9uIENlbnRlciBFViBDZXJ0aWZpY2F0ZXMg +Um9vdDAeFw0xMDA4MzEwNzExMjVaFw0zMDA4MzEwNzExMjVaMIGKMQswCQYDVQQGEwJDTjEyMDAG +A1UECgwpQ2hpbmEgSW50ZXJuZXQgTmV0d29yayBJbmZvcm1hdGlvbiBDZW50ZXIxRzBFBgNVBAMM +PkNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyIEVWIENlcnRpZmljYXRl +cyBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm35z7r07eKpkQ0H1UN+U8i6y +jUqORlTSIRLIOTJCBumD1Z9S7eVnAztUwYyZmczpwA//DdmEEbK40ctb3B75aDFk4Zv6dOtouSCV +98YPjUesWgbdYavi7NifFy2cyjw1l1VxzUOFsUcW9SxTgHbP0wBkvUCZ3czY28Sf1hNfQYOL+Q2H +klY0bBoQCxfVWhyXWIQ8hBouXJE0bhlffxdpxWXvayHG1VA6v2G5BY3vbzQ6sm8UY78WO5upKv23 +KzhmBsUs4qpnHkWnjQRmQvaPK++IIGmPMowUc9orhpFjIpryp9vOiYurXccUwVswah+xt54ugQEC +7c+WXmPbqOY4twIDAQABo2MwYTAfBgNVHSMEGDAWgBR8cks5x8DbYqVPm6oYNJKiyoOCWTAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUfHJLOcfA22KlT5uqGDSSosqD +glkwDQYJKoZIhvcNAQEFBQADggEBACrDx0M3j92tpLIM7twUbY8opJhJywyA6vPtI2Z1fcXTIWd5 +0XPFtQO3WKwMVC/GVhMPMdoG52U7HW8228gd+f2ABsqjPWYWqJ1MFn3AlUa1UeTiH9fqBk1jjZaM +7+czV0I664zBechNdn3e9rG3geCg+aF4RhcaVpjwTj2rHO3sOdwHSPdj/gauwqRcalsyiMXHM4Ws +ZkJHwlgkmeHlPuV1LI5D1l08eB6olYIpUNHRFrrvwb562bTYzB5MRuF3sTGrvSrIzo9uoV1/A3U0 +5K2JRVRevq4opbs/eHnrc7MKDf2+yfdWrPa37S+bISnHOLaVxATywy39FCqQmbkHzJ8= +-----END CERTIFICATE----- + +Swisscom Root CA 2 +================== +-----BEGIN CERTIFICATE----- +MIIF2TCCA8GgAwIBAgIQHp4o6Ejy5e/DfEoeWhhntjANBgkqhkiG9w0BAQsFADBkMQswCQYDVQQG +EwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2VydGlmaWNhdGUgU2Vy +dmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3QgQ0EgMjAeFw0xMTA2MjQwODM4MTRaFw0zMTA2 +MjUwNzM4MTRaMGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGln +aXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAyMIIC +IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlUJOhJ1R5tMJ6HJaI2nbeHCOFvErjw0DzpPM +LgAIe6szjPTpQOYXTKueuEcUMncy3SgM3hhLX3af+Dk7/E6J2HzFZ++r0rk0X2s682Q2zsKwzxNo +ysjL67XiPS4h3+os1OD5cJZM/2pYmLcX5BtS5X4HAB1f2uY+lQS3aYg5oUFgJWFLlTloYhyxCwWJ +wDaCFCE/rtuh/bxvHGCGtlOUSbkrRsVPACu/obvLP+DHVxxX6NZp+MEkUp2IVd3Chy50I9AU/SpH +Wrumnf2U5NGKpV+GY3aFy6//SSj8gO1MedK75MDvAe5QQQg1I3ArqRa0jG6F6bYRzzHdUyYb3y1a +SgJA/MTAtukxGggo5WDDH8SQjhBiYEQN7Aq+VRhxLKX0srwVYv8c474d2h5Xszx+zYIdkeNL6yxS +NLCK/RJOlrDrcH+eOfdmQrGrrFLadkBXeyq96G4DsguAhYidDMfCd7Camlf0uPoTXGiTOmekl9Ab +mbeGMktg2M7v0Ax/lZ9vh0+Hio5fCHyqW/xavqGRn1V9TrALacywlKinh/LTSlDcX3KwFnUey7QY +Ypqwpzmqm59m2I2mbJYV4+by+PGDYmy7Velhk6M99bFXi08jsJvllGov34zflVEpYKELKeRcVVi3 +qPyZ7iVNTA6z00yPhOgpD/0QVAKFyPnlw4vP5w8CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYw +HQYDVR0hBBYwFDASBgdghXQBUwIBBgdghXQBUwIBMBIGA1UdEwEB/wQIMAYBAf8CAQcwHQYDVR0O +BBYEFE0mICKJS9PVpAqhb97iEoHF8TwuMB8GA1UdIwQYMBaAFE0mICKJS9PVpAqhb97iEoHF8Twu +MA0GCSqGSIb3DQEBCwUAA4ICAQAyCrKkG8t9voJXiblqf/P0wS4RfbgZPnm3qKhyN2abGu2sEzsO +v2LwnN+ee6FTSA5BesogpxcbtnjsQJHzQq0Qw1zv/2BZf82Fo4s9SBwlAjxnffUy6S8w5X2lejjQ +82YqZh6NM4OKb3xuqFp1mrjX2lhIREeoTPpMSQpKwhI3qEAMw8jh0FcNlzKVxzqfl9NX+Ave5XLz +o9v/tdhZsnPdTSpxsrpJ9csc1fV5yJmz/MFMdOO0vSk3FQQoHt5FRnDsr7p4DooqzgB53MBfGWcs +a0vvaGgLQ+OswWIJ76bdZWGgr4RVSJFSHMYlkSrQwSIjYVmvRRGFHQEkNI/Ps/8XciATwoCqISxx +OQ7Qj1zB09GOInJGTB2Wrk9xseEFKZZZ9LuedT3PDTcNYtsmjGOpI99nBjx8Oto0QuFmtEYE3saW +mA9LSHokMnWRn6z3aOkquVVlzl1h0ydw2Df+n7mvoC5Wt6NlUe07qxS/TFED6F+KBZvuim6c779o ++sjaC+NCydAXFJy3SuCvkychVSa1ZC+N8f+mQAWFBVzKBxlcCxMoTFh/wqXvRdpg065lYZ1Tg3TC +rvJcwhbtkj6EPnNgiLx29CzP0H1907he0ZESEOnN3col49XtmS++dYFLJPlFRpTJKSFTnCZFqhMX +5OfNeOI5wSsSnqaeG8XmDtkx2Q== +-----END CERTIFICATE----- + +Swisscom Root EV CA 2 +===================== +-----BEGIN CERTIFICATE----- +MIIF4DCCA8igAwIBAgIRAPL6ZOJ0Y9ON/RAdBB92ylgwDQYJKoZIhvcNAQELBQAwZzELMAkGA1UE +BhMCY2gxETAPBgNVBAoTCFN3aXNzY29tMSUwIwYDVQQLExxEaWdpdGFsIENlcnRpZmljYXRlIFNl +cnZpY2VzMR4wHAYDVQQDExVTd2lzc2NvbSBSb290IEVWIENBIDIwHhcNMTEwNjI0MDk0NTA4WhcN +MzEwNjI1MDg0NTA4WjBnMQswCQYDVQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsT +HERpZ2l0YWwgQ2VydGlmaWNhdGUgU2VydmljZXMxHjAcBgNVBAMTFVN3aXNzY29tIFJvb3QgRVYg +Q0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMT3HS9X6lds93BdY7BxUglgRCgz +o3pOCvrY6myLURYaVa5UJsTMRQdBTxB5f3HSek4/OE6zAMaVylvNwSqD1ycfMQ4jFrclyxy0uYAy +Xhqdk/HoPGAsp15XGVhRXrwsVgu42O+LgrQ8uMIkqBPHoCE2G3pXKSinLr9xJZDzRINpUKTk4Rti +GZQJo/PDvO/0vezbE53PnUgJUmfANykRHvvSEaeFGHR55E+FFOtSN+KxRdjMDUN/rhPSays/p8Li +qG12W0OfvrSdsyaGOx9/5fLoZigWJdBLlzin5M8J0TbDC77aO0RYjb7xnglrPvMyxyuHxuxenPaH +Za0zKcQvidm5y8kDnftslFGXEBuGCxobP/YCfnvUxVFkKJ3106yDgYjTdLRZncHrYTNaRdHLOdAG +alNgHa/2+2m8atwBz735j9m9W8E6X47aD0upm50qKGsaCnw8qyIL5XctcfaCNYGu+HuB5ur+rPQa +m3Rc6I8k9l2dRsQs0h4rIWqDJ2dVSqTjyDKXZpBy2uPUZC5f46Fq9mDU5zXNysRojddxyNMkM3Ox +bPlq4SjbX8Y96L5V5jcb7STZDxmPX2MYWFCBUWVv8p9+agTnNCRxunZLWB4ZvRVgRaoMEkABnRDi +xzgHcgplwLa7JSnaFp6LNYth7eVxV4O1PHGf40+/fh6Bn0GXAgMBAAGjgYYwgYMwDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdIQQWMBQwEgYHYIV0AVMCAgYHYIV0AVMCAjASBgNVHRMBAf8ECDAGAQH/AgED +MB0GA1UdDgQWBBRF2aWBbj2ITY1x0kbBbkUe88SAnTAfBgNVHSMEGDAWgBRF2aWBbj2ITY1x0kbB +bkUe88SAnTANBgkqhkiG9w0BAQsFAAOCAgEAlDpzBp9SSzBc1P6xXCX5145v9Ydkn+0UjrgEjihL +j6p7jjm02Vj2e6E1CqGdivdj5eu9OYLU43otb98TPLr+flaYC/NUn81ETm484T4VvwYmneTwkLbU +wp4wLh/vx3rEUMfqe9pQy3omywC0Wqu1kx+AiYQElY2NfwmTv9SoqORjbdlk5LgpWgi/UOGED1V7 +XwgiG/W9mR4U9s70WBCCswo9GcG/W6uqmdjyMb3lOGbcWAXH7WMaLgqXfIeTK7KK4/HsGOV1timH +59yLGn602MnTihdsfSlEvoqq9X46Lmgxk7lq2prg2+kupYTNHAq4Sgj5nPFhJpiTt3tm7JFe3VE/ +23MPrQRYCd0EApUKPtN236YQHoA96M2kZNEzx5LH4k5E4wnJTsJdhw4Snr8PyQUQ3nqjsTzyP6Wq +J3mtMX0f/fwZacXduT98zca0wjAefm6S139hdlqP65VNvBFuIXxZN5nQBrz5Bm0yFqXZaajh3DyA +HmBR3NdUIR7KYndP+tiPsys6DXhyyWhBWkdKwqPrGtcKqzwyVcgKEZzfdNbwQBUdyLmPtTbFr/gi +uMod89a2GQ+fYWVq6nTIfI/DT11lgh/ZDYnadXL77/FHZxOzyNEZiCcmmpl5fx7kLD977vHeTYuW +l8PVP3wbI+2ksx0WckNLIOFZfsLorSa/ovc= +-----END CERTIFICATE----- + +CA Disig Root R1 +================ +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAMMDmu5QkG4oMA0GCSqGSIb3DQEBBQUAMFIxCzAJBgNVBAYTAlNLMRMw +EQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMuMRkwFwYDVQQDExBDQSBEaXNp +ZyBSb290IFIxMB4XDTEyMDcxOTA5MDY1NloXDTQyMDcxOTA5MDY1NlowUjELMAkGA1UEBhMCU0sx +EzARBgNVBAcTCkJyYXRpc2xhdmExEzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERp +c2lnIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCqw3j33Jijp1pedxiy +3QRkD2P9m5YJgNXoqqXinCaUOuiZc4yd39ffg/N4T0Dhf9Kn0uXKE5Pn7cZ3Xza1lK/oOI7bm+V8 +u8yN63Vz4STN5qctGS7Y1oprFOsIYgrY3LMATcMjfF9DCCMyEtztDK3AfQ+lekLZWnDZv6fXARz2 +m6uOt0qGeKAeVjGu74IKgEH3G8muqzIm1Cxr7X1r5OJeIgpFy4QxTaz+29FHuvlglzmxZcfe+5nk +CiKxLU3lSCZpq+Kq8/v8kiky6bM+TR8noc2OuRf7JT7JbvN32g0S9l3HuzYQ1VTW8+DiR0jm3hTa +YVKvJrT1cU/J19IG32PK/yHoWQbgCNWEFVP3Q+V8xaCJmGtzxmjOZd69fwX3se72V6FglcXM6pM6 +vpmumwKjrckWtc7dXpl4fho5frLABaTAgqWjR56M6ly2vGfb5ipN0gTco65F97yLnByn1tUD3AjL +LhbKXEAz6GfDLuemROoRRRw1ZS0eRWEkG4IupZ0zXWX4Qfkuy5Q/H6MMMSRE7cderVC6xkGbrPAX +ZcD4XW9boAo0PO7X6oifmPmvTiT6l7Jkdtqr9O3jw2Dv1fkCyC2fg69naQanMVXVz0tv/wQFx1is +XxYb5dKj6zHbHzMVTdDypVP1y+E9Tmgt2BLdqvLmTZtJ5cUoobqwWsagtQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUiQq0OJMa5qvum5EY+fU8PjXQ +04IwDQYJKoZIhvcNAQEFBQADggIBADKL9p1Kyb4U5YysOMo6CdQbzoaz3evUuii+Eq5FLAR0rBNR +xVgYZk2C2tXck8An4b58n1KeElb21Zyp9HWc+jcSjxyT7Ff+Bw+r1RL3D65hXlaASfX8MPWbTx9B +LxyE04nH4toCdu0Jz2zBuByDHBb6lM19oMgY0sidbvW9adRtPTXoHqJPYNcHKfyyo6SdbhWSVhlM +CrDpfNIZTUJG7L399ldb3Zh+pE3McgODWF3vkzpBemOqfDqo9ayk0d2iLbYq/J8BjuIQscTK5Gfb +VSUZP/3oNn6z4eGBrxEWi1CXYBmCAMBrTXO40RMHPuq2MU/wQppt4hF05ZSsjYSVPCGvxdpHyN85 +YmLLW1AL14FABZyb7bq2ix4Eb5YgOe2kfSnbSM6C3NQCjR0EMVrHS/BsYVLXtFHCgWzN4funodKS +ds+xDzdYpPJScWc/DIh4gInByLUfkmO+p3qKViwaqKactV2zY9ATIKHrkWzQjX2v3wvkF7mGnjix +lAxYjOBVqjtjbZqJYLhkKpLGN/R+Q0O3c+gB53+XD9fyexn9GtePyfqFa3qdnom2piiZk4hA9z7N +UaPK6u95RyG1/jLix8NRb76AdPCkwzryT+lf3xkK8jsTQ6wxpLPn6/wY1gGp8yqPNg7rtLG8t0zJ +a7+h89n07eLw4+1knj0vllJPgFOL +-----END CERTIFICATE----- + +CA Disig Root R2 +================ +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNVBAYTAlNLMRMw +EQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMuMRkwFwYDVQQDExBDQSBEaXNp +ZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQyMDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sx +EzARBgNVBAcTCkJyYXRpc2xhdmExEzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERp +c2lnIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbC +w3OeNcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNHPWSb6Wia +xswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3Ix2ymrdMxp7zo5eFm1tL7 +A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbeQTg06ov80egEFGEtQX6sx3dOy1FU+16S +GBsEWmjGycT6txOgmLcRK7fWV8x8nhfRyyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqV +g8NTEQxzHQuyRpDRQjrOQG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa +5Beny912H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJQfYE +koopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUDi/ZnWejBBhG93c+A +Ak9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORsnLMOPReisjQS1n6yqEm70XooQL6i +Fh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5u +Qu0wDQYJKoZIhvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqfGopTpti72TVV +sRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkblvdhuDvEK7Z4bLQjb/D907Je +dR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka+elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W8 +1k/BfDxujRNt+3vrMNDcTa/F1balTFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjx +mHHEt38OFdAlab0inSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01 +utI3gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18DrG5gPcFw0 +sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3OszMOl6W8KjptlwlCFtaOg +UxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8xL4ysEr3vQCj8KWefshNPZiTEUxnpHikV +7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- + +ACCVRAIZ1 +========= +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UEAwwJQUNDVlJB +SVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQswCQYDVQQGEwJFUzAeFw0xMTA1 +MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQBgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwH +UEtJQUNDVjENMAsGA1UECgwEQUNDVjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQCbqau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gM +jmoYHtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWoG2ioPej0 +RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpAlHPrzg5XPAOBOp0KoVdD +aaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhrIA8wKFSVf+DuzgpmndFALW4ir50awQUZ +0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDG +WuzndN9wrqODJerWx5eHk6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs7 +8yM2x/474KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMOm3WR +5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpacXpkatcnYGMN285J +9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPluUsXQA+xtrn13k/c4LOsOxFwYIRK +Q26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYIKwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRw +Oi8vd3d3LmFjY3YuZXMvZmlsZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEu +Y3J0MB8GCCsGAQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeTVfZW6oHlNsyM +Hj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIGCCsGAQUFBwICMIIBFB6CARAA +QQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUAcgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBh +AO0AegAgAGQAZQAgAGwAYQAgAEEAQwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUA +YwBuAG8AbABvAGcA7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBj +AHQAcgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAAQwBQAFMA +IABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUAczAwBggrBgEFBQcCARYk +aHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2MuaHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0 +dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRtaW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2 +MV9kZXIuY3JsMA4GA1UdDwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZI +hvcNAQEFBQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdpD70E +R9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gUJyCpZET/LtZ1qmxN +YEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+mAM/EKXMRNt6GGT6d7hmKG9Ww7Y49 +nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepDvV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJ +TS+xJlsndQAJxGJ3KQhfnlmstn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3 +sCPdK6jT2iWH7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szAh1xA2syVP1Xg +Nce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xFd3+YJ5oyXSrjhO7FmGYvliAd +3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2HpPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3p +EfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- + +TWCA Global Root CA +=================== +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcxEjAQBgNVBAoT +CVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMTVFdDQSBHbG9iYWwgUm9vdCBD +QTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQK +EwlUQUlXQU4tQ0ExEDAOBgNVBAsTB1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3Qg +Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2C +nJfF10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz0ALfUPZV +r2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfChMBwqoJimFb3u/Rk28OKR +Q4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbHzIh1HrtsBv+baz4X7GGqcXzGHaL3SekV +tTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1W +KKD+u4ZqyPpcC1jcxkt2yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99 +sy2sbZCilaLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYPoA/p +yJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQABDzfuBSO6N+pjWxn +kjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcEqYSjMq+u7msXi7Kx/mzhkIyIqJdI +zshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMC +AQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6g +cFGn90xHNcgL1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WFH6vPNOw/KP4M +8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNoRI2T9GRwoD2dKAXDOXC4Ynsg +/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlg +lPx4mI88k1HtQJAH32RjJMtOcQWh15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryP +A9gK8kxkRr05YuWW6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3m +i4TWnsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5jwa19hAM8 +EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWzaGHQRiapIVJpLesux+t3 +zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmyKwbQBM0= +-----END CERTIFICATE----- + +TeliaSonera Root CA v1 +====================== +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAwNzEUMBIGA1UE +CgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJvb3QgQ0EgdjEwHhcNMDcxMDE4 +MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwW +VGVsaWFTb25lcmEgUm9vdCBDQSB2MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+ +6yfwIaPzaSZVfp3FVRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA +3GV17CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+XZ75Ljo1k +B1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+/jXh7VB7qTCNGdMJjmhn +Xb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxH +oLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkmdtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3 +F0fUTPHSiXk+TT2YqGHeOh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJ +oWjiUIMusDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4pgd7 +gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fsslESl1MpWtTwEhDc +TwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQarMCpgKIv7NHfirZ1fpoeDVNAgMB +AAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qW +DNXr+nuqF+gTEjANBgkqhkiG9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNm +zqjMDfz1mgbldxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1TjTQpgcmLNkQfW +pb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBedY2gea+zDTYa4EzAvXUYNR0PV +G6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpc +c41teyWRyu5FrgZLAMzTsVlQ2jqIOylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOT +JsjrDNYmiLbAJM+7vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2 +qReWt88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcnHL/EVlP6 +Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVxSK236thZiNSQvxaz2ems +WWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- + +E-Tugra Certification Authority +=============================== +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNVBAYTAlRSMQ8w +DQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamls +ZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN +ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMw +NTEyMDk0OFoXDTIzMDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmEx +QDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxl +cmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQD +DB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A +MIICCgKCAgEA4vU/kwVRHoViVF56C/UYB4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vd +hQd2h8y/L5VMzH2nPbxHD5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5K +CKpbknSFQ9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEoq1+g +ElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3Dk14opz8n8Y4e0ypQ +BaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcHfC425lAcP9tDJMW/hkd5s3kc91r0 +E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsutdEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gz +rt48Ue7LE3wBf4QOXVGUnhMMti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAq +jqFGOjGY5RH8zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn +rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUXU8u3Zg5mTPj5 +dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6Jyr+zE7S6E5UMA8GA1UdEwEB +/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEG +MA0GCSqGSIb3DQEBCwUAA4ICAQAFNzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAK +kEh47U6YA5n+KGCRHTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jO +XKqYGwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c77NCR807 +VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3+GbHeJAAFS6LrVE1Uweo +a2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WKvJUawSg5TB9D0pH0clmKuVb8P7Sd2nCc +dlqMQ1DujjByTd//SffGqWfZbawCEeI6FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEV +KV0jq9BgoRJP3vQXzTLlyb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gT +Dx4JnW2PAJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpDy4Q0 +8ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8dNL/+I5c30jn6PQ0G +C7TbO6Orb1wdtn7os4I07QZcJA== +-----END CERTIFICATE----- + +T-TeleSec GlobalRoot Class 2 +============================ +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM +IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU +cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgx +MDAxMTA0MDE0WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz +dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD +ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUdAqSzm1nzHoqvNK38DcLZ +SBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiCFoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/F +vudocP05l03Sx5iRUKrERLMjfTlH6VJi1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx970 +2cu+fjOlbpSD8DT6IavqjnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGV +WOHAD3bZwI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGjQjBA +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/WSA2AHmgoCJrjNXy +YdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhyNsZt+U2e+iKo4YFWz827n+qrkRk4 +r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPACuvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNf +vNoBYimipidx5joifsFvHZVwIEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR +3p1m0IvVVGb6g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlPBSeOE6Fuwg== +-----END CERTIFICATE----- + +Atos TrustedRoot 2011 +===================== +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UEAwwVQXRvcyBU +cnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0xMTA3MDcxNDU4 +MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMMFUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsG +A1UECgwEQXRvczELMAkGA1UEBhMCREUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCV +hTuXbyo7LjvPpvMpNb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr +54rMVD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+SZFhyBH+ +DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ4J7sVaE3IqKHBAUsR320 +HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0Lcp2AMBYHlT8oDv3FdU9T1nSatCQujgKR +z3bFmx5VdJx4IbHwLfELn8LVlhgf8FQieowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7R +l+lwrrw7GWzbITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZ +bNshMBgGA1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB +CwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8jvZfza1zv7v1Apt+h +k6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kPDpFrdRbhIfzYJsdHt6bPWHJxfrrh +TZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pcmaHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a9 +61qn8FYiqTxlVMYVqL2Gns2Dlmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G +3mB/ufNPRJLvKrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- + +QuoVadis Root CA 1 G3 +===================== +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQELBQAwSDELMAkG +A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv +b3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJN +MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEg +RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakE +PBtVwedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWerNrwU8lm +PNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF34168Xfuw6cwI2H44g4hWf6 +Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh4Pw5qlPafX7PGglTvF0FBM+hSo+LdoIN +ofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXpUhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/l +g6AnhF4EwfWQvTA9xO+oabw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV +7qJZjqlc3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/GKubX +9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSthfbZxbGL0eUQMk1f +iyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KOTk0k+17kBL5yG6YnLUlamXrXXAkg +t3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOtzCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZI +hvcNAQELBQADggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2cDMT/uFPpiN3 +GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUNqXsCHKnQO18LwIE6PWThv6ct +Tr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP ++V04ikkwj+3x6xn0dxoxGE1nVGwvb2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh +3jRJjehZrJ3ydlo28hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fa +wx/kNSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNjZgKAvQU6 +O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhpq1467HxpvMc7hU6eFbm0 +FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFtnh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOV +hMJKzRwuJIczYOXD +-----END CERTIFICATE----- + +QuoVadis Root CA 2 G3 +===================== +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQELBQAwSDELMAkG +A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv +b3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJN +MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIg +RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFh +ZiFfqq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMWn4rjyduY +NM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ymc5GQYaYDFCDy54ejiK2t +oIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+O7q414AB+6XrW7PFXmAqMaCvN+ggOp+o +MiwMzAkd056OXbxMmO7FGmh77FOm6RQ1o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+l +V0POKa2Mq1W/xPtbAd0jIaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZo +L1NesNKqIcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz8eQQ +sSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43ehvNURG3YBZwjgQQvD +6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l7ZizlWNof/k19N+IxWA1ksB8aRxh +lRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALGcC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZI +hvcNAQELBQADggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RCroijQ1h5fq7K +pVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0GaW/ZZGYjeVYg3UQt4XAoeo0L9 +x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4nlv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgz +dWqTHBLmYF5vHX/JHyPLhGGfHoJE+V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6X +U/IyAgkwo1jwDQHVcsaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+Nw +mNtddbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNgKCLjsZWD +zYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeMHVOyToV7BjjHLPj4sHKN +JeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4WSr2Rz0ZiC3oheGe7IUIarFsNMkd7Egr +O3jtZsSOeWmD3n+M +-----END CERTIFICATE----- + +QuoVadis Root CA 3 G3 +===================== +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQELBQAwSDELMAkG +A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv +b3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJN +MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMg +RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286 +IxSR/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNuFoM7pmRL +Mon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXRU7Ox7sWTaYI+FrUoRqHe +6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+cra1AdHkrAj80//ogaX3T7mH1urPnMNA3 +I4ZyYUUpSFlob3emLoG+B01vr87ERRORFHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3U +VDmrJqMz6nWB2i3ND0/kA9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f7 +5li59wzweyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634RylsSqi +Md5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBpVzgeAVuNVejH38DM +dyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0QA4XN8f+MFrXBsj6IbGB/kE+V9/Yt +rQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZI +hvcNAQELBQADggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnIFUBhynLWcKzS +t/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5WvvoxXqA/4Ti2Tk08HS6IT7SdEQ +TXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFgu/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9Du +DcpmvJRPpq3t/O5jrFc/ZSXPsoaP0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGib +Ih6BJpsQBJFxwAYf3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmD +hPbl8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+DhcI00iX +0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HNPlopNLk9hM6xZdRZkZFW +dSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ywaZWWDYWGWVjUTR939+J399roD1B0y2 +PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- + +DigiCert Assured ID Root G2 +=========================== +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw +IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgw +MTE1MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL +ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSAn61UQbVH +35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4HteccbiJVMWWXvdMX0h5i89vq +bFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9HpEgjAALAcKxHad3A2m67OeYfcgnDmCXRw +VWmvo2ifv922ebPynXApVfSr/5Vh88lAbx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OP +YLfykqGxvYmJHzDNw6YuYjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+Rn +lTGNAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTO +w0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPIQW5pJ6d1Ee88hjZv +0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I0jJmwYrA8y8678Dj1JGG0VDjA9tz +d29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4GnilmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAW +hsI6yLETcDbYz+70CjTVW0z9B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0M +jomZmWzwPDCvON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- + +DigiCert Assured ID Root G3 +=========================== +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYD +VQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1 +MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQ +BgcqhkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJfZn4f5dwb +RXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17QRSAPWXYQ1qAk8C3eNvJs +KTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgF +UaFNN6KDec6NHSrkhDAKBggqhkjOPQQDAwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5Fy +YZ5eEJJZVrmDxxDnOOlYJjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy +1vUhZscv6pZjamVFkpUBtA== +-----END CERTIFICATE----- + +DigiCert Global Root G2 +======================= +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw +HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx +MjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 +dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq +hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ +kTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO +3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV +BJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM +UNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB +o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu +5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr +F9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U +WTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH +QRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/ +iyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- + +DigiCert Global Root G3 +======================= +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD +VQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw +MDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k +aWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C +AQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O +YwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp +Yim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y +3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34 +VOKa5Vt8sycX +-----END CERTIFICATE----- + +DigiCert Trusted Root G4 +======================== +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBiMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEw +HwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1 +MTIwMDAwWjBiMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0G +CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3yithZwuEp +pz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1Ifxp4VpX6+n6lXFllVcq9o +k3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDVySAdYyktzuxeTsiT+CFhmzTrBcZe7Fsa +vOvJz82sNEBfsXpm7nfISKhmV1efVFiODCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGY +QJB5w3jHtrHEtWoYOAMQjdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6 +MUSaM0C/CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCiEhtm +mnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADMfRyVw4/3IbKyEbe7 +f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QYuKZ3AeEPlAwhHbJUKSWJbOUOUlFH +dL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXKchYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8 +oR7FwI+isX4KJpn15GkvmB0t9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBhjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2SV1EY+CtnJYY +ZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd+SeuMIW59mdNOj6PWTkiU0Tr +yF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWcfFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy +7zBZLq7gcfJW5GqXb5JQbZaNaHqasjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iah +ixTXTBmyUEFxPT9NcCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN +5r5N0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie4u1Ki7wb +/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mIr/OSmbaz5mEP0oUA51Aa +5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tK +G48BtieVU+i2iW1bvGjUI+iLUaJW+fCmgKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP +82Z+ +-----END CERTIFICATE----- + +WoSign +====== +-----BEGIN CERTIFICATE----- +MIIFdjCCA16gAwIBAgIQXmjWEXGUY1BWAGjzPsnFkTANBgkqhkiG9w0BAQUFADBVMQswCQYDVQQG +EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxKjAoBgNVBAMTIUNlcnRpZmljYXRpb24g +QXV0aG9yaXR5IG9mIFdvU2lnbjAeFw0wOTA4MDgwMTAwMDFaFw0zOTA4MDgwMTAwMDFaMFUxCzAJ +BgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEqMCgGA1UEAxMhQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkgb2YgV29TaWduMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA +vcqNrLiRFVaXe2tcesLea9mhsMMQI/qnobLMMfo+2aYpbxY94Gv4uEBf2zmoAHqLoE1UfcIiePyO +CbiohdfMlZdLdNiefvAA5A6JrkkoRBoQmTIPJYhTpA2zDxIIFgsDcSccf+Hb0v1naMQFXQoOXXDX +2JegvFNBmpGN9J42Znp+VsGQX+axaCA2pIwkLCxHC1l2ZjC1vt7tj/id07sBMOby8w7gLJKA84X5 +KIq0VC6a7fd2/BVoFutKbOsuEo/Uz/4Mx1wdC34FMr5esAkqQtXJTpCzWQ27en7N1QhatH/YHGkR ++ScPewavVIMYe+HdVHpRaG53/Ma/UkpmRqGyZxq7o093oL5d//xWC0Nyd5DKnvnyOfUNqfTq1+ez +EC8wQjchzDBwyYaYD8xYTYO7feUapTeNtqwylwA6Y3EkHp43xP901DfA4v6IRmAR3Qg/UDaruHqk +lWJqbrDKaiFaafPz+x1wOZXzp26mgYmhiMU7ccqjUu6Du/2gd/Tkb+dC221KmYo0SLwX3OSACCK2 +8jHAPwQ+658geda4BmRkAjHXqc1S+4RFaQkAKtxVi8QGRkvASh0JWzko/amrzgD5LkhLJuYwTKVY +yrREgk/nkR4zw7CT/xH8gdLKH3Ep3XZPkiWvHYG3Dy+MwwbMLyejSuQOmbp8HkUff6oZRZb9/D0C +AwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFOFmzw7R +8bNLtwYgFP6HEtX2/vs+MA0GCSqGSIb3DQEBBQUAA4ICAQCoy3JAsnbBfnv8rWTjMnvMPLZdRtP1 +LOJwXcgu2AZ9mNELIaCJWSQBnfmvCX0KI4I01fx8cpm5o9dU9OpScA7F9dY74ToJMuYhOZO9sxXq +T2r09Ys/L3yNWC7F4TmgPsc9SnOeQHrAK2GpZ8nzJLmzbVUsWh2eJXLOC62qx1ViC777Y7NhRCOj +y+EaDveaBk3e1CNOIZZbOVtXHS9dCF4Jef98l7VNg64N1uajeeAz0JmWAjCnPv/So0M/BVoG6kQC +2nz4SNAzqfkHx5Xh9T71XXG68pWpdIhhWeO/yloTunK0jF02h+mmxTwTv97QRCbut+wucPrXnbes +5cVAWubXbHssw1abR80LzvobtCHXt2a49CUwi1wNuepnsvRtrtWhnk/Yn+knArAdBtaP4/tIEp9/ +EaEQPkxROpaw0RPxx9gmrjrKkcRpnd8BKWRRb2jaFOwIQZeQjdCygPLPwj2/kWjFgGcexGATVdVh +mVd8upUPYUk6ynW8yQqTP2cOEvIo4jEbwFcW3wh8GcF+Dx+FHgo2fFt+J7x6v+Db9NpSvd4MVHAx +kUOVyLzwPt0JfjBkUO1/AaQzZ01oT74V77D2AhGiGxMlOtzCWfHjXEa7ZywCRuoeSKbmW9m1vFGi +kpbbqsY3Iqb+zCB0oy2pLmvLwIIRIbWTee5Ehr7XHuQe+w== +-----END CERTIFICATE----- + +WoSign China +============ +-----BEGIN CERTIFICATE----- +MIIFWDCCA0CgAwIBAgIQUHBrzdgT/BtOOzNy0hFIjTANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQG +EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxGzAZBgNVBAMMEkNBIOayg+mAmuagueiv +geS5pjAeFw0wOTA4MDgwMTAwMDFaFw0zOTA4MDgwMTAwMDFaMEYxCzAJBgNVBAYTAkNOMRowGAYD +VQQKExFXb1NpZ24gQ0EgTGltaXRlZDEbMBkGA1UEAwwSQ0Eg5rKD6YCa5qC56K+B5LmmMIICIjAN +BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0EkhHiX8h8EqwqzbdoYGTufQdDTc7WU1/FDWiD+k +8H/rD195L4mx/bxjWDeTmzj4t1up+thxx7S8gJeNbEvxUNUqKaqoGXqW5pWOdO2XCld19AXbbQs5 +uQF/qvbW2mzmBeCkTVL829B0txGMe41P/4eDrv8FAxNXUDf+jJZSEExfv5RxadmWPgxDT74wwJ85 +dE8GRV2j1lY5aAfMh09Qd5Nx2UQIsYo06Yms25tO4dnkUkWMLhQfkWsZHWgpLFbE4h4TV2TwYeO5 +Ed+w4VegG63XX9Gv2ystP9Bojg/qnw+LNVgbExz03jWhCl3W6t8Sb8D7aQdGctyB9gQjF+BNdeFy +b7Ao65vh4YOhn0pdr8yb+gIgthhid5E7o9Vlrdx8kHccREGkSovrlXLp9glk3Kgtn3R46MGiCWOc +76DbT52VqyBPt7D3h1ymoOQ3OMdc4zUPLK2jgKLsLl3Az+2LBcLmc272idX10kaO6m1jGx6KyX2m ++Jzr5dVjhU1zZmkR/sgO9MHHZklTfuQZa/HpelmjbX7FF+Ynxu8b22/8DU0GAbQOXDBGVWCvOGU6 +yke6rCzMRh+yRpY/8+0mBe53oWprfi1tWFxK1I5nuPHa1UaKJ/kR8slC/k7e3x9cxKSGhxYzoacX +GKUN5AXlK8IrC6KVkLn9YDxOiT7nnO4fuwECAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFOBNv9ybQV0T6GTwp+kVpOGBwboxMA0GCSqGSIb3DQEBCwUA +A4ICAQBqinA4WbbaixjIvirTthnVZil6Xc1bL3McJk6jfW+rtylNpumlEYOnOXOvEESS5iVdT2H6 +yAa+Tkvv/vMx/sZ8cApBWNromUuWyXi8mHwCKe0JgOYKOoICKuLJL8hWGSbueBwj/feTZU7n85iY +r83d2Z5AiDEoOqsuC7CsDCT6eiaY8xJhEPRdF/d+4niXVOKM6Cm6jBAyvd0zaziGfjk9DgNyp115 +j0WKWa5bIW4xRtVZjc8VX90xJc/bYNaBRHIpAlf2ltTW/+op2znFuCyKGo3Oy+dCMYYFaA6eFN0A +kLppRQjbbpCBhqcqBT/mhDn4t/lXX0ykeVoQDF7Va/81XwVRHmyjdanPUIPTfPRm94KNPQx96N97 +qA4bLJyuQHCH2u2nFoJavjVsIE4iYdm8UXrNemHcSxH5/mc0zy4EZmFcV5cjjPOGG0jfKq+nwf/Y +jj4Du9gqsPoUJbJRa4ZDhS4HIxaAjUz7tGM7zMN07RujHv41D198HRaG9Q7DlfEvr10lO1Hm13ZB +ONFLAzkopR6RctR9q5czxNM+4Gm2KHmgCY0c0f9BckgG/Jou5yD5m6Leie2uPAmvylezkolwQOQv +T8Jwg0DXJCxr5wkf09XHwQj02w47HAcLQxGEIYbpgNR12KvxAmLBsX5VYc8T1yaw15zLKYs4SgsO +kI26oQ== +-----END CERTIFICATE----- + +COMODO RSA Certification Authority +================================== +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UE +BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG +A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwHhcNMTAwMTE5MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMC +R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE +ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR6FSS0gpWsawNJN3Fz0Rn +dJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8Xpz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZ +FGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+ +5eNu/Nio5JIk2kNrYrhV/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pG +x8cgoLEfZd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z+pUX +2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7wqP/0uK3pN/u6uPQL +OvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZahSL0896+1DSJMwBGB7FY79tOi4lu3 +sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVICu9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+C +GCe01a60y1Dma/RMhnEw6abfFobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5 +WdYgGq/yapiqcrxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w +DQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvlwFTPoCWOAvn9sKIN9SCYPBMt +rFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+ +nq6PK7o9mfjYcwlYRm6mnPTXJ9OV2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSg +tZx8jb8uk2IntznaFxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwW +sRqZCuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiKboHGhfKp +pC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmckejkk9u+UJueBPSZI9FoJA +zMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yLS0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHq +ZJx64SIDqZxubw5lT2yHh17zbqD5daWbQOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk52 +7RH89elWsn2/x20Kk4yl0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7I +LaZRfyHBNVOFBkpdn627G190 +-----END CERTIFICATE----- + +USERTrust RSA Certification Authority +===================================== +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK +ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK +ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCAEmUXNg7D2wiz +0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2j +Y0K2dvKpOyuR+OJv0OwWIJAJPuLodMkYtJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFn +RghRy4YUVD+8M/5+bJz/Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O ++T23LLb2VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT79uq +/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6c0Plfg6lZrEpfDKE +Y1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmTYo61Zs8liM2EuLE/pDkP2QKe6xJM +lXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97lc6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8 +yexDJtC/QV9AqURE9JnnV4eeUB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+ +eLf8ZxXhyVeEHg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPFUp/L+M+ZBn8b2kMVn54CVVeW +FPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KOVWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ +7l8wXEskEVX/JJpuXior7gtNn3/3ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQ +Eg9zKC7F4iRO/Fjs8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM +8WcRiQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYzeSf7dNXGi +FSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZXHlKYC6SQK5MNyosycdi +yA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9c +J2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRBVXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGw +sAvgnEzDHNb842m1R0aBL6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gx +Q+6IHdfGjjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- + +USERTrust ECC Certification Authority +===================================== +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDELMAkGA1UEBhMC +VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMC +VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqfloI+d61SRvU8Za2EurxtW2 +0eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinngo4N+LZfQYcTxmdwlkWOrfzCjtHDix6Ez +nPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0GA1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNV +HQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBB +HU6+4WMBzzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbWRNZu +9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- + +GlobalSign ECC Root CA - R4 +=========================== +-----BEGIN CERTIFICATE----- +MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEkMCIGA1UECxMb +R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD +EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb +R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD +EwpHbG9iYWxTaWduMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprl +OQcJFspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAwDgYDVR0P +AQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61FuOJAf/sKbvu+M8k8o4TV +MAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGXkPoUVy0D7O48027KqGx2vKLeuwIgJ6iF +JzWbVsaj8kfSt24bAgAXqmemFZHe+pTsewv4n4Q= +-----END CERTIFICATE----- + +GlobalSign ECC Root CA - R5 +=========================== +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEkMCIGA1UECxMb +R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD +EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb +R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD +EwpHbG9iYWxTaWduMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6 +SFkc8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8kehOvRnkmS +h5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd +BgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYIKoZIzj0EAwMDaAAwZQIxAOVpEslu28Yx +uglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7 +yFz9SO8NdCKoCOJuxUnOxwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- + +Staat der Nederlanden Root CA - G3 +================================== +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIEAJiiOTANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE +CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g +Um9vdCBDQSAtIEczMB4XDTEzMTExNDExMjg0MloXDTI4MTExMzIzMDAwMFowWjELMAkGA1UEBhMC +TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l +ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL4y +olQPcPssXFnrbMSkUeiFKrPMSjTysF/zDsccPVMeiAho2G89rcKezIJnByeHaHE6n3WWIkYFsO2t +x1ueKt6c/DrGlaf1F2cY5y9JCAxcz+bMNO14+1Cx3Gsy8KL+tjzk7FqXxz8ecAgwoNzFs21v0IJy +EavSgWhZghe3eJJg+szeP4TrjTgzkApyI/o1zCZxMdFyKJLZWyNtZrVtB0LrpjPOktvA9mxjeM3K +Tj215VKb8b475lRgsGYeCasH/lSJEULR9yS6YHgamPfJEf0WwTUaVHXvQ9Plrk7O53vDxk5hUUur +mkVLoR9BvUhTFXFkC4az5S6+zqQbwSmEorXLCCN2QyIkHxcE1G6cxvx/K2Ya7Irl1s9N9WMJtxU5 +1nus6+N86U78dULI7ViVDAZCopz35HCz33JvWjdAidiFpNfxC95DGdRKWCyMijmev4SH8RY7Ngzp +07TKbBlBUgmhHbBqv4LvcFEhMtwFdozL92TkA1CvjJFnq8Xy7ljY3r735zHPbMk7ccHViLVlvMDo +FxcHErVc0qsgk7TmgoNwNsXNo42ti+yjwUOH5kPiNL6VizXtBznaqB16nzaeErAMZRKQFWDZJkBE +41ZgpRDUajz9QdwOWke275dhdU/Z/seyHdTtXUmzqWrLZoQT1Vyg3N9udwbRcXXIV2+vD3dbAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRUrfrHkleu +yjWcLhL75LpdINyUVzANBgkqhkiG9w0BAQsFAAOCAgEAMJmdBTLIXg47mAE6iqTnB/d6+Oea31BD +U5cqPco8R5gu4RV78ZLzYdqQJRZlwJ9UXQ4DO1t3ApyEtg2YXzTdO2PCwyiBwpwpLiniyMMB8jPq +KqrMCQj3ZWfGzd/TtiunvczRDnBfuCPRy5FOCvTIeuXZYzbB1N/8Ipf3YF3qKS9Ysr1YvY2WTxB1 +v0h7PVGHoTx0IsL8B3+A3MSs/mrBcDCw6Y5p4ixpgZQJut3+TcCDjJRYwEYgr5wfAvg1VUkvRtTA +8KCWAg8zxXHzniN9lLf9OtMJgwYh/WA9rjLA0u6NpvDntIJ8CsxwyXmA+P5M9zWEGYox+wrZ13+b +8KKaa8MFSu1BYBQw0aoRQm7TIwIEC8Zl3d1Sd9qBa7Ko+gE4uZbqKmxnl4mUnrzhVNXkanjvSr0r +mj1AfsbAddJu+2gw7OyLnflJNZoaLNmzlTnVHpL3prllL+U9bTpITAjc5CgSKL59NVzq4BZ+Extq +1z7XnvwtdbLBFNUjA9tbbws+eC8N3jONFrdI54OagQ97wUNNVQQXOEpR1VmiiXTTn74eS9fGbbeI +JG9gkaSChVtWQbzQRKtqE77RLFi3EjNYsjdj3BP1lB0/QFH1T/U67cjF68IeHRaVesd+QnGTbksV +tzDfqu1XhUisHWrdOWnk4Xl4vs4Fv6EM94B7IWcnMFk= +-----END CERTIFICATE----- + +Staat der Nederlanden EV Root CA +================================ +-----BEGIN CERTIFICATE----- +MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJOTDEeMBwGA1UE +CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFhdCBkZXIgTmVkZXJsYW5kZW4g +RVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0yMjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5M +MR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRl +cmxhbmRlbiBFViBSb290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkk +SzrSM4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nCUiY4iKTW +O0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3dZ//BYY1jTw+bbRcwJu+r +0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46prfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8 +Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13lpJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gV +XJrm0w912fxBmJc+qiXbj5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr +08C+eKxCKFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS/ZbV +0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0XcgOPvZuM5l5Tnrmd +74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH1vI4gnPah1vlPNOePqc7nvQDs/nx +fRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrPpx9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwa +ivsnuL8wbqg7MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI +eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u2dfOWBfoqSmu +c0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHSv4ilf0X8rLiltTMMgsT7B/Zq +5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTCwPTxGfARKbalGAKb12NMcIxHowNDXLldRqAN +b/9Zjr7dn3LDWyvfjFvO5QxGbJKyCqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tN +f1zuacpzEPuKqf2evTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi +5Dp6Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIaGl6I6lD4 +WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeLeG9QgkRQP2YGiqtDhFZK +DyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGy +eUN51q1veieQA6TqJIc/2b3Z6fJfUEkc7uzXLg== +-----END CERTIFICATE----- + +IdenTrust Commercial Root CA 1 +============================== +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBKMQswCQYDVQQG +EwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBS +b290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQwMTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzES +MBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENB +IDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ld +hNlT3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU+ehcCuz/ +mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gpS0l4PJNgiCL8mdo2yMKi +1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1bVoE/c40yiTcdCMbXTMTEl3EASX2MN0C +XZ/g1Ue9tOsbobtJSdifWwLziuQkkORiT0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl +3ZBWzvurpWCdxJ35UrCLvYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzy +NeVJSQjKVsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZKdHzV +WYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHTc+XvvqDtMwt0viAg +xGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hvl7yTmvmcEpB4eoCHFddydJxVdHix +uuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5NiGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC +AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZI +hvcNAQELBQADggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwtLRvM7Kqas6pg +ghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93nAbowacYXVKV7cndJZ5t+qnt +ozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3+wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmV +YjzlVYA211QC//G5Xc7UI2/YRYRKW2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUX +feu+h1sXIFRRk0pTAwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/ro +kTLql1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG4iZZRHUe +2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZmUlO+KWA2yUPHGNiiskz +Z2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7R +cGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- + +IdenTrust Public Sector Root CA 1 +================================= +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQG +EwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3Rv +ciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcNMzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJV +UzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBS +b290IENBIDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTy +P4o7ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGyRBb06tD6 +Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlSbdsHyo+1W/CD80/HLaXI +rcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF/YTLNiCBWS2ab21ISGHKTN9T0a9SvESf +qy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoS +mJxZZoY+rfGwyj4GD3vwEUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFn +ol57plzy9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9VGxyh +LrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ2fjXctscvG29ZV/v +iDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsVWaFHVCkugyhfHMKiq3IXAAaOReyL +4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gDW/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8B +Af8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMw +DQYJKoZIhvcNAQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHVDRDtfULAj+7A +mgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9TaDKQGXSc3z1i9kKlT/YPyNt +GtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8GlwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFt +m6/n6J91eEyrRjuazr8FGF1NFTwWmhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMx +NRF4eKLg6TCMf4DfWN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4 +Mhn5+bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJtshquDDI +ajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhAGaQdp/lLQzfcaFpPz+vC +ZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ +3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- + +Entrust Root Certification Authority - G2 +========================================= +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMCVVMxFjAUBgNV +BAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVy +bXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ug +b25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIw +HhcNMDkwNzA3MTcyNTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoT +DUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMx +OTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25s +eTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP +/vaCeb9zYQYKpSfYs1/TRU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXz +HHfV1IWNcCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hWwcKU +s/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1U1+cPvQXLOZprE4y +TGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0jaWvYkxN4FisZDQSA/i2jZRjJKRx +AgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ6 +0B7vfec7aVHUbI2fkBJmqzANBgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5Z +iXMRrEPR9RP/jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v1fN2D807iDgi +nWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4RnAuknZoh8/CbCzB428Hch0P+ +vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmHVHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xO +e4pIb4tF9g== +-----END CERTIFICATE----- + +Entrust Root Certification Authority - EC1 +========================================== +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkGA1UEBhMCVVMx +FjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVn +YWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXpl +ZCB1c2Ugb25seTEzMDEGA1UEAxMqRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +IC0gRUMxMB4XDTEyMTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYw +FAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2Fs +LXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQg +dXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt +IEVDMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHy +AsWfoPZb1YsGGYZPUxBtByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef +9eNi1KlHBz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE +FLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVCR98crlOZF7ZvHH3h +vxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nXhTcGtXsI/esni0qU+eH6p44mCOh8 +kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- + +CFCA EV ROOT +============ +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJDTjEwMC4GA1UE +CgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNB +IEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkxMjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEw +MC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQD +DAxDRkNBIEVWIFJPT1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnV +BU03sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpLTIpTUnrD +7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5/ZOkVIBMUtRSqy5J35DN +uF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp7hZZLDRJGqgG16iI0gNyejLi6mhNbiyW +ZXvKWfry4t3uMCz7zEasxGPrb382KzRzEpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7 +xzbh72fROdOXW3NiGUgthxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9f +py25IGvPa931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqotaK8K +gWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNgTnYGmE69g60dWIol +hdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfVPKPtl8MeNPo4+QgO48BdK4PRVmrJ +tqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hvcWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAf +BgNVHSMEGDAWgBTj/i39KNALtbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB +/wQEAwIBBjAdBgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObTej/tUxPQ4i9q +ecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdLjOztUmCypAbqTuv0axn96/Ua +4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBSESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sG +E5uPhnEFtC+NiWYzKXZUmhH4J/qyP5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfX +BDrDMlI1Dlb4pd19xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjn +aH9dCi77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN5mydLIhy +PDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe/v5WOaHIz16eGWRGENoX +kbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+ZAAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3C +ekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- + +TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H5 +========================================================= +-----BEGIN CERTIFICATE----- +MIIEJzCCAw+gAwIBAgIHAI4X/iQggTANBgkqhkiG9w0BAQsFADCBsTELMAkGA1UEBhMCVFIxDzAN +BgNVBAcMBkFua2FyYTFNMEsGA1UECgxEVMOcUktUUlVTVCBCaWxnaSDEsGxldGnFn2ltIHZlIEJp +bGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7Fni4xQjBABgNVBAMMOVTDnFJLVFJVU1Qg +RWxla3Ryb25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSBINTAeFw0xMzA0MzAw +ODA3MDFaFw0yMzA0MjgwODA3MDFaMIGxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMU0w +SwYDVQQKDERUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnE +n2kgSGl6bWV0bGVyaSBBLsWeLjFCMEAGA1UEAww5VMOcUktUUlVTVCBFbGVrdHJvbmlrIFNlcnRp +ZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIEg1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEApCUZ4WWe60ghUEoI5RHwWrom/4NZzkQqL/7hzmAD/I0Dpe3/a6i6zDQGn1k19uwsu537 +jVJp45wnEFPzpALFp/kRGml1bsMdi9GYjZOHp3GXDSHHmflS0yxjXVW86B8BSLlg/kJK9siArs1m +ep5Fimh34khon6La8eHBEJ/rPCmBp+EyCNSgBbGM+42WAA4+Jd9ThiI7/PS98wl+d+yG6w8z5UNP +9FR1bSmZLmZaQ9/LXMrI5Tjxfjs1nQ/0xVqhzPMggCTTV+wVunUlm+hkS7M0hO8EuPbJbKoCPrZV +4jI3X/xml1/N1p7HIL9Nxqw/dV8c7TKcfGkAaZHjIxhT6QIDAQABo0IwQDAdBgNVHQ4EFgQUVpkH +HtOsDGlktAxQR95DLL4gwPswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZI +hvcNAQELBQADggEBAJ5FdnsXSDLyOIspve6WSk6BGLFRRyDN0GSxDsnZAdkJzsiZ3GglE9Rc8qPo +BP5yCccLqh0lVX6Wmle3usURehnmp349hQ71+S4pL+f5bFgWV1Al9j4uPqrtd3GqqpmWRgqujuwq +URawXs3qZwQcWDD1YIq9pr1N5Za0/EKJAWv2cMhQOQwt1WbZyNKzMrcbGW3LM/nfpeYVhDfwwvJl +lpKQd/Ct9JDpEXjXk4nAPQu6KfTomZ1yju2dL+6SfaHx/126M2CFYv4HAqGEVka+lgqaE9chTLd8 +B59OTj+RdPsnnRHM3eaxynFNExc5JsUpISuTKWqW+qtB4Uu2NQvAmxU= +-----END CERTIFICATE----- + +TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H6 +========================================================= +-----BEGIN CERTIFICATE----- +MIIEJjCCAw6gAwIBAgIGfaHyZeyKMA0GCSqGSIb3DQEBCwUAMIGxMQswCQYDVQQGEwJUUjEPMA0G +A1UEBwwGQW5rYXJhMU0wSwYDVQQKDERUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmls +acWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLjFCMEAGA1UEAww5VMOcUktUUlVTVCBF +bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIEg2MB4XDTEzMTIxODA5 +MDQxMFoXDTIzMTIxNjA5MDQxMFowgbExCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExTTBL +BgNVBAoMRFTDnFJLVFJVU1QgQmlsZ2kgxLBsZXRpxZ9pbSB2ZSBCaWxpxZ9pbSBHw7x2ZW5sacSf +aSBIaXptZXRsZXJpIEEuxZ4uMUIwQAYDVQQDDDlUw5xSS1RSVVNUIEVsZWt0cm9uaWsgU2VydGlm +aWthIEhpem1ldCBTYcSfbGF5xLFjxLFzxLEgSDYwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQCdsGjW6L0UlqMACprx9MfMkU1xeHe59yEmFXNRFpQJRwXiM/VomjX/3EsvMsew7eKC5W/a +2uqsxgbPJQ1BgfbBOCK9+bGlprMBvD9QFyv26WZV1DOzXPhDIHiTVRZwGTLmiddk671IUP320EED +wnS3/faAz1vFq6TWlRKb55cTMgPp1KtDWxbtMyJkKbbSk60vbNg9tvYdDjTu0n2pVQ8g9P0pu5Fb +HH3GQjhtQiht1AH7zYiXSX6484P4tZgvsycLSF5W506jM7NE1qXyGJTtHB6plVxiSvgNZ1GpryHV ++DKdeboaX+UEVU0TRv/yz3THGmNtwx8XEsMeED5gCLMxAgMBAAGjQjBAMB0GA1UdDgQWBBTdVRcT +9qzoSCHK77Wv0QAy7Z6MtTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG +9w0BAQsFAAOCAQEAb1gNl0OqFlQ+v6nfkkU/hQu7VtMMUszIv3ZnXuaqs6fvuay0EBQNdH49ba3R +fdCaqaXKGDsCQC4qnFAUi/5XfldcEQlLNkVS9z2sFP1E34uXI9TDwe7UU5X+LEr+DXCqu4svLcsy +o4LyVN/Y8t3XSHLuSqMplsNEzm61kod2pLv0kmzOLBQJZo6NrRa1xxsJYTvjIKIDgI6tflEATseW +hvtDmHd9KMeP2Cpu54Rvl0EpABZeTeIT6lnAY2c6RPuY/ATTMHKm9ocJV612ph1jmv3XZch4gyt1 +O6VbuA1df74jrlZVlFjvH4GMKrLN5ptjnhi85WsGtAuYSyher4hYyw== +-----END CERTIFICATE----- + +Certinomis - Root CA +==================== +-----BEGIN CERTIFICATE----- +MIIFkjCCA3qgAwIBAgIBATANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJGUjETMBEGA1UEChMK +Q2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxHTAbBgNVBAMTFENlcnRpbm9taXMg +LSBSb290IENBMB4XDTEzMTAyMTA5MTcxOFoXDTMzMTAyMTA5MTcxOFowWjELMAkGA1UEBhMCRlIx +EzARBgNVBAoTCkNlcnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMR0wGwYDVQQDExRD +ZXJ0aW5vbWlzIC0gUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANTMCQos +P5L2fxSeC5yaah1AMGT9qt8OHgZbn1CF6s2Nq0Nn3rD6foCWnoR4kkjW4znuzuRZWJflLieY6pOo +d5tK8O90gC3rMB+12ceAnGInkYjwSond3IjmFPnVAy//ldu9n+ws+hQVWZUKxkd8aRi5pwP5ynap +z8dvtF4F/u7BUrJ1Mofs7SlmO/NKFoL21prbcpjp3vDFTKWrteoB4owuZH9kb/2jJZOLyKIOSY00 +8B/sWEUuNKqEUL3nskoTuLAPrjhdsKkb5nPJWqHZZkCqqU2mNAKthH6yI8H7KsZn9DS2sJVqM09x +RLWtwHkziOC/7aOgFLScCbAK42C++PhmiM1b8XcF4LVzbsF9Ri6OSyemzTUK/eVNfaoqoynHWmgE +6OXWk6RiwsXm9E/G+Z8ajYJJGYrKWUM66A0ywfRMEwNvbqY/kXPLynNvEiCL7sCCeN5LLsJJwx3t +FvYk9CcbXFcx3FXuqB5vbKziRcxXV4p1VxngtViZSTYxPDMBbRZKzbgqg4SGm/lg0h9tkQPTYKbV +PZrdd5A9NaSfD171UkRpucC63M9933zZxKyGIjK8e2uR73r4F2iw4lNVYC2vPsKD2NkJK/DAZNuH +i5HMkesE/Xa0lZrmFAYb1TQdvtj/dBxThZngWVJKYe2InmtJiUZ+IFrZ50rlau7SZRFDAgMBAAGj +YzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTvkUz1pcMw6C8I +6tNxIqSSaHh02TAfBgNVHSMEGDAWgBTvkUz1pcMw6C8I6tNxIqSSaHh02TANBgkqhkiG9w0BAQsF +AAOCAgEAfj1U2iJdGlg+O1QnurrMyOMaauo++RLrVl89UM7g6kgmJs95Vn6RHJk/0KGRHCwPT5iV +WVO90CLYiF2cN/z7ZMF4jIuaYAnq1fohX9B0ZedQxb8uuQsLrbWwF6YSjNRieOpWauwK0kDDPAUw +Pk2Ut59KA9N9J0u2/kTO+hkzGm2kQtHdzMjI1xZSg081lLMSVX3l4kLr5JyTCcBMWwerx20RoFAX +lCOotQqSD7J6wWAsOMwaplv/8gzjqh8c3LigkyfeY+N/IZ865Z764BNqdeuWXGKRlI5nU7aJ+BIJ +y29SWwNyhlCVCNSNh4YVH5Uk2KRvms6knZtt0rJ2BobGVgjF6wnaNsIbW0G+YSrjcOa4pvi2WsS9 +Iff/ql+hbHY5ZtbqTFXhADObE5hjyW/QASAJN1LnDE8+zbz1X5YnpyACleAu6AdBBR8Vbtaw5Bng +DwKTACdyxYvRVB9dSsNAl35VpnzBMwQUAR1JIGkLGZOdblgi90AMRgwjY/M50n92Uaf0yKHxDHYi +I0ZSKS3io0EHVmmY0gUJvGnHWmHNj4FgFU2A3ZDifcRQ8ow7bkrHxuaAKzyBvBGAFhAn1/DNP3nM +cyrDflOR1m749fPH0FFNjkulW+YZFzvWgQncItzujrnEj1PhZ7szuIgVRs/taTX/dQ1G885x4cVr +hkIGuUE= +-----END CERTIFICATE----- + +OISTE WISeKey Global Root GB CA +=============================== +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBtMQswCQYDVQQG +EwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl +ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAw +MzJaFw0zOTEyMDExNTEwMzFaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYD +VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEds +b2JhbCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3HEokKtaX +scriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGxWuR51jIjK+FTzJlFXHtP +rby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk +9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNku7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4o +Qnc/nSMbsrY9gBQHTC5P99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvg +GUpuuy9rM2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZI +hvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrghcViXfa43FK8+5/ea4n32cZiZBKpD +dHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0 +VQreUGdNZtGn//3ZwLWoo4rOZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEui +HZeeevJuQHHfaPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- + +Certification Authority of WoSign G2 +==================================== +-----BEGIN CERTIFICATE----- +MIIDfDCCAmSgAwIBAgIQayXaioidfLwPBbOxemFFRDANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQG +EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxLTArBgNVBAMTJENlcnRpZmljYXRpb24g +QXV0aG9yaXR5IG9mIFdvU2lnbiBHMjAeFw0xNDExMDgwMDU4NThaFw00NDExMDgwMDU4NThaMFgx +CzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEtMCsGA1UEAxMkQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkgb2YgV29TaWduIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAvsXEoCKASU+/2YcRxlPhuw+9YH+v9oIOH9ywjj2X4FA8jzrvZjtFB5sg+OPXJYY1kBai +XW8wGQiHC38Gsp1ij96vkqVg1CuAmlI/9ZqD6TRay9nVYlzmDuDfBpgOgHzKtB0TiGsOqCR3A9Du +W/PKaZE1OVbFbeP3PU9ekzgkyhjpJMuSA93MHD0JcOQg5PGurLtzaaNjOg9FD6FKmsLRY6zLEPg9 +5k4ot+vElbGs/V6r+kHLXZ1L3PR8du9nfwB6jdKgGlxNIuG12t12s9R23164i5jIFFTMaxeSt+BK +v0mUYQs4kI9dJGwlezt52eJ+na2fmKEG/HgUYFf47oB3sQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC +AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU+mCp62XF3RYUCE4MD42b4Pdkr2cwDQYJKoZI +hvcNAQELBQADggEBAFfDejaCnI2Y4qtAqkePx6db7XznPWZaOzG73/MWM5H8fHulwqZm46qwtyeY +P0nXYGdnPzZPSsvxFPpahygc7Y9BMsaV+X3avXtbwrAh449G3CE4Q3RM+zD4F3LBMvzIkRfEzFg3 +TgvMWvchNSiDbGAtROtSjFA9tWwS1/oJu2yySrHFieT801LYYRf+epSEj3m2M1m6D8QL4nCgS3gu ++sif/a+RZQp4OBXllxcU3fngLDT4ONCEIgDAFFEYKwLcMFrw6AF8NTojrwjkr6qOKEJJLvD1mTS+ +7Q9LGOHSJDy7XUe3IfKN0QqZjuNuPq1w4I+5ysxugTH2e5x6eeRncRg= +-----END CERTIFICATE----- + +CA WoSign ECC Root +================== +-----BEGIN CERTIFICATE----- +MIICCTCCAY+gAwIBAgIQaEpYcIBr8I8C+vbe6LCQkDAKBggqhkjOPQQDAzBGMQswCQYDVQQGEwJD +TjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxGzAZBgNVBAMTEkNBIFdvU2lnbiBFQ0MgUm9v +dDAeFw0xNDExMDgwMDU4NThaFw00NDExMDgwMDU4NThaMEYxCzAJBgNVBAYTAkNOMRowGAYDVQQK +ExFXb1NpZ24gQ0EgTGltaXRlZDEbMBkGA1UEAxMSQ0EgV29TaWduIEVDQyBSb290MHYwEAYHKoZI +zj0CAQYFK4EEACIDYgAE4f2OuEMkq5Z7hcK6C62N4DrjJLnSsb6IOsq/Srj57ywvr1FQPEd1bPiU +t5v8KB7FVMxjnRZLU8HnIKvNrCXSf4/CwVqCXjCLelTOA7WRf6qU0NGKSMyCBSah1VES1ns2o0Iw +QDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUqv3VWqP2h4syhf3R +MluARZPzA7gwCgYIKoZIzj0EAwMDaAAwZQIxAOSkhLCB1T2wdKyUpOgOPQB0TKGXa/kNUTyh2Tv0 +Daupn75OcsqF1NnstTJFGG+rrQIwfcf3aWMvoeGY7xMQ0Xk/0f7qO3/eVvSQsRUR2LIiFdAvwyYu +a/GRspBl9JrmkO5K +-----END CERTIFICATE----- + +SZAFIR ROOT CA2 +=============== +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQELBQAwUTELMAkG +A1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6ZW5pb3dhIFMuQS4xGDAWBgNV +BAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkwNzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJ +BgNVBAYTAlBMMSgwJgYDVQQKDB9LcmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYD +VQQDDA9TWkFGSVIgUk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5Q +qEvNQLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT3PSQ1hNK +DJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw3gAeqDRHu5rr/gsUvTaE +2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr63fE9biCloBK0TXC5ztdyO4mTp4CEHCdJ +ckm1/zuVnsHMyAHs6A6KCpbns6aH5db5BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwi +ieDhZNRnvDF5YTy7ykHNXGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0P +AQH/BAQDAgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsFAAOC +AQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw8PRBEew/R40/cof5 +O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOGnXkZ7/e7DDWQw4rtTw/1zBLZpD67 +oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCPoky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul +4+vJhaAlIDf7js4MNIThPIGyd05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6 ++/NNIxuZMzSgLvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- + +Certum Trusted Network CA 2 +=========================== +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCBgDELMAkGA1UE +BhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMuQS4xJzAlBgNVBAsTHkNlcnR1 +bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIGA1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29y +ayBDQSAyMCIYDzIwMTExMDA2MDgzOTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQ +TDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENB +IDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWADGSdhhuWZGc/IjoedQF9 +7/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+o +CgCXhVqqndwpyeI1B+twTUrWwbNWuKFBOJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40b +Rr5HMNUuctHFY9rnY3lEfktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2p +uTRZCr+ESv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1mo130 +GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02isx7QBlrd9pPPV3WZ +9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOWOZV7bIBaTxNyxtd9KXpEulKkKtVB +Rgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgezTv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pye +hizKV/Ma5ciSixqClnrDvFASadgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vM +BhBgu4M1t15n3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZI +hvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQF/xlhMcQSZDe28cmk4gmb3DW +Al45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTfCVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuA +L55MYIR4PSFk1vtBHxgP58l1cb29XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMo +clm2q8KMZiYcdywmdjWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tM +pkT/WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jbAoJnwTnb +w3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksqP/ujmv5zMnHCnsZy4Ypo +J/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Kob7a6bINDd82Kkhehnlt4Fj1F4jNy3eFm +ypnTycUm/Q1oBEauttmbjL4ZvrHG8hnjXALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLX +is7VmFxWlgPF7ncGNf/P5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7 +zAYspsbiDrW5viSP +-----END CERTIFICATE----- + +Hellenic Academic and Research Institutions RootCA 2015 +======================================================= +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1IxDzANBgNVBAcT +BkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0 +aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl +YXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAx +MTIxWjCBpjELMAkGA1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMg +QWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNV +BAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIw +MTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDC+Kk/G4n8PDwEXT2QNrCROnk8Zlrv +bTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+eh +iGsxr/CL0BgzuNtFajT0AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+ +6PAQZe104S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06CojXd +FPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV9Cz82XBST3i4vTwr +i5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrDgfgXy5I2XdGj2HUb4Ysn6npIQf1F +GQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2 +fu/Z8VFRfS0myGlZYeCsargqNhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9mu +iNX6hME6wGkoLfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVdctA4GGqd83EkVAswDQYJKoZI +hvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0IXtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+ +D1hYc2Ryx+hFjtyp8iY/xnmMsVMIM4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrM +d/K4kPFox/la/vot9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+y +d+2VZ5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/eaj8GsGsVn +82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnhX9izjFk0WaSrT2y7Hxjb +davYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQl033DlZdwJVqwjbDG2jJ9SrcR5q+ss7F +Jej6A7na+RZukYT1HCjI/CbM1xyQVqdfbzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVt +J94Cj8rDtSvK6evIIVM4pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGa +JI7ZjnHKe7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0vm9q +p/UsQu0yrbYhnr68 +-----END CERTIFICATE----- + +Hellenic Academic and Research Institutions ECC RootCA 2015 +=========================================================== +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzANBgNVBAcTBkF0 +aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9u +cyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj +aCBJbnN0aXR1dGlvbnMgRUNDIFJvb3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEw +MzcxMlowgaoxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmlj +IEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUQwQgYD +VQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIEVDQyBSb290 +Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKgQehLgoRc4vgxEZmGZE4JJS+dQS8KrjVP +dJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJajq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoK +Vlp8aQuqgAkkbH7BRqNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O +BBYEFLQiC4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaeplSTA +GiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7SofTUwJCA3sS61kFyjn +dc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- + +Certplus Root CA G1 +=================== +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgISESBVg+QtPlRWhS2DN7cs3EYRMA0GCSqGSIb3DQEBDQUAMD4xCzAJBgNV +BAYTAkZSMREwDwYDVQQKDAhDZXJ0cGx1czEcMBoGA1UEAwwTQ2VydHBsdXMgUm9vdCBDQSBHMTAe +Fw0xNDA1MjYwMDAwMDBaFw0zODAxMTUwMDAwMDBaMD4xCzAJBgNVBAYTAkZSMREwDwYDVQQKDAhD +ZXJ0cGx1czEcMBoGA1UEAwwTQ2VydHBsdXMgUm9vdCBDQSBHMTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBANpQh7bauKk+nWT6VjOaVj0W5QOVsjQcmm1iBdTYj+eJZJ+622SLZOZ5KmHN +r49aiZFluVj8tANfkT8tEBXgfs+8/H9DZ6itXjYj2JizTfNDnjl8KvzsiNWI7nC9hRYt6kuJPKNx +Qv4c/dMcLRC4hlTqQ7jbxofaqK6AJc96Jh2qkbBIb6613p7Y1/oA/caP0FG7Yn2ksYyy/yARujVj +BYZHYEMzkPZHogNPlk2dT8Hq6pyi/jQu3rfKG3akt62f6ajUeD94/vI4CTYd0hYCyOwqaK/1jpTv +LRN6HkJKHRUxrgwEV/xhc/MxVoYxgKDEEW4wduOU8F8ExKyHcomYxZ3MVwia9Az8fXoFOvpHgDm2 +z4QTd28n6v+WZxcIbekN1iNQMLAVdBM+5S//Ds3EC0pd8NgAM0lm66EYfFkuPSi5YXHLtaW6uOrc +4nBvCGrch2c0798wct3zyT8j/zXhviEpIDCB5BmlIOklynMxdCm+4kLV87ImZsdo/Rmz5yCTmehd +4F6H50boJZwKKSTUzViGUkAksnsPmBIgJPaQbEfIDbsYIC7Z/fyL8inqh3SV4EJQeIQEQWGw9CEj +jy3LKCHyamz0GqbFFLQ3ZU+V/YDI+HLlJWvEYLF7bY5KinPOWftwenMGE9nTdDckQQoRb5fc5+R+ +ob0V8rqHDz1oihYHAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0G +A1UdDgQWBBSowcCbkahDFXxdBie0KlHYlwuBsTAfBgNVHSMEGDAWgBSowcCbkahDFXxdBie0KlHY +lwuBsTANBgkqhkiG9w0BAQ0FAAOCAgEAnFZvAX7RvUz1isbwJh/k4DgYzDLDKTudQSk0YcbX8ACh +66Ryj5QXvBMsdbRX7gp8CXrc1cqh0DQT+Hern+X+2B50ioUHj3/MeXrKls3N/U/7/SMNkPX0XtPG +YX2eEeAC7gkE2Qfdpoq3DIMku4NQkv5gdRE+2J2winq14J2by5BSS7CTKtQ+FjPlnsZlFT5kOwQ/ +2wyPX1wdaR+v8+khjPPvl/aatxm2hHSco1S1cE5j2FddUyGbQJJD+tZ3VTNPZNX70Cxqjm0lpu+F +6ALEUz65noe8zDUa3qHpimOHZR4RKttjd5cUvpoUmRGywO6wT/gUITJDT5+rosuoD6o7BlXGEilX +CNQ314cnrUlZp5GrRHpejXDbl85IULFzk/bwg2D5zfHhMf1bfHEhYxQUqq/F3pN+aLHsIqKqkHWe +tUNy6mSjhEv9DKgma3GX7lZjZuhCVPnHHd/Qj1vfyDBviP4NxDMcU6ij/UgQ8uQKTuEVV/xuZDDC +VRHc6qnNSlSsKWNEz0pAoNZoWRsz+e86i9sgktxChL8Bq4fA1SCC28a5g4VCXA9DO2pJNdWY9BW/ ++mGBDAkgGNLQFwzLSABQ6XaCjGTXOqAHVcweMcDvOrRl++O/QmueD6i9a5jc2NvLi6Td11n0bt3+ +qsOR0C5CB8AMTVPNJLFMWx5R9N/pkvo= +-----END CERTIFICATE----- + +Certplus Root CA G2 +=================== +-----BEGIN CERTIFICATE----- +MIICHDCCAaKgAwIBAgISESDZkc6uo+jF5//pAq/Pc7xVMAoGCCqGSM49BAMDMD4xCzAJBgNVBAYT +AkZSMREwDwYDVQQKDAhDZXJ0cGx1czEcMBoGA1UEAwwTQ2VydHBsdXMgUm9vdCBDQSBHMjAeFw0x +NDA1MjYwMDAwMDBaFw0zODAxMTUwMDAwMDBaMD4xCzAJBgNVBAYTAkZSMREwDwYDVQQKDAhDZXJ0 +cGx1czEcMBoGA1UEAwwTQ2VydHBsdXMgUm9vdCBDQSBHMjB2MBAGByqGSM49AgEGBSuBBAAiA2IA +BM0PW1aC3/BFGtat93nwHcmsltaeTpwftEIRyoa/bfuFo8XlGVzX7qY/aWfYeOKmycTbLXku54uN +Am8xIk0G42ByRZ0OQneezs/lf4WbGOT8zC5y0xaTTsqZY1yhBSpsBqNjMGEwDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNqDYwJ5jtpMxjwjFNiPwyCrKGBZMB8GA1Ud +IwQYMBaAFNqDYwJ5jtpMxjwjFNiPwyCrKGBZMAoGCCqGSM49BAMDA2gAMGUCMHD+sAvZ94OX7PNV +HdTcswYO/jOYnYs5kGuUIe22113WTNchp+e/IQ8rzfcq3IUHnQIxAIYUFuXcsGXCwI4Un78kFmjl +vPl5adytRSv3tjFzzAalU5ORGpOucGpnutee5WEaXw== +-----END CERTIFICATE----- + +OpenTrust Root CA G1 +==================== +-----BEGIN CERTIFICATE----- +MIIFbzCCA1egAwIBAgISESCzkFU5fX82bWTCp59rY45nMA0GCSqGSIb3DQEBCwUAMEAxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlPcGVuVHJ1c3QxHTAbBgNVBAMMFE9wZW5UcnVzdCBSb290IENBIEcx +MB4XDTE0MDUyNjA4NDU1MFoXDTM4MDExNTAwMDAwMFowQDELMAkGA1UEBhMCRlIxEjAQBgNVBAoM +CU9wZW5UcnVzdDEdMBsGA1UEAwwUT3BlblRydXN0IFJvb3QgQ0EgRzEwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQD4eUbalsUwXopxAy1wpLuwxQjczeY1wICkES3d5oeuXT2R0odsN7fa +Yp6bwiTXj/HbpqbfRm9RpnHLPhsxZ2L3EVs0J9V5ToybWL0iEA1cJwzdMOWo010hOHQX/uMftk87 +ay3bfWAfjH1MBcLrARYVmBSO0ZB3Ij/swjm4eTrwSSTilZHcYTSSjFR077F9jAHiOH3BX2pfJLKO +YheteSCtqx234LSWSE9mQxAGFiQD4eCcjsZGT44ameGPuY4zbGneWK2gDqdkVBFpRGZPTBKnjix9 +xNRbxQA0MMHZmf4yzgeEtE7NCv82TWLxp2NX5Ntqp66/K7nJ5rInieV+mhxNaMbBGN4zK1FGSxyO +9z0M+Yo0FMT7MzUj8czxKselu7Cizv5Ta01BG2Yospb6p64KTrk5M0ScdMGTHPjgniQlQ/GbI4Kq +3ywgsNw2TgOzfALU5nsaqocTvz6hdLubDuHAk5/XpGbKuxs74zD0M1mKB3IDVedzagMxbm+WG+Oi +n6+Sx+31QrclTDsTBM8clq8cIqPQqwWyTBIjUtz9GVsnnB47ev1CI9sjgBPwvFEVVJSmdz7QdFG9 +URQIOTfLHzSpMJ1ShC5VkLG631UAC9hWLbFJSXKAqWLXwPYYEQRVzXR7z2FwefR7LFxckvzluFqr +TJOVoSfupb7PcSNCupt2LQIDAQABo2MwYTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUl0YhVyE12jZVx/PxN3DlCPaTKbYwHwYDVR0jBBgwFoAUl0YhVyE12jZVx/Px +N3DlCPaTKbYwDQYJKoZIhvcNAQELBQADggIBAB3dAmB84DWn5ph76kTOZ0BP8pNuZtQ5iSas000E +PLuHIT839HEl2ku6q5aCgZG27dmxpGWX4m9kWaSW7mDKHyP7Rbr/jyTwyqkxf3kfgLMtMrpkZ2Cv +uVnN35pJ06iCsfmYlIrM4LvgBBuZYLFGZdwIorJGnkSI6pN+VxbSFXJfLkur1J1juONI5f6ELlgK +n0Md/rcYkoZDSw6cMoYsYPXpSOqV7XAp8dUv/TW0V8/bhUiZucJvbI/NeJWsZCj9VrDDb8O+WVLh +X4SPgPL0DTatdrOjteFkdjpY3H1PXlZs5VVZV6Xf8YpmMIzUUmI4d7S+KNfKNsSbBfD4Fdvb8e80 +nR14SohWZ25g/4/Ii+GOvUKpMwpZQhISKvqxnUOOBZuZ2mKtVzazHbYNeS2WuOvyDEsMpZTGMKcm +GS3tTAZQMPH9WD25SxdfGbRqhFS0OE85og2WaMMolP3tLR9Ka0OWLpABEPs4poEL0L9109S5zvE/ +bw4cHjdx5RiHdRk/ULlepEU0rbDK5uUTdg8xFKmOLZTW1YVNcxVPS/KyPu1svf0OnWZzsD2097+o +4BGkxK51CUpjAEggpsadCwmKtODmzj7HPiY46SvepghJAwSQiumPv+i2tCqjI40cHLI5kqiPAlxA +OXXUc0ECd97N4EOH1uS6SsNsEn/+KuYj1oxx +-----END CERTIFICATE----- + +OpenTrust Root CA G2 +==================== +-----BEGIN CERTIFICATE----- +MIIFbzCCA1egAwIBAgISESChaRu/vbm9UpaPI+hIvyYRMA0GCSqGSIb3DQEBDQUAMEAxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlPcGVuVHJ1c3QxHTAbBgNVBAMMFE9wZW5UcnVzdCBSb290IENBIEcy +MB4XDTE0MDUyNjAwMDAwMFoXDTM4MDExNTAwMDAwMFowQDELMAkGA1UEBhMCRlIxEjAQBgNVBAoM +CU9wZW5UcnVzdDEdMBsGA1UEAwwUT3BlblRydXN0IFJvb3QgQ0EgRzIwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQDMtlelM5QQgTJT32F+D3Y5z1zCU3UdSXqWON2ic2rxb95eolq5cSG+ +Ntmh/LzubKh8NBpxGuga2F8ORAbtp+Dz0mEL4DKiltE48MLaARf85KxP6O6JHnSrT78eCbY2albz +4e6WiWYkBuTNQjpK3eCasMSCRbP+yatcfD7J6xcvDH1urqWPyKwlCm/61UWY0jUJ9gNDlP7ZvyCV +eYCYitmJNbtRG6Q3ffyZO6v/v6wNj0OxmXsWEH4db0fEFY8ElggGQgT4hNYdvJGmQr5J1WqIP7wt +UdGejeBSzFfdNTVY27SPJIjki9/ca1TSgSuyzpJLHB9G+h3Ykst2Z7UJmQnlrBcUVXDGPKBWCgOz +3GIZ38i1MH/1PCZ1Eb3XG7OHngevZXHloM8apwkQHZOJZlvoPGIytbU6bumFAYueQ4xncyhZW+vj +3CzMpSZyYhK05pyDRPZRpOLAeiRXyg6lPzq1O4vldu5w5pLeFlwoW5cZJ5L+epJUzpM5ChaHvGOz +9bGTXOBut9Dq+WIyiET7vycotjCVXRIouZW+j1MY5aIYFuJWpLIsEPUdN6b4t/bQWVyJ98LVtZR0 +0dX+G7bw5tYee9I8y6jj9RjzIR9u701oBnstXW5DiabA+aC/gh7PU3+06yzbXfZqfUAkBXKJOAGT +y3HCOV0GEfZvePg3DTmEJwIDAQABo2MwYTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUajn6QiL35okATV59M4PLuG53hq8wHwYDVR0jBBgwFoAUajn6QiL35okATV59 +M4PLuG53hq8wDQYJKoZIhvcNAQENBQADggIBAJjLq0A85TMCl38th6aP1F5Kr7ge57tx+4BkJamz +Gj5oXScmp7oq4fBXgwpkTx4idBvpkF/wrM//T2h6OKQQbA2xx6R3gBi2oihEdqc0nXGEL8pZ0keI +mUEiyTCYYW49qKgFbdEfwFFEVn8nNQLdXpgKQuswv42hm1GqO+qTRmTFAHneIWv2V6CG1wZy7HBG +S4tz3aAhdT7cHcCP009zHIXZ/n9iyJVvttN7jLpTwm+bREx50B1ws9efAvSyB7DH5fitIw6mVskp +EndI2S9G/Tvw/HRwkqWOOAgfZDC2t0v7NqwQjqBSM2OdAzVWxWm9xiNaJ5T2pBL4LTM8oValX9YZ +6e18CL13zSdkzJTaTkZQh+D5wVOAHrut+0dSixv9ovneDiK3PTNZbNTe9ZUGMg1RGUFcPk8G97kr +gCf2o6p6fAbhQ8MTOWIaNr3gKC6UAuQpLmBVrkA9sHSSXvAgZJY/X0VdiLWK2gKgW0VU3jg9CcCo +SmVGFvyqv1ROTVu+OEO3KMqLM6oaJbolXCkvW0pujOotnCr2BXbgd5eAiN1nE28daCSLT7d0geX0 +YJ96Vdc+N9oWaz53rK4YcJUIeSkDiv7BO7M/Gg+kO14fWKGVyasvc0rQLW6aWQ9VGHgtPFGml4vm +u7JwqkwR3v98KzfUetF3NI/n+UL3PIEMS1IK +-----END CERTIFICATE----- + +OpenTrust Root CA G3 +==================== +-----BEGIN CERTIFICATE----- +MIICITCCAaagAwIBAgISESDm+Ez8JLC+BUCs2oMbNGA/MAoGCCqGSM49BAMDMEAxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlPcGVuVHJ1c3QxHTAbBgNVBAMMFE9wZW5UcnVzdCBSb290IENBIEczMB4X +DTE0MDUyNjAwMDAwMFoXDTM4MDExNTAwMDAwMFowQDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCU9w +ZW5UcnVzdDEdMBsGA1UEAwwUT3BlblRydXN0IFJvb3QgQ0EgRzMwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAARK7liuTcpm3gY6oxH84Bjwbhy6LTAMidnW7ptzg6kjFYwvWYpa3RTqnVkrQ7cG7DK2uu5B +ta1doYXM6h0UZqNnfkbilPPntlahFVmhTzeXuSIevRHr9LIfXsMUmuXZl5mjYzBhMA4GA1UdDwEB +/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRHd8MUi2I5DMlv4VBN0BBY3JWIbTAf +BgNVHSMEGDAWgBRHd8MUi2I5DMlv4VBN0BBY3JWIbTAKBggqhkjOPQQDAwNpADBmAjEAj6jcnboM +BBf6Fek9LykBl7+BFjNAk2z8+e2AcG+qj9uEwov1NcoG3GRvaBbhj5G5AjEA2Euly8LQCGzpGPta +3U1fJAuwACEl74+nBCZx4nxp5V2a+EEfOzmTk51V6s2N8fvB +-----END CERTIFICATE----- diff --git a/inc/payment/paypal_ipn/example_usage.php b/inc/payment/paypal_ipn/example_usage.php new file mode 100644 index 0000000..a5ffcce --- /dev/null +++ b/inc/payment/paypal_ipn/example_usage.php @@ -0,0 +1,21 @@ +useSandbox(); +$verified = $ipn->verifyIPN(); +if ($verified) { + /* + * Process IPN + * A list of variables is available here: + * https://developer.paypal.com/webapps/developer/docs/classic/ipn/integration-guide/IPNandPDTVariables/ + */ +} + +// Reply with an empty 200 response to indicate to paypal the IPN was received correctly. +header("HTTP/1.1 200 OK"); diff --git a/inc/payment/paypal_ipn/example_usage_advanced.php b/inc/payment/paypal_ipn/example_usage_advanced.php new file mode 100644 index 0000000..b8777d8 --- /dev/null +++ b/inc/payment/paypal_ipn/example_usage_advanced.php @@ -0,0 +1,121 @@ +"; +$from_email_address = "My Name "; + +// Set this to true to save a log file: +$save_log_file = true; +$log_file_dir = __DIR__ . "/logs"; + +// Here is some information on how to configure sendmail: +// http://php.net/manual/en/function.mail.php#118210 + + + +require('PaypalIPN.php'); +use PaypalIPN; +$ipn = new PaypalIPN(); +if ($enable_sandbox) { + $ipn->useSandbox(); +} +$verified = $ipn->verifyIPN(); + +$data_text = ""; +foreach ($_POST as $key => $value) { + $data_text .= $key . " = " . $value . "\r\n"; +} + +$test_text = ""; +if ($_POST["test_ipn"] == 1) { + $test_text = "Test "; +} + +// Check the receiver email to see if it matches your list of paypal email addresses +$receiver_email_found = false; +foreach ($my_email_addresses as $a) { + if (strtolower($_POST["receiver_email"]) == strtolower($a)) { + $receiver_email_found = true; + break; + } +} + +date_default_timezone_set("America/Los_Angeles"); +list($year, $month, $day, $hour, $minute, $second, $timezone) = explode(":", date("Y:m:d:H:i:s:T")); +$date = $year . "-" . $month . "-" . $day; +$timestamp = $date . " " . $hour . ":" . $minute . ":" . $second . " " . $timezone; +$dated_log_file_dir = $log_file_dir . "/" . $year . "/" . $month; + +$paypal_ipn_status = "VERIFICATION FAILED"; +if ($verified) { + $paypal_ipn_status = "RECEIVER EMAIL MISMATCH"; + if ($receiver_email_found) { + $paypal_ipn_status = "Completed Successfully"; + + + // Process IPN + // A list of variables are available here: + // https://developer.paypal.com/webapps/developer/docs/classic/ipn/integration-guide/IPNandPDTVariables/ + + // This is an example for sending an automated email to the customer when they purchases an item for a specific amount: + if ($_POST["item_name"] == "Example Item" && $_POST["mc_gross"] == 49.99 && $_POST["mc_currency"] == "USD" && $_POST["payment_status"] == "Completed") { + $email_to = $_POST["first_name"] . " " . $_POST["last_name"] . " <" . $_POST["payer_email"] . ">"; + $email_subject = $test_text . "Completed order for: " . $_POST["item_name"]; + $email_body = "Thank you for purchasing " . $_POST["item_name"] . "." . "\r\n" . "\r\n" . "This is an example email only." . "\r\n" . "\r\n" . "Thank you."; + mail($email_to, $email_subject, $email_body, "From: " . $from_email_address); + } + + + } +} elseif ($enable_sandbox) { + if ($_POST["test_ipn"] != 1) { + $paypal_ipn_status = "RECEIVED FROM LIVE WHILE SANDBOXED"; + } +} elseif ($_POST["test_ipn"] == 1) { + $paypal_ipn_status = "RECEIVED FROM SANDBOX WHILE LIVE"; +} + +if ($save_log_file) { + // Create log file directory + if (!is_dir($dated_log_file_dir)) { + if (!file_exists($dated_log_file_dir)) { + mkdir($dated_log_file_dir, 0777, true); + if (!is_dir($dated_log_file_dir)) { + $save_log_file = false; + } + } else { + $save_log_file = false; + } + } + // Restrict web access to files in the log file directory + $htaccess_body = "RewriteEngine On" . "\r\n" . "RewriteRule .* - [L,R=404]"; + if ($save_log_file && (!is_file($log_file_dir . "/.htaccess") || file_get_contents($log_file_dir . "/.htaccess") !== $htaccess_body)) { + if (!is_dir($log_file_dir . "/.htaccess")) { + file_put_contents($log_file_dir . "/.htaccess", $htaccess_body); + if (!is_file($log_file_dir . "/.htaccess") || file_get_contents($log_file_dir . "/.htaccess") !== $htaccess_body) { + $save_log_file = false; + } + } else { + $save_log_file = false; + } + } + if ($save_log_file) { + // Save data to text file + file_put_contents($dated_log_file_dir . "/" . $test_text . "paypal_ipn_" . $date . ".txt", "paypal_ipn_status = " . $paypal_ipn_status . "\r\n" . "paypal_ipn_date = " . $timestamp . "\r\n" . $data_text . "\r\n", FILE_APPEND); + } +} + +if ($send_confirmation_email) { + // Send confirmation email + mail($confirmation_email_address, $test_text . "PayPal IPN : " . $paypal_ipn_status, "paypal_ipn_status = " . $paypal_ipn_status . "\r\n" . "paypal_ipn_date = " . $timestamp . "\r\n" . $data_text, "From: " . $from_email_address); +} + +// Reply with an empty 200 response to indicate to paypal the IPN was received correctly +header("HTTP/1.1 200 OK"); diff --git a/inc/payment/webmoney.inc.php b/inc/payment/webmoney.inc.php new file mode 100644 index 0000000..6e6a687 --- /dev/null +++ b/inc/payment/webmoney.inc.php @@ -0,0 +1,344 @@ + + License: GNU Public License +*/ + + +define('WM_GET', 0); +define('WM_POST', 1); +define('WM_LINK', 2); + +define('WM_RES_OK', 0); +define('WM_RES_FAIL', 1); +define('WM_RES_NOPARAM', 2); + +define('WM_ALL_SUCCESS', 0); +define('WM_ALL_FAIL', 1); +define('WM_SUCCESS_FAIL', 2); + +define('WM_RF_ERR1', 'The required parameter payee_purse is missing or incorrect'); +define('WM_RF_ERR2', 'The required parameter payment_amount is missing or incorrect'); +define('WM_RF_ERR3', 'The optional parameter payment_no is incorrect'); +define('WM_RF_ERR4', 'The optional parameter payment_desc is incorrect'); +define('WM_RF_ERR5', 'The optional parameter sim_mode is incorrect'); +define('WM_RF_ERR6', 'The optional parameter result_url is incorrect'); +define('WM_RF_ERR7', 'The optional parameter success_url is incorrect'); +define('WM_RF_ERR8', 'The optional parameter success_method is incorrect'); +define('WM_RF_ERR9', 'The optional parameter fail_url is incorrect'); +define('WM_RF_ERR10', 'The optional parameter fail_method is incorrect'); +define('WM_RF_ERR11', 'The optional parameter payment_creditdays is incorrect'); + +define('WM_PRF_REALMODE', 0); +define('WM_PRF_TESTMODE', 1); + + +class WM_Request +{ + + var $payee_purse = ''; + var $payment_amount = 0.0; + var $payment_no = -1; + var $payment_desc = ''; + var $sim_mode = -1; + var $result_url = ''; + var $success_url = ''; + var $success_method = -1; + var $fail_url = ''; + var $fail_method = -1; + var $payment_creditdays = -1; + var $extra_fields = array(); + + var $action = 'https://merchant.wmtransfer.com/lmi/payment.asp'; + var $btn_label = 'Pay Webmoney'; + + function SetForm($output = true) + { + + $frm = '
    ' . "\n"; + + $tmp = $this->payee_purse; + if (!ereg('^[ZREUD][0-9]{12}$', $tmp)) + { + trigger_error(WM_RF_ERR1, E_USER_ERROR); + } + $frm .= '' . "\n"; + + $tmp = $this->payment_amount; + if (!is_numeric($tmp) || $tmp <= 0.0) + { + trigger_error(WM_RF_ERR2, E_USER_ERROR); + } + $frm .= '' . "\n"; + + if ($this->payment_no != -1) + { + $tmp = $this->payment_no; + if (!is_int($tmp) || $tmp < 0 || $tmp > 2147483647) + { + trigger_error(WM_RF_ERR3, E_USER_ERROR); + } + $frm .= '' . "\n"; + } + + if (!empty($this->payment_desc)) + { + $tmp = trim($this->payment_desc); + if (strlen($tmp) > 255) + { + trigger_error(WM_RF_ERR4, E_USER_ERROR); + } + $frm .= '' . "\n"; + } + + if ($this->sim_mode != -1) + { + $tmp = $this->sim_mode; + if (!is_int($tmp)) + { + trigger_error(WM_RF_ERR5, E_USER_ERROR); + } + $frm .= '' . "\n"; + } + + if (!empty($this->result_url)) + { + $tmp = $this->result_url; + if (substr($tmp, 0, 7) != 'http://' && substr($tmp, 0, 8) != 'https://' && substr($tmp, 0, 7) != 'mailto:') + { + trigger_error(WM_RF_ERR6, E_USER_ERROR); + } + $frm .= '' . "\n"; + } + + if (!empty($this->success_url)) + { + $tmp = $this->success_url; + if (substr($tmp, 0, 7) != 'http://' && substr($tmp, 0, 8) != 'https://') + { + trigger_error(WM_RF_ERR7, E_USER_ERROR); + } + $frm .= '' . "\n"; + } + + if ($this->success_method != -1) + { + $tmp = $this->success_method; + if (!is_int($tmp) || ($tmp != 0 && $tmp != 1 && $tmp != 2)) + { + trigger_error(WM_RF_ERR8, E_USER_ERROR); + } + $frm .= '' . "\n"; + } + + if (!empty($this->fail_url)) + { + $tmp = $this->fail_url; + if (substr($tmp, 0, 7) != 'http://' && substr($tmp, 0, 8) != 'https://') + { + trigger_error(WM_RF_ERR9, E_USER_ERROR); + } + $frm .= '' . "\n"; + } + + if ($this->fail_method != -1) + { + $tmp = $this->fail_method; + if (!is_int($tmp) || ($tmp != 0 && $tmp != 1 && $tmp != 2)) + { + trigger_error(WM_RF_ERR10, E_USER_ERROR); + } + $frm .= '' . "\n"; + } + + if ($this->payment_creditdays != -1) + { + $tmp = $this->payment_creditdays; + if (!is_int($tmp) || $tmp <= 0) + { + trigger_error(WM_RF_ERR11, E_USER_ERROR); + } + $frm .= '' . "\n"; + } + + foreach ($this->extra_fields as $name=>$value) + { + $frm .= '' . "\n"; + } + + $frm .= '' . "\n"; + + $frm .= '
    ' . "\n"; + + if ($output) + { + echo $frm; + } + + return $frm; + } + +} + + +class WM_Prerequest +{ + + var $payee_purse = ''; + var $payment_amount = ''; + var $payment_no = ''; + var $mode = ''; + var $payer_wm = ''; + var $paymer_number = ''; + var $paymer_email = ''; + var $telepat_phonenumber = ''; + var $telepat_orderid = ''; + var $payment_creditdays = ''; + var $sys_trans_no = ''; + var $sys_trans_date = ''; + var $extra_fields = array(); + + function GetForm() + { + if (!isset($_POST['LMI_PREREQUEST']) || $_POST['LMI_PREREQUEST'] != 1) + { + return WM_RES_NOPARAM; + } + $this->payee_purse = @$_POST['LMI_PAYEE_PURSE']; + $this->payment_amount = @$_POST['LMI_PAYMENT_AMOUNT']; + $this->payment_no = @$_POST['LMI_PAYMENT_NO']; + $this->mode = @$_POST['LMI_MODE']; + $this->payer_wm = @$_POST['LMI_PAYER_WM']; + $this->paymer_number = @$_POST['LMI_PAYMER_NUMBER']; + $this->paymer_email = @$_POST['LMI_PAYMER_EMAIL']; + $this->telepat_phonenumber = @$_POST['LMI_TELEPAT_PHONENUMBER']; + $this->telepat_orderid = @$_POST['LMI_TELEPAT_ORDERID']; + $this->payment_creditdays = @$_POST['LMI_PAYMENT_CREDITDAYS']; + $this->sys_trans_no = @$vars['LMI_SYS_TRANS_NO']; + $this->sys_trans_date = @$vars['LMI_SYS_TRANS_DATE']; + foreach ($_POST as $field=>$value) + { + if (substr($field, 0, 4) != 'LMI_') + { + $this->extra_fields[$field] = $value; + } + } + return WM_RES_OK; + } + +} + + +class WM_Notification +{ + + var $payee_purse = ''; + var $payment_amount = ''; + var $payment_no = ''; + var $mode = ''; + var $sys_invs_no = ''; + var $sys_trans_no = ''; + var $payer_purse = ''; + var $payer_wm = ''; + var $paymer_number = ''; + var $paymer_email = ''; + var $telepat_phonenumber = ''; + var $telepat_orderid = ''; + var $payment_creditdays = ''; + var $hash = ''; + var $sys_trans_date = ''; + var $secret_key = ''; + var $extra_fields = array(); + + function GetForm() + { + if (!isset($_POST['LMI_PAYMENT_NO']) || + (isset($_POST['LMI_PREREQUEST']) && $_POST['LMI_PREREQUEST'] == 1)) + { + return WM_RES_NOPARAM; + } + $this->payee_purse = @$_POST['LMI_PAYEE_PURSE']; + $this->payment_amount = @$_POST['LMI_PAYMENT_AMOUNT']; + $this->payment_no = @$_POST['LMI_PAYMENT_NO']; + $this->mode = @$_POST['LMI_MODE']; + $this->sys_invs_no = @$_POST['LMI_SYS_INVS_NO']; + $this->sys_trans_no = @$_POST['LMI_SYS_TRANS_NO']; + $this->payer_purse = @$_POST['LMI_PAYER_PURSE']; + $this->payer_wm = @$_POST['LMI_PAYER_WM']; + $this->paymer_number = @$_POST['LMI_PAYMER_NUMBER']; + $this->paymer_email = @$_POST['LMI_PAYMER_EMAIL']; + $this->telepat_phonenumber = @$_POST['LMI_TELEPAT_PHONENUMBER']; + $this->telepat_orderid = @$_POST['LMI_TELEPAT_ORDERID']; + $this->payment_creditdays = @$_POST['LMI_PAYMENT_CREDITDAYS']; + $this->hash = @$_POST['LMI_HASH']; + $this->sys_trans_date = @$_POST['LMI_SYS_TRANS_DATE']; + $this->secret_key = @$_POST['LMI_SECRET_KEY']; + foreach ($_POST as $field=>$value) + { + if (substr($field, 0, 4) != 'LMI_') + { + $this->extra_fields[$field] = $value; + } + } + } + + function CheckMD5($payee_purse, $payment_amount, $payment_no, $secret_key) + { + $key = $payee_purse . $payment_amount . $payment_no; + $key .= $this->mode . $this->sys_invs_no . $this->sys_trans_no; + $key .= $this->sys_trans_date . $secret_key . $this->payer_purse; + $key .= $this->payer_wm; + // we use strtoupper() because of the differences between PHP and ASP... + if ($this->hash == strtoupper(md5($key))) + { + return WM_RES_OK; + } + return WM_RES_FAIL; + } + +} + + +class WM_Result +{ + + var $payment_no = ''; + var $sys_invs_no = ''; + var $sys_trans_no = ''; + var $sys_trans_date = ''; + var $extra_fields = array(); + + var $method = WM_POST; + + function GetForm() + { + $vars = $_POST; + if ($this->method == WM_GET) + { + $vars = $_GET; + } + if (!isset($vars['LMI_PAYMENT_NO'])) + { + return WM_RES_NOPARAM; + } + $this->payment_no = @$vars['LMI_PAYMENT_NO']; + $this->sys_invs_no = @$vars['LMI_SYS_INVS_NO']; + $this->sys_trans_no = @$vars['LMI_SYS_TRANS_NO']; + $this->sys_trans_date = @$vars['LMI_SYS_TRANS_DATE']; + foreach ($vars as $field=>$value) + { + if (substr($field, 0, 4) != 'LMI_') + { + $this->extra_fields[$field] = $value; + } + } + return WM_RES_OK; + } + +} + + +?> \ No newline at end of file diff --git a/inc/phpmailer/PHPMailerAutoload.php b/inc/phpmailer/PHPMailerAutoload.php new file mode 100644 index 0000000..eaa2e30 --- /dev/null +++ b/inc/phpmailer/PHPMailerAutoload.php @@ -0,0 +1,49 @@ + + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + * @copyright 2012 - 2014 Marcus Bointon + * @copyright 2010 - 2012 Jim Jagielski + * @copyright 2004 - 2009 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License + * @note This program is distributed in the hope that it will be useful - WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + */ + +/** + * PHPMailer SPL autoloader. + * @param string $classname The name of the class to load + */ +function PHPMailerAutoload($classname) +{ + //Can't use __DIR__ as it's only in PHP 5.3+ + $filename = dirname(__FILE__).DIRECTORY_SEPARATOR.'class.'.strtolower($classname).'.php'; + if (is_readable($filename)) { + require $filename; + } +} + +if (version_compare(PHP_VERSION, '5.1.2', '>=')) { + //SPL autoloading was introduced in PHP 5.1.2 + if (version_compare(PHP_VERSION, '5.3.0', '>=')) { + spl_autoload_register('PHPMailerAutoload', true, true); + } else { + spl_autoload_register('PHPMailerAutoload'); + } +} else { + /** + * Fall back to traditional autoload for old PHP versions + * @param string $classname The name of the class to load + */ + function __autoload($classname) + { + PHPMailerAutoload($classname); + } +} diff --git a/inc/phpmailer/class.phpmailer.php b/inc/phpmailer/class.phpmailer.php new file mode 100644 index 0000000..97ed100 --- /dev/null +++ b/inc/phpmailer/class.phpmailer.php @@ -0,0 +1,3472 @@ + + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + * @copyright 2012 - 2014 Marcus Bointon + * @copyright 2010 - 2012 Jim Jagielski + * @copyright 2004 - 2009 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License + * @note This program is distributed in the hope that it will be useful - WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + */ + +/** + * PHPMailer - PHP email creation and transport class. + * @package PHPMailer + * @author Marcus Bointon (Synchro/coolbru) + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + */ +class PHPMailer +{ + /** + * The PHPMailer Version number. + * @type string + */ + public $Version = '5.2.9'; + + /** + * Email priority. + * Options: 1 = High, 3 = Normal, 5 = low. + * @type integer + */ + public $Priority = 3; + + /** + * The character set of the message. + * @type string + */ + public $CharSet = 'iso-8859-1'; + + /** + * The MIME Content-type of the message. + * @type string + */ + public $ContentType = 'text/plain'; + + /** + * The message encoding. + * Options: "8bit", "7bit", "binary", "base64", and "quoted-printable". + * @type string + */ + public $Encoding = '8bit'; + + /** + * Holds the most recent mailer error message. + * @type string + */ + public $ErrorInfo = ''; + + /** + * The From email address for the message. + * @type string + */ + public $From = 'root@localhost'; + + /** + * The From name of the message. + * @type string + */ + public $FromName = 'Root User'; + + /** + * The Sender email (Return-Path) of the message. + * If not empty, will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode. + * @type string + */ + public $Sender = ''; + + /** + * The Return-Path of the message. + * If empty, it will be set to either From or Sender. + * @type string + * @deprecated Email senders should never set a return-path header; + * it's the receiver's job (RFC5321 section 4.4), so this no longer does anything. + * @link https://tools.ietf.org/html/rfc5321#section-4.4 RFC5321 reference + */ + public $ReturnPath = ''; + + /** + * The Subject of the message. + * @type string + */ + public $Subject = ''; + + /** + * An HTML or plain text message body. + * If HTML then call isHTML(true). + * @type string + */ + public $Body = ''; + + /** + * The plain-text message body. + * This body can be read by mail clients that do not have HTML email + * capability such as mutt & Eudora. + * Clients that can read HTML will view the normal Body. + * @type string + */ + public $AltBody = ''; + + /** + * An iCal message part body. + * Only supported in simple alt or alt_inline message types + * To generate iCal events, use the bundled extras/EasyPeasyICS.php class or iCalcreator + * @link http://sprain.ch/blog/downloads/php-class-easypeasyics-create-ical-files-with-php/ + * @link http://kigkonsult.se/iCalcreator/ + * @type string + */ + public $Ical = ''; + + /** + * The complete compiled MIME message body. + * @access protected + * @type string + */ + protected $MIMEBody = ''; + + /** + * The complete compiled MIME message headers. + * @type string + * @access protected + */ + protected $MIMEHeader = ''; + + /** + * Extra headers that createHeader() doesn't fold in. + * @type string + * @access protected + */ + protected $mailHeader = ''; + + /** + * Word-wrap the message body to this number of chars. + * Set to 0 to not wrap. A useful value here is 78, for RFC2822 section 2.1.1 compliance. + * @type integer + */ + public $WordWrap = 0; + + /** + * Which method to use to send mail. + * Options: "mail", "sendmail", or "smtp". + * @type string + */ + public $Mailer = 'mail'; + + /** + * The path to the sendmail program. + * @type string + */ + public $Sendmail = '/usr/sbin/sendmail'; + + /** + * Whether mail() uses a fully sendmail-compatible MTA. + * One which supports sendmail's "-oi -f" options. + * @type boolean + */ + public $UseSendmailOptions = true; + + /** + * Path to PHPMailer plugins. + * Useful if the SMTP class is not in the PHP include path. + * @type string + * @deprecated Should not be needed now there is an autoloader. + */ + public $PluginDir = ''; + + /** + * The email address that a reading confirmation should be sent to. + * @type string + */ + public $ConfirmReadingTo = ''; + + /** + * The hostname to use in Message-Id and Received headers + * and as default HELO string. + * If empty, the value returned + * by SERVER_NAME is used or 'localhost.localdomain'. + * @type string + */ + public $Hostname = ''; + + /** + * An ID to be used in the Message-Id header. + * If empty, a unique id will be generated. + * @type string + */ + public $MessageID = ''; + + /** + * The message Date to be used in the Date header. + * If empty, the current date will be added. + * @type string + */ + public $MessageDate = ''; + + /** + * SMTP hosts. + * Either a single hostname or multiple semicolon-delimited hostnames. + * You can also specify a different port + * for each host by using this format: [hostname:port] + * (e.g. "smtp1.example.com:25;smtp2.example.com"). + * You can also specify encryption type, for example: + * (e.g. "tls://smtp1.example.com:587;ssl://smtp2.example.com:465"). + * Hosts will be tried in order. + * @type string + */ + public $Host = 'localhost'; + + /** + * The default SMTP server port. + * @type integer + * @TODO Why is this needed when the SMTP class takes care of it? + */ + public $Port = 25; + + /** + * The SMTP HELO of the message. + * Default is $Hostname. + * @type string + * @see PHPMailer::$Hostname + */ + public $Helo = ''; + + /** + * The secure connection prefix. + * Options: "", "ssl" or "tls" + * @type string + */ + public $SMTPSecure = ''; + + /** + * Whether to use SMTP authentication. + * Uses the Username and Password properties. + * @type boolean + * @see PHPMailer::$Username + * @see PHPMailer::$Password + */ + public $SMTPAuth = false; + + /** + * SMTP username. + * @type string + */ + public $Username = ''; + + /** + * SMTP password. + * @type string + */ + public $Password = ''; + + /** + * SMTP auth type. + * Options are LOGIN (default), PLAIN, NTLM, CRAM-MD5 + * @type string + */ + public $AuthType = ''; + + /** + * SMTP realm. + * Used for NTLM auth + * @type string + */ + public $Realm = ''; + + /** + * SMTP workstation. + * Used for NTLM auth + * @type string + */ + public $Workstation = ''; + + /** + * The SMTP server timeout in seconds. + * Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2 + * @type integer + */ + public $Timeout = 300; + + /** + * SMTP class debug output mode. + * Debug output level. + * Options: + * * `0` No output + * * `1` Commands + * * `2` Data and commands + * * `3` As 2 plus connection status + * * `4` Low-level data output + * @type integer + * @see SMTP::$do_debug + */ + public $SMTPDebug = 0; + + /** + * How to handle debug output. + * Options: + * * `echo` Output plain-text as-is, appropriate for CLI + * * `html` Output escaped, line breaks converted to `
    `, appropriate for browser output + * * `error_log` Output to error log as configured in php.ini + * + * Alternatively, you can provide a callable expecting two params: a message string and the debug level: + * + * $mail->Debugoutput = function($str, $level) {echo "debug level $level; message: $str";}; + * + * @type string|callable + * @see SMTP::$Debugoutput + */ + public $Debugoutput = 'echo'; + + /** + * Whether to keep SMTP connection open after each message. + * If this is set to true then to close the connection + * requires an explicit call to smtpClose(). + * @type boolean + */ + public $SMTPKeepAlive = false; + + /** + * Whether to split multiple to addresses into multiple messages + * or send them all in one message. + * @type boolean + */ + public $SingleTo = false; + + /** + * Storage for addresses when SingleTo is enabled. + * @type array + * @TODO This should really not be public + */ + public $SingleToArray = array(); + + /** + * Whether to generate VERP addresses on send. + * Only applicable when sending via SMTP. + * @link http://en.wikipedia.org/wiki/Variable_envelope_return_path + * @link http://www.postfix.org/VERP_README.html Postfix VERP info + * @type boolean + */ + public $do_verp = false; + + /** + * Whether to allow sending messages with an empty body. + * @type boolean + */ + public $AllowEmpty = false; + + /** + * The default line ending. + * @note The default remains "\n". We force CRLF where we know + * it must be used via self::CRLF. + * @type string + */ + public $LE = "\n"; + + /** + * DKIM selector. + * @type string + */ + public $DKIM_selector = ''; + + /** + * DKIM Identity. + * Usually the email address used as the source of the email + * @type string + */ + public $DKIM_identity = ''; + + /** + * DKIM passphrase. + * Used if your key is encrypted. + * @type string + */ + public $DKIM_passphrase = ''; + + /** + * DKIM signing domain name. + * @example 'example.com' + * @type string + */ + public $DKIM_domain = ''; + + /** + * DKIM private key file path. + * @type string + */ + public $DKIM_private = ''; + + /** + * Callback Action function name. + * + * The function that handles the result of the send email action. + * It is called out by send() for each email sent. + * + * Value can be any php callable: http://www.php.net/is_callable + * + * Parameters: + * boolean $result result of the send action + * string $to email address of the recipient + * string $cc cc email addresses + * string $bcc bcc email addresses + * string $subject the subject + * string $body the email body + * string $from email address of sender + * @type string + */ + public $action_function = ''; + + /** + * What to use in the X-Mailer header. + * Options: null for default, whitespace for none, or a string to use + * @type string + */ + public $XMailer = ''; + + /** + * An instance of the SMTP sender class. + * @type SMTP + * @access protected + */ + protected $smtp = null; + + /** + * The array of 'to' addresses. + * @type array + * @access protected + */ + protected $to = array(); + + /** + * The array of 'cc' addresses. + * @type array + * @access protected + */ + protected $cc = array(); + + /** + * The array of 'bcc' addresses. + * @type array + * @access protected + */ + protected $bcc = array(); + + /** + * The array of reply-to names and addresses. + * @type array + * @access protected + */ + protected $ReplyTo = array(); + + /** + * An array of all kinds of addresses. + * Includes all of $to, $cc, $bcc, $replyto + * @type array + * @access protected + */ + protected $all_recipients = array(); + + /** + * The array of attachments. + * @type array + * @access protected + */ + protected $attachment = array(); + + /** + * The array of custom headers. + * @type array + * @access protected + */ + protected $CustomHeader = array(); + + /** + * The most recent Message-ID (including angular brackets). + * @type string + * @access protected + */ + protected $lastMessageID = ''; + + /** + * The message's MIME type. + * @type string + * @access protected + */ + protected $message_type = ''; + + /** + * The array of MIME boundary strings. + * @type array + * @access protected + */ + protected $boundary = array(); + + /** + * The array of available languages. + * @type array + * @access protected + */ + protected $language = array(); + + /** + * The number of errors encountered. + * @type integer + * @access protected + */ + protected $error_count = 0; + + /** + * The S/MIME certificate file path. + * @type string + * @access protected + */ + protected $sign_cert_file = ''; + + /** + * The S/MIME key file path. + * @type string + * @access protected + */ + protected $sign_key_file = ''; + + /** + * The S/MIME password for the key. + * Used only if the key is encrypted. + * @type string + * @access protected + */ + protected $sign_key_pass = ''; + + /** + * Whether to throw exceptions for errors. + * @type boolean + * @access protected + */ + protected $exceptions = false; + + /** + * Error severity: message only, continue processing. + */ + const STOP_MESSAGE = 0; + + /** + * Error severity: message, likely ok to continue processing. + */ + const STOP_CONTINUE = 1; + + /** + * Error severity: message, plus full stop, critical error reached. + */ + const STOP_CRITICAL = 2; + + /** + * SMTP RFC standard line ending. + */ + const CRLF = "\r\n"; + + /** + * Constructor. + * @param boolean $exceptions Should we throw external exceptions? + */ + public function __construct($exceptions = false) + { + $this->exceptions = (boolean)$exceptions; + } + + /** + * Destructor. + */ + public function __destruct() + { + if ($this->Mailer == 'smtp') { //close any open SMTP connection nicely + $this->smtpClose(); + } + } + + /** + * Call mail() in a safe_mode-aware fashion. + * Also, unless sendmail_path points to sendmail (or something that + * claims to be sendmail), don't pass params (not a perfect fix, + * but it will do) + * @param string $to To + * @param string $subject Subject + * @param string $body Message Body + * @param string $header Additional Header(s) + * @param string $params Params + * @access private + * @return boolean + */ + private function mailPassthru($to, $subject, $body, $header, $params) + { + //Check overloading of mail function to avoid double-encoding + if (ini_get('mbstring.func_overload') & 1) { + $subject = $this->secureHeader($subject); + } else { + $subject = $this->encodeHeader($this->secureHeader($subject)); + } + if (ini_get('safe_mode') || !($this->UseSendmailOptions)) { + $result = @mail($to, $subject, $body, $header); + } else { + $result = @mail($to, $subject, $body, $header, $params); + } + return $result; + } + + /** + * Output debugging info via user-defined method. + * Only generates output if SMTP debug output is enabled (@see SMTP::$do_debug). + * @see PHPMailer::$Debugoutput + * @see PHPMailer::$SMTPDebug + * @param string $str + */ + protected function edebug($str) + { + if ($this->SMTPDebug <= 0) { + return; + } + //Avoid clash with built-in function names + if (!in_array($this->Debugoutput, array('error_log', 'html', 'echo')) and is_callable($this->Debugoutput)) { + call_user_func($this->Debugoutput, $str, $this->SMTPDebug); + return; + } + switch ($this->Debugoutput) { + case 'error_log': + //Don't output, just log + error_log($str); + break; + case 'html': + //Cleans up output a bit for a better looking, HTML-safe output + echo htmlentities( + preg_replace('/[\r\n]+/', '', $str), + ENT_QUOTES, + 'UTF-8' + ) + . "
    \n"; + break; + case 'echo': + default: + //Normalize line breaks + $str = preg_replace('/(\r\n|\r|\n)/ms', "\n", $str); + echo gmdate('Y-m-d H:i:s') . "\t" . str_replace( + "\n", + "\n \t ", + trim($str) + ) . "\n"; + } + } + + /** + * Sets message type to HTML or plain. + * @param boolean $isHtml True for HTML mode. + * @return void + */ + public function isHTML($isHtml = true) + { + if ($isHtml) { + $this->ContentType = 'text/html'; + } else { + $this->ContentType = 'text/plain'; + } + } + + /** + * Send messages using SMTP. + * @return void + */ + public function isSMTP() + { + $this->Mailer = 'smtp'; + } + + /** + * Send messages using PHP's mail() function. + * @return void + */ + public function isMail() + { + $this->Mailer = 'mail'; + } + + /** + * Send messages using $Sendmail. + * @return void + */ + public function isSendmail() + { + $ini_sendmail_path = ini_get('sendmail_path'); + + if (!stristr($ini_sendmail_path, 'sendmail')) { + $this->Sendmail = '/usr/sbin/sendmail'; + } else { + $this->Sendmail = $ini_sendmail_path; + } + $this->Mailer = 'sendmail'; + } + + /** + * Send messages using qmail. + * @return void + */ + public function isQmail() + { + $ini_sendmail_path = ini_get('sendmail_path'); + + if (!stristr($ini_sendmail_path, 'qmail')) { + $this->Sendmail = '/var/qmail/bin/qmail-inject'; + } else { + $this->Sendmail = $ini_sendmail_path; + } + $this->Mailer = 'qmail'; + } + + /** + * Add a "To" address. + * @param string $address + * @param string $name + * @return boolean true on success, false if address already used + */ + public function addAddress($address, $name = '') + { + return $this->addAnAddress('to', $address, $name); + } + + /** + * Add a "CC" address. + * @note: This function works with the SMTP mailer on win32, not with the "mail" mailer. + * @param string $address + * @param string $name + * @return boolean true on success, false if address already used + */ + public function addCC($address, $name = '') + { + return $this->addAnAddress('cc', $address, $name); + } + + /** + * Add a "BCC" address. + * @note: This function works with the SMTP mailer on win32, not with the "mail" mailer. + * @param string $address + * @param string $name + * @return boolean true on success, false if address already used + */ + public function addBCC($address, $name = '') + { + return $this->addAnAddress('bcc', $address, $name); + } + + /** + * Add a "Reply-to" address. + * @param string $address + * @param string $name + * @return boolean + */ + public function addReplyTo($address, $name = '') + { + return $this->addAnAddress('Reply-To', $address, $name); + } + + /** + * Add an address to one of the recipient arrays. + * Addresses that have been added already return false, but do not throw exceptions + * @param string $kind One of 'to', 'cc', 'bcc', 'ReplyTo' + * @param string $address The email address to send to + * @param string $name + * @throws phpmailerException + * @return boolean true on success, false if address already used or invalid in some way + * @access protected + */ + protected function addAnAddress($kind, $address, $name = '') + { + if (!preg_match('/^(to|cc|bcc|Reply-To)$/', $kind)) { + $this->setError($this->lang('Invalid recipient array') . ': ' . $kind); + $this->edebug($this->lang('Invalid recipient array') . ': ' . $kind); + if ($this->exceptions) { + throw new phpmailerException('Invalid recipient array: ' . $kind); + } + return false; + } + $address = trim($address); + $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim + if (!$this->validateAddress($address)) { + $this->setError($this->lang('invalid_address') . ': ' . $address); + $this->edebug($this->lang('invalid_address') . ': ' . $address); + if ($this->exceptions) { + throw new phpmailerException($this->lang('invalid_address') . ': ' . $address); + } + return false; + } + if ($kind != 'Reply-To') { + if (!isset($this->all_recipients[strtolower($address)])) { + array_push($this->$kind, array($address, $name)); + $this->all_recipients[strtolower($address)] = true; + return true; + } + } else { + if (!array_key_exists(strtolower($address), $this->ReplyTo)) { + $this->ReplyTo[strtolower($address)] = array($address, $name); + return true; + } + } + return false; + } + + /** + * Set the From and FromName properties. + * @param string $address + * @param string $name + * @param boolean $auto Whether to also set the Sender address, defaults to true + * @throws phpmailerException + * @return boolean + */ + public function setFrom($address, $name = '', $auto = true) + { + $address = trim($address); + $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim + if (!$this->validateAddress($address)) { + $this->setError($this->lang('invalid_address') . ': ' . $address); + $this->edebug($this->lang('invalid_address') . ': ' . $address); + if ($this->exceptions) { + throw new phpmailerException($this->lang('invalid_address') . ': ' . $address); + } + return false; + } + $this->From = $address; + $this->FromName = $name; + if ($auto) { + if (empty($this->Sender)) { + $this->Sender = $address; + } + } + return true; + } + + /** + * Return the Message-ID header of the last email. + * Technically this is the value from the last time the headers were created, + * but it's also the message ID of the last sent message except in + * pathological cases. + * @return string + */ + public function getLastMessageID() + { + return $this->lastMessageID; + } + + /** + * Check that a string looks like an email address. + * @param string $address The email address to check + * @param string $patternselect A selector for the validation pattern to use : + * * `auto` Pick strictest one automatically; + * * `pcre8` Use the squiloople.com pattern, requires PCRE > 8.0, PHP >= 5.3.2, 5.2.14; + * * `pcre` Use old PCRE implementation; + * * `php` Use PHP built-in FILTER_VALIDATE_EMAIL; same as pcre8 but does not allow 'dotless' domains; + * * `html5` Use the pattern given by the HTML5 spec for 'email' type form input elements. + * * `noregex` Don't use a regex: super fast, really dumb. + * @return boolean + * @static + * @access public + */ + public static function validateAddress($address, $patternselect = 'auto') + { + if (!$patternselect or $patternselect == 'auto') { + //Check this constant first so it works when extension_loaded() is disabled by safe mode + //Constant was added in PHP 5.2.4 + if (defined('PCRE_VERSION')) { + //This pattern can get stuck in a recursive loop in PCRE <= 8.0.2 + if (version_compare(PCRE_VERSION, '8.0.3') >= 0) { + $patternselect = 'pcre8'; + } else { + $patternselect = 'pcre'; + } + } elseif (function_exists('extension_loaded') and extension_loaded('pcre')) { + //Fall back to older PCRE + $patternselect = 'pcre'; + } else { + //Filter_var appeared in PHP 5.2.0 and does not require the PCRE extension + if (version_compare(PHP_VERSION, '5.2.0') >= 0) { + $patternselect = 'php'; + } else { + $patternselect = 'noregex'; + } + } + } + switch ($patternselect) { + case 'pcre8': + /** + * Uses the same RFC5322 regex on which FILTER_VALIDATE_EMAIL is based, but allows dotless domains. + * @link http://squiloople.com/2009/12/20/email-address-validation/ + * @copyright 2009-2010 Michael Rushton + * Feel free to use and redistribute this code. But please keep this copyright notice. + */ + return (boolean)preg_match( + '/^(?!(?>(?1)"?(?>\\\[ -~]|[^"])"?(?1)){255,})(?!(?>(?1)"?(?>\\\[ -~]|[^"])"?(?1)){65,}@)' . + '((?>(?>(?>((?>(?>(?>\x0D\x0A)?[\t ])+|(?>[\t ]*\x0D\x0A)?[\t ]+)?)(\((?>(?2)' . + '(?>[\x01-\x08\x0B\x0C\x0E-\'*-\[\]-\x7F]|\\\[\x00-\x7F]|(?3)))*(?2)\)))+(?2))|(?2))?)' . + '([!#-\'*+\/-9=?^-~-]+|"(?>(?2)(?>[\x01-\x08\x0B\x0C\x0E-!#-\[\]-\x7F]|\\\[\x00-\x7F]))*' . + '(?2)")(?>(?1)\.(?1)(?4))*(?1)@(?!(?1)[a-z0-9-]{64,})(?1)(?>([a-z0-9](?>[a-z0-9-]*[a-z0-9])?)' . + '(?>(?1)\.(?!(?1)[a-z0-9-]{64,})(?1)(?5)){0,126}|\[(?:(?>IPv6:(?>([a-f0-9]{1,4})(?>:(?6)){7}' . + '|(?!(?:.*[a-f0-9][:\]]){8,})((?6)(?>:(?6)){0,6})?::(?7)?))|(?>(?>IPv6:(?>(?6)(?>:(?6)){5}:' . + '|(?!(?:.*[a-f0-9]:){6,})(?8)?::(?>((?6)(?>:(?6)){0,4}):)?))?(25[0-5]|2[0-4][0-9]|1[0-9]{2}' . + '|[1-9]?[0-9])(?>\.(?9)){3}))\])(?1)$/isD', + $address + ); + case 'pcre': + //An older regex that doesn't need a recent PCRE + return (boolean)preg_match( + '/^(?!(?>"?(?>\\\[ -~]|[^"])"?){255,})(?!(?>"?(?>\\\[ -~]|[^"])"?){65,}@)(?>' . + '[!#-\'*+\/-9=?^-~-]+|"(?>(?>[\x01-\x08\x0B\x0C\x0E-!#-\[\]-\x7F]|\\\[\x00-\xFF]))*")' . + '(?>\.(?>[!#-\'*+\/-9=?^-~-]+|"(?>(?>[\x01-\x08\x0B\x0C\x0E-!#-\[\]-\x7F]|\\\[\x00-\xFF]))*"))*' . + '@(?>(?![a-z0-9-]{64,})(?>[a-z0-9](?>[a-z0-9-]*[a-z0-9])?)(?>\.(?![a-z0-9-]{64,})' . + '(?>[a-z0-9](?>[a-z0-9-]*[a-z0-9])?)){0,126}|\[(?:(?>IPv6:(?>(?>[a-f0-9]{1,4})(?>:' . + '[a-f0-9]{1,4}){7}|(?!(?:.*[a-f0-9][:\]]){8,})(?>[a-f0-9]{1,4}(?>:[a-f0-9]{1,4}){0,6})?' . + '::(?>[a-f0-9]{1,4}(?>:[a-f0-9]{1,4}){0,6})?))|(?>(?>IPv6:(?>[a-f0-9]{1,4}(?>:' . + '[a-f0-9]{1,4}){5}:|(?!(?:.*[a-f0-9]:){6,})(?>[a-f0-9]{1,4}(?>:[a-f0-9]{1,4}){0,4})?' . + '::(?>(?:[a-f0-9]{1,4}(?>:[a-f0-9]{1,4}){0,4}):)?))?(?>25[0-5]|2[0-4][0-9]|1[0-9]{2}' . + '|[1-9]?[0-9])(?>\.(?>25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}))\])$/isD', + $address + ); + case 'html5': + /** + * This is the pattern used in the HTML5 spec for validation of 'email' type form input elements. + * @link http://www.whatwg.org/specs/web-apps/current-work/#e-mail-state-(type=email) + */ + return (boolean)preg_match( + '/^[a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}' . + '[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/sD', + $address + ); + case 'noregex': + //No PCRE! Do something _very_ approximate! + //Check the address is 3 chars or longer and contains an @ that's not the first or last char + return (strlen($address) >= 3 + and strpos($address, '@') >= 1 + and strpos($address, '@') != strlen($address) - 1); + case 'php': + default: + return (boolean)filter_var($address, FILTER_VALIDATE_EMAIL); + } + } + + /** + * Create a message and send it. + * Uses the sending method specified by $Mailer. + * @throws phpmailerException + * @return boolean false on error - See the ErrorInfo property for details of the error. + */ + public function send() + { + try { + if (!$this->preSend()) { + return false; + } + return $this->postSend(); + } catch (phpmailerException $exc) { + $this->mailHeader = ''; + $this->setError($exc->getMessage()); + if ($this->exceptions) { + throw $exc; + } + return false; + } + } + + /** + * Prepare a message for sending. + * @throws phpmailerException + * @return boolean + */ + public function preSend() + { + try { + $this->mailHeader = ''; + if ((count($this->to) + count($this->cc) + count($this->bcc)) < 1) { + throw new phpmailerException($this->lang('provide_address'), self::STOP_CRITICAL); + } + + // Set whether the message is multipart/alternative + if (!empty($this->AltBody)) { + $this->ContentType = 'multipart/alternative'; + } + + $this->error_count = 0; // reset errors + $this->setMessageType(); + // Refuse to send an empty message unless we are specifically allowing it + if (!$this->AllowEmpty and empty($this->Body)) { + throw new phpmailerException($this->lang('empty_message'), self::STOP_CRITICAL); + } + + $this->MIMEHeader = $this->createHeader(); + $this->MIMEBody = $this->createBody(); + + // To capture the complete message when using mail(), create + // an extra header list which createHeader() doesn't fold in + if ($this->Mailer == 'mail') { + if (count($this->to) > 0) { + $this->mailHeader .= $this->addrAppend('To', $this->to); + } else { + $this->mailHeader .= $this->headerLine('To', 'undisclosed-recipients:;'); + } + $this->mailHeader .= $this->headerLine( + 'Subject', + $this->encodeHeader($this->secureHeader(trim($this->Subject))) + ); + } + + // Sign with DKIM if enabled + if (!empty($this->DKIM_domain) + && !empty($this->DKIM_private) + && !empty($this->DKIM_selector) + && !empty($this->DKIM_domain) + && file_exists($this->DKIM_private)) { + $header_dkim = $this->DKIM_Add( + $this->MIMEHeader . $this->mailHeader, + $this->encodeHeader($this->secureHeader($this->Subject)), + $this->MIMEBody + ); + $this->MIMEHeader = rtrim($this->MIMEHeader, "\r\n ") . self::CRLF . + str_replace("\r\n", "\n", $header_dkim) . self::CRLF; + } + return true; + + } catch (phpmailerException $exc) { + $this->setError($exc->getMessage()); + if ($this->exceptions) { + throw $exc; + } + return false; + } + } + + /** + * Actually send a message. + * Send the email via the selected mechanism + * @throws phpmailerException + * @return boolean + */ + public function postSend() + { + try { + // Choose the mailer and send through it + switch ($this->Mailer) { + case 'sendmail': + case 'qmail': + return $this->sendmailSend($this->MIMEHeader, $this->MIMEBody); + case 'smtp': + return $this->smtpSend($this->MIMEHeader, $this->MIMEBody); + case 'mail': + return $this->mailSend($this->MIMEHeader, $this->MIMEBody); + default: + $sendMethod = $this->Mailer.'Send'; + if (method_exists($this, $sendMethod)) { + return $this->$sendMethod($this->MIMEHeader, $this->MIMEBody); + } + + return $this->mailSend($this->MIMEHeader, $this->MIMEBody); + } + } catch (phpmailerException $exc) { + $this->setError($exc->getMessage()); + $this->edebug($exc->getMessage()); + if ($this->exceptions) { + throw $exc; + } + } + return false; + } + + /** + * Send mail using the $Sendmail program. + * @param string $header The message headers + * @param string $body The message body + * @see PHPMailer::$Sendmail + * @throws phpmailerException + * @access protected + * @return boolean + */ + protected function sendmailSend($header, $body) + { + if ($this->Sender != '') { + if ($this->Mailer == 'qmail') { + $sendmail = sprintf('%s -f%s', escapeshellcmd($this->Sendmail), escapeshellarg($this->Sender)); + } else { + $sendmail = sprintf('%s -oi -f%s -t', escapeshellcmd($this->Sendmail), escapeshellarg($this->Sender)); + } + } else { + if ($this->Mailer == 'qmail') { + $sendmail = sprintf('%s', escapeshellcmd($this->Sendmail)); + } else { + $sendmail = sprintf('%s -oi -t', escapeshellcmd($this->Sendmail)); + } + } + if ($this->SingleTo) { + foreach ($this->SingleToArray as $toAddr) { + if (!@$mail = popen($sendmail, 'w')) { + throw new phpmailerException($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); + } + fputs($mail, 'To: ' . $toAddr . "\n"); + fputs($mail, $header); + fputs($mail, $body); + $result = pclose($mail); + $this->doCallback( + ($result == 0), + array($toAddr), + $this->cc, + $this->bcc, + $this->Subject, + $body, + $this->From + ); + if ($result != 0) { + throw new phpmailerException($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); + } + } + } else { + if (!@$mail = popen($sendmail, 'w')) { + throw new phpmailerException($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); + } + fputs($mail, $header); + fputs($mail, $body); + $result = pclose($mail); + $this->doCallback(($result == 0), $this->to, $this->cc, $this->bcc, $this->Subject, $body, $this->From); + if ($result != 0) { + throw new phpmailerException($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); + } + } + return true; + } + + /** + * Send mail using the PHP mail() function. + * @param string $header The message headers + * @param string $body The message body + * @link http://www.php.net/manual/en/book.mail.php + * @throws phpmailerException + * @access protected + * @return boolean + */ + protected function mailSend($header, $body) + { + $toArr = array(); + foreach ($this->to as $toaddr) { + $toArr[] = $this->addrFormat($toaddr); + } + $to = implode(', ', $toArr); + + if (empty($this->Sender)) { + $params = ' '; + } else { + $params = sprintf('-f%s', $this->Sender); + } + if ($this->Sender != '' and !ini_get('safe_mode')) { + $old_from = ini_get('sendmail_from'); + ini_set('sendmail_from', $this->Sender); + } + $result = false; + if ($this->SingleTo && count($toArr) > 1) { + foreach ($toArr as $toAddr) { + $result = $this->mailPassthru($toAddr, $this->Subject, $body, $header, $params); + $this->doCallback($result, array($toAddr), $this->cc, $this->bcc, $this->Subject, $body, $this->From); + } + } else { + $result = $this->mailPassthru($to, $this->Subject, $body, $header, $params); + $this->doCallback($result, $this->to, $this->cc, $this->bcc, $this->Subject, $body, $this->From); + } + if (isset($old_from)) { + ini_set('sendmail_from', $old_from); + } + if (!$result) { + throw new phpmailerException($this->lang('instantiate'), self::STOP_CRITICAL); + } + return true; + } + + /** + * Get an instance to use for SMTP operations. + * Override this function to load your own SMTP implementation + * @return SMTP + */ + public function getSMTPInstance() + { + if (!is_object($this->smtp)) { + $this->smtp = new SMTP; + } + return $this->smtp; + } + + /** + * Send mail via SMTP. + * Returns false if there is a bad MAIL FROM, RCPT, or DATA input. + * Uses the PHPMailerSMTP class by default. + * @see PHPMailer::getSMTPInstance() to use a different class. + * @param string $header The message headers + * @param string $body The message body + * @throws phpmailerException + * @uses SMTP + * @access protected + * @return boolean + */ + protected function smtpSend($header, $body) + { + $bad_rcpt = array(); + + if (!$this->smtpConnect()) { + throw new phpmailerException($this->lang('smtp_connect_failed'), self::STOP_CRITICAL); + } + $smtp_from = ($this->Sender == '') ? $this->From : $this->Sender; + if (!$this->smtp->mail($smtp_from)) { + $this->setError($this->lang('from_failed') . $smtp_from . ' : ' . implode(',', $this->smtp->getError())); + throw new phpmailerException($this->ErrorInfo, self::STOP_CRITICAL); + } + + // Attempt to send to all recipients + foreach ($this->to as $to) { + if (!$this->smtp->recipient($to[0])) { + $bad_rcpt[] = $to[0]; + $isSent = false; + } else { + $isSent = true; + } + $this->doCallback($isSent, array($to[0]), array(), array(), $this->Subject, $body, $this->From); + } + foreach ($this->cc as $cc) { + if (!$this->smtp->recipient($cc[0])) { + $bad_rcpt[] = $cc[0]; + $isSent = false; + } else { + $isSent = true; + } + $this->doCallback($isSent, array(), array($cc[0]), array(), $this->Subject, $body, $this->From); + } + foreach ($this->bcc as $bcc) { + if (!$this->smtp->recipient($bcc[0])) { + $bad_rcpt[] = $bcc[0]; + $isSent = false; + } else { + $isSent = true; + } + $this->doCallback($isSent, array(), array(), array($bcc[0]), $this->Subject, $body, $this->From); + } + + // Only send the DATA command if we have viable recipients + if ((count($this->all_recipients) > count($bad_rcpt)) and !$this->smtp->data($header . $body)) { + throw new phpmailerException($this->lang('data_not_accepted'), self::STOP_CRITICAL); + } + if ($this->SMTPKeepAlive) { + $this->smtp->reset(); + } else { + $this->smtp->quit(); + $this->smtp->close(); + } + if (count($bad_rcpt) > 0) { // Create error message for any bad addresses + throw new phpmailerException( + $this->lang('recipients_failed') . implode(', ', $bad_rcpt), + self::STOP_CONTINUE + ); + } + return true; + } + + /** + * Initiate a connection to an SMTP server. + * Returns false if the operation failed. + * @param array $options An array of options compatible with stream_context_create() + * @uses SMTP + * @access public + * @throws phpmailerException + * @return boolean + */ + public function smtpConnect($options = array()) + { + if (is_null($this->smtp)) { + $this->smtp = $this->getSMTPInstance(); + } + + // Already connected? + if ($this->smtp->connected()) { + return true; + } + + $this->smtp->setTimeout($this->Timeout); + $this->smtp->setDebugLevel($this->SMTPDebug); + $this->smtp->setDebugOutput($this->Debugoutput); + $this->smtp->setVerp($this->do_verp); + $hosts = explode(';', $this->Host); + $lastexception = null; + + foreach ($hosts as $hostentry) { + $hostinfo = array(); + if (!preg_match('/^((ssl|tls):\/\/)*([a-zA-Z0-9\.-]*):?([0-9]*)$/', trim($hostentry), $hostinfo)) { + // Not a valid host entry + continue; + } + // $hostinfo[2]: optional ssl or tls prefix + // $hostinfo[3]: the hostname + // $hostinfo[4]: optional port number + // The host string prefix can temporarily override the current setting for SMTPSecure + // If it's not specified, the default value is used + $prefix = ''; + $tls = ($this->SMTPSecure == 'tls'); + if ($hostinfo[2] == 'ssl' or ($hostinfo[2] == '' and $this->SMTPSecure == 'ssl')) { + $prefix = 'ssl://'; + $tls = false; // Can't have SSL and TLS at once + } elseif ($hostinfo[2] == 'tls') { + $tls = true; + // tls doesn't use a prefix + } + $host = $hostinfo[3]; + $port = $this->Port; + $tport = (integer)$hostinfo[4]; + if ($tport > 0 and $tport < 65536) { + $port = $tport; + } + if ($this->smtp->connect($prefix . $host, $port, $this->Timeout, $options)) { + try { + if ($this->Helo) { + $hello = $this->Helo; + } else { + $hello = $this->serverHostname(); + } + $this->smtp->hello($hello); + + if ($tls) { + if (!$this->smtp->startTLS()) { + throw new phpmailerException($this->lang('connect_host')); + } + // We must resend HELO after tls negotiation + $this->smtp->hello($hello); + } + if ($this->SMTPAuth) { + if (!$this->smtp->authenticate( + $this->Username, + $this->Password, + $this->AuthType, + $this->Realm, + $this->Workstation + ) + ) { + throw new phpmailerException($this->lang('authenticate')); + } + } + return true; + } catch (phpmailerException $exc) { + $lastexception = $exc; + // We must have connected, but then failed TLS or Auth, so close connection nicely + $this->smtp->quit(); + } + } + } + // If we get here, all connection attempts have failed, so close connection hard + $this->smtp->close(); + // As we've caught all exceptions, just report whatever the last one was + if ($this->exceptions and !is_null($lastexception)) { + throw $lastexception; + } + return false; + } + + /** + * Close the active SMTP session if one exists. + * @return void + */ + public function smtpClose() + { + if ($this->smtp !== null) { + if ($this->smtp->connected()) { + $this->smtp->quit(); + $this->smtp->close(); + } + } + } + + /** + * Set the language for error messages. + * Returns false if it cannot load the language file. + * The default language is English. + * @param string $langcode ISO 639-1 2-character language code (e.g. French is "fr") + * @param string $lang_path Path to the language file directory, with trailing separator (slash) + * @return boolean + * @access public + */ + public function setLanguage($langcode = 'en', $lang_path = '') + { + // Define full set of translatable strings in English + $PHPMAILER_LANG = array( + 'authenticate' => 'SMTP Error: Could not authenticate.', + 'connect_host' => 'SMTP Error: Could not connect to SMTP host.', + 'data_not_accepted' => 'SMTP Error: data not accepted.', + 'empty_message' => 'Message body empty', + 'encoding' => 'Unknown encoding: ', + 'execute' => 'Could not execute: ', + 'file_access' => 'Could not access file: ', + 'file_open' => 'File Error: Could not open file: ', + 'from_failed' => 'The following From address failed: ', + 'instantiate' => 'Could not instantiate mail function.', + 'invalid_address' => 'Invalid address', + 'mailer_not_supported' => ' mailer is not supported.', + 'provide_address' => 'You must provide at least one recipient email address.', + 'recipients_failed' => 'SMTP Error: The following recipients failed: ', + 'signing' => 'Signing Error: ', + 'smtp_connect_failed' => 'SMTP connect() failed.', + 'smtp_error' => 'SMTP server error: ', + 'variable_set' => 'Cannot set or reset variable: ' + ); + if (empty($lang_path)) { + // Calculate an absolute path so it can work if CWD is not here + $lang_path = dirname(__FILE__). DIRECTORY_SEPARATOR . 'language'. DIRECTORY_SEPARATOR; + } + $foundlang = true; + $lang_file = $lang_path . 'phpmailer.lang-' . $langcode . '.php'; + if ($langcode != 'en') { // There is no English translation file + // Make sure language file path is readable + if (!is_readable($lang_file)) { + $foundlang = false; + } else { + // Overwrite language-specific strings. + // This way we'll never have missing translations. + $foundlang = include $lang_file; + } + } + $this->language = $PHPMAILER_LANG; + return (boolean)$foundlang; // Returns false if language not found + } + + /** + * Get the array of strings for the current language. + * @return array + */ + public function getTranslations() + { + return $this->language; + } + + /** + * Create recipient headers. + * @access public + * @param string $type + * @param array $addr An array of recipient, + * where each recipient is a 2-element indexed array with element 0 containing an address + * and element 1 containing a name, like: + * array(array('joe@example.com', 'Joe User'), array('zoe@example.com', 'Zoe User')) + * @return string + */ + public function addrAppend($type, $addr) + { + $addresses = array(); + foreach ($addr as $address) { + $addresses[] = $this->addrFormat($address); + } + return $type . ': ' . implode(', ', $addresses) . $this->LE; + } + + /** + * Format an address for use in a message header. + * @access public + * @param array $addr A 2-element indexed array, element 0 containing an address, element 1 containing a name + * like array('joe@example.com', 'Joe User') + * @return string + */ + public function addrFormat($addr) + { + if (empty($addr[1])) { // No name provided + return $this->secureHeader($addr[0]); + } else { + return $this->encodeHeader($this->secureHeader($addr[1]), 'phrase') . ' <' . $this->secureHeader( + $addr[0] + ) . '>'; + } + } + + /** + * Word-wrap message. + * For use with mailers that do not automatically perform wrapping + * and for quoted-printable encoded messages. + * Original written by philippe. + * @param string $message The message to wrap + * @param integer $length The line length to wrap to + * @param boolean $qp_mode Whether to run in Quoted-Printable mode + * @access public + * @return string + */ + public function wrapText($message, $length, $qp_mode = false) + { + $soft_break = ($qp_mode) ? sprintf(' =%s', $this->LE) : $this->LE; + // If utf-8 encoding is used, we will need to make sure we don't + // split multibyte characters when we wrap + $is_utf8 = (strtolower($this->CharSet) == 'utf-8'); + $lelen = strlen($this->LE); + $crlflen = strlen(self::CRLF); + + $message = $this->fixEOL($message); + if (substr($message, -$lelen) == $this->LE) { + $message = substr($message, 0, -$lelen); + } + + $line = explode($this->LE, $message); // Magic. We know fixEOL uses $LE + $message = ''; + for ($i = 0; $i < count($line); $i++) { + $line_part = explode(' ', $line[$i]); + $buf = ''; + for ($e = 0; $e < count($line_part); $e++) { + $word = $line_part[$e]; + if ($qp_mode and (strlen($word) > $length)) { + $space_left = $length - strlen($buf) - $crlflen; + if ($e != 0) { + if ($space_left > 20) { + $len = $space_left; + if ($is_utf8) { + $len = $this->utf8CharBoundary($word, $len); + } elseif (substr($word, $len - 1, 1) == '=') { + $len--; + } elseif (substr($word, $len - 2, 1) == '=') { + $len -= 2; + } + $part = substr($word, 0, $len); + $word = substr($word, $len); + $buf .= ' ' . $part; + $message .= $buf . sprintf('=%s', self::CRLF); + } else { + $message .= $buf . $soft_break; + } + $buf = ''; + } + while (strlen($word) > 0) { + if ($length <= 0) { + break; + } + $len = $length; + if ($is_utf8) { + $len = $this->utf8CharBoundary($word, $len); + } elseif (substr($word, $len - 1, 1) == '=') { + $len--; + } elseif (substr($word, $len - 2, 1) == '=') { + $len -= 2; + } + $part = substr($word, 0, $len); + $word = substr($word, $len); + + if (strlen($word) > 0) { + $message .= $part . sprintf('=%s', self::CRLF); + } else { + $buf = $part; + } + } + } else { + $buf_o = $buf; + $buf .= ($e == 0) ? $word : (' ' . $word); + + if (strlen($buf) > $length and $buf_o != '') { + $message .= $buf_o . $soft_break; + $buf = $word; + } + } + } + $message .= $buf . self::CRLF; + } + + return $message; + } + + /** + * Find the last character boundary prior to $maxLength in a utf-8 + * quoted (printable) encoded string. + * Original written by Colin Brown. + * @access public + * @param string $encodedText utf-8 QP text + * @param integer $maxLength find last character boundary prior to this length + * @return integer + */ + public function utf8CharBoundary($encodedText, $maxLength) + { + $foundSplitPos = false; + $lookBack = 3; + while (!$foundSplitPos) { + $lastChunk = substr($encodedText, $maxLength - $lookBack, $lookBack); + $encodedCharPos = strpos($lastChunk, '='); + if (false !== $encodedCharPos) { + // Found start of encoded character byte within $lookBack block. + // Check the encoded byte value (the 2 chars after the '=') + $hex = substr($encodedText, $maxLength - $lookBack + $encodedCharPos + 1, 2); + $dec = hexdec($hex); + if ($dec < 128) { // Single byte character. + // If the encoded char was found at pos 0, it will fit + // otherwise reduce maxLength to start of the encoded char + $maxLength = ($encodedCharPos == 0) ? $maxLength : + $maxLength - ($lookBack - $encodedCharPos); + $foundSplitPos = true; + } elseif ($dec >= 192) { // First byte of a multi byte character + // Reduce maxLength to split at start of character + $maxLength = $maxLength - ($lookBack - $encodedCharPos); + $foundSplitPos = true; + } elseif ($dec < 192) { // Middle byte of a multi byte character, look further back + $lookBack += 3; + } + } else { + // No encoded character found + $foundSplitPos = true; + } + } + return $maxLength; + } + + /** + * Set the body wrapping. + * @access public + * @return void + */ + public function setWordWrap() + { + if ($this->WordWrap < 1) { + return; + } + + switch ($this->message_type) { + case 'alt': + case 'alt_inline': + case 'alt_attach': + case 'alt_inline_attach': + $this->AltBody = $this->wrapText($this->AltBody, $this->WordWrap); + break; + default: + $this->Body = $this->wrapText($this->Body, $this->WordWrap); + break; + } + } + + /** + * Assemble message headers. + * @access public + * @return string The assembled headers + */ + public function createHeader() + { + $result = ''; + + // Set the boundaries + $uniq_id = md5(uniqid(time())); + $this->boundary[1] = 'b1_' . $uniq_id; + $this->boundary[2] = 'b2_' . $uniq_id; + $this->boundary[3] = 'b3_' . $uniq_id; + + if ($this->MessageDate == '') { + $this->MessageDate = self::rfcDate(); + } + $result .= $this->headerLine('Date', $this->MessageDate); + + + // To be created automatically by mail() + if ($this->SingleTo) { + if ($this->Mailer != 'mail') { + foreach ($this->to as $toaddr) { + $this->SingleToArray[] = $this->addrFormat($toaddr); + } + } + } else { + if (count($this->to) > 0) { + if ($this->Mailer != 'mail') { + $result .= $this->addrAppend('To', $this->to); + } + } elseif (count($this->cc) == 0) { + $result .= $this->headerLine('To', 'undisclosed-recipients:;'); + } + } + + $result .= $this->addrAppend('From', array(array(trim($this->From), $this->FromName))); + + // sendmail and mail() extract Cc from the header before sending + if (count($this->cc) > 0) { + $result .= $this->addrAppend('Cc', $this->cc); + } + + // sendmail and mail() extract Bcc from the header before sending + if (( + $this->Mailer == 'sendmail' or $this->Mailer == 'qmail' or $this->Mailer == 'mail' + ) + and count($this->bcc) > 0 + ) { + $result .= $this->addrAppend('Bcc', $this->bcc); + } + + if (count($this->ReplyTo) > 0) { + $result .= $this->addrAppend('Reply-To', $this->ReplyTo); + } + + // mail() sets the subject itself + if ($this->Mailer != 'mail') { + $result .= $this->headerLine('Subject', $this->encodeHeader($this->secureHeader($this->Subject))); + } + + if ($this->MessageID != '') { + $this->lastMessageID = $this->MessageID; + } else { + $this->lastMessageID = sprintf('<%s@%s>', $uniq_id, $this->ServerHostname()); + } + $result .= $this->HeaderLine('Message-ID', $this->lastMessageID); + $result .= $this->headerLine('X-Priority', $this->Priority); + if ($this->XMailer == '') { + $result .= $this->headerLine( + 'X-Mailer', + 'PHPMailer ' . $this->Version . ' (https://github.com/PHPMailer/PHPMailer/)' + ); + } else { + $myXmailer = trim($this->XMailer); + if ($myXmailer) { + $result .= $this->headerLine('X-Mailer', $myXmailer); + } + } + + if ($this->ConfirmReadingTo != '') { + $result .= $this->headerLine('Disposition-Notification-To', '<' . trim($this->ConfirmReadingTo) . '>'); + } + + // Add custom headers + for ($index = 0; $index < count($this->CustomHeader); $index++) { + $result .= $this->headerLine( + trim($this->CustomHeader[$index][0]), + $this->encodeHeader(trim($this->CustomHeader[$index][1])) + ); + } + if (!$this->sign_key_file) { + $result .= $this->headerLine('MIME-Version', '1.0'); + $result .= $this->getMailMIME(); + } + + return $result; + } + + /** + * Get the message MIME type headers. + * @access public + * @return string + */ + public function getMailMIME() + { + $result = ''; + $ismultipart = true; + switch ($this->message_type) { + case 'inline': + $result .= $this->headerLine('Content-Type', 'multipart/related;'); + $result .= $this->textLine("\tboundary=\"" . $this->boundary[1] . '"'); + break; + case 'attach': + case 'inline_attach': + case 'alt_attach': + case 'alt_inline_attach': + $result .= $this->headerLine('Content-Type', 'multipart/mixed;'); + $result .= $this->textLine("\tboundary=\"" . $this->boundary[1] . '"'); + break; + case 'alt': + case 'alt_inline': + $result .= $this->headerLine('Content-Type', 'multipart/alternative;'); + $result .= $this->textLine("\tboundary=\"" . $this->boundary[1] . '"'); + break; + default: + // Catches case 'plain': and case '': + $result .= $this->textLine('Content-Type: ' . $this->ContentType . '; charset=' . $this->CharSet); + $ismultipart = false; + break; + } + // RFC1341 part 5 says 7bit is assumed if not specified + if ($this->Encoding != '7bit') { + // RFC 2045 section 6.4 says multipart MIME parts may only use 7bit, 8bit or binary CTE + if ($ismultipart) { + if ($this->Encoding == '8bit') { + $result .= $this->headerLine('Content-Transfer-Encoding', '8bit'); + } + // The only remaining alternatives are quoted-printable and base64, which are both 7bit compatible + } else { + $result .= $this->headerLine('Content-Transfer-Encoding', $this->Encoding); + } + } + + if ($this->Mailer != 'mail') { + $result .= $this->LE; + } + + return $result; + } + + /** + * Returns the whole MIME message. + * Includes complete headers and body. + * Only valid post preSend(). + * @see PHPMailer::preSend() + * @access public + * @return string + */ + public function getSentMIMEMessage() + { + return $this->MIMEHeader . $this->mailHeader . self::CRLF . $this->MIMEBody; + } + + + /** + * Assemble the message body. + * Returns an empty string on failure. + * @access public + * @throws phpmailerException + * @return string The assembled message body + */ + public function createBody() + { + $body = ''; + + if ($this->sign_key_file) { + $body .= $this->getMailMIME() . $this->LE; + } + + $this->setWordWrap(); + + $bodyEncoding = $this->Encoding; + $bodyCharSet = $this->CharSet; + if ($bodyEncoding == '8bit' and !$this->has8bitChars($this->Body)) { + $bodyEncoding = '7bit'; + $bodyCharSet = 'us-ascii'; + } + $altBodyEncoding = $this->Encoding; + $altBodyCharSet = $this->CharSet; + if ($altBodyEncoding == '8bit' and !$this->has8bitChars($this->AltBody)) { + $altBodyEncoding = '7bit'; + $altBodyCharSet = 'us-ascii'; + } + switch ($this->message_type) { + case 'inline': + $body .= $this->getBoundary($this->boundary[1], $bodyCharSet, '', $bodyEncoding); + $body .= $this->encodeString($this->Body, $bodyEncoding); + $body .= $this->LE . $this->LE; + $body .= $this->attachAll('inline', $this->boundary[1]); + break; + case 'attach': + $body .= $this->getBoundary($this->boundary[1], $bodyCharSet, '', $bodyEncoding); + $body .= $this->encodeString($this->Body, $bodyEncoding); + $body .= $this->LE . $this->LE; + $body .= $this->attachAll('attachment', $this->boundary[1]); + break; + case 'inline_attach': + $body .= $this->textLine('--' . $this->boundary[1]); + $body .= $this->headerLine('Content-Type', 'multipart/related;'); + $body .= $this->textLine("\tboundary=\"" . $this->boundary[2] . '"'); + $body .= $this->LE; + $body .= $this->getBoundary($this->boundary[2], $bodyCharSet, '', $bodyEncoding); + $body .= $this->encodeString($this->Body, $bodyEncoding); + $body .= $this->LE . $this->LE; + $body .= $this->attachAll('inline', $this->boundary[2]); + $body .= $this->LE; + $body .= $this->attachAll('attachment', $this->boundary[1]); + break; + case 'alt': + $body .= $this->getBoundary($this->boundary[1], $altBodyCharSet, 'text/plain', $altBodyEncoding); + $body .= $this->encodeString($this->AltBody, $altBodyEncoding); + $body .= $this->LE . $this->LE; + $body .= $this->getBoundary($this->boundary[1], $bodyCharSet, 'text/html', $bodyEncoding); + $body .= $this->encodeString($this->Body, $bodyEncoding); + $body .= $this->LE . $this->LE; + if (!empty($this->Ical)) { + $body .= $this->getBoundary($this->boundary[1], '', 'text/calendar; method=REQUEST', ''); + $body .= $this->encodeString($this->Ical, $this->Encoding); + $body .= $this->LE . $this->LE; + } + $body .= $this->endBoundary($this->boundary[1]); + break; + case 'alt_inline': + $body .= $this->getBoundary($this->boundary[1], $altBodyCharSet, 'text/plain', $altBodyEncoding); + $body .= $this->encodeString($this->AltBody, $altBodyEncoding); + $body .= $this->LE . $this->LE; + $body .= $this->textLine('--' . $this->boundary[1]); + $body .= $this->headerLine('Content-Type', 'multipart/related;'); + $body .= $this->textLine("\tboundary=\"" . $this->boundary[2] . '"'); + $body .= $this->LE; + $body .= $this->getBoundary($this->boundary[2], $bodyCharSet, 'text/html', $bodyEncoding); + $body .= $this->encodeString($this->Body, $bodyEncoding); + $body .= $this->LE . $this->LE; + $body .= $this->attachAll('inline', $this->boundary[2]); + $body .= $this->LE; + $body .= $this->endBoundary($this->boundary[1]); + break; + case 'alt_attach': + $body .= $this->textLine('--' . $this->boundary[1]); + $body .= $this->headerLine('Content-Type', 'multipart/alternative;'); + $body .= $this->textLine("\tboundary=\"" . $this->boundary[2] . '"'); + $body .= $this->LE; + $body .= $this->getBoundary($this->boundary[2], $altBodyCharSet, 'text/plain', $altBodyEncoding); + $body .= $this->encodeString($this->AltBody, $altBodyEncoding); + $body .= $this->LE . $this->LE; + $body .= $this->getBoundary($this->boundary[2], $bodyCharSet, 'text/html', $bodyEncoding); + $body .= $this->encodeString($this->Body, $bodyEncoding); + $body .= $this->LE . $this->LE; + $body .= $this->endBoundary($this->boundary[2]); + $body .= $this->LE; + $body .= $this->attachAll('attachment', $this->boundary[1]); + break; + case 'alt_inline_attach': + $body .= $this->textLine('--' . $this->boundary[1]); + $body .= $this->headerLine('Content-Type', 'multipart/alternative;'); + $body .= $this->textLine("\tboundary=\"" . $this->boundary[2] . '"'); + $body .= $this->LE; + $body .= $this->getBoundary($this->boundary[2], $altBodyCharSet, 'text/plain', $altBodyEncoding); + $body .= $this->encodeString($this->AltBody, $altBodyEncoding); + $body .= $this->LE . $this->LE; + $body .= $this->textLine('--' . $this->boundary[2]); + $body .= $this->headerLine('Content-Type', 'multipart/related;'); + $body .= $this->textLine("\tboundary=\"" . $this->boundary[3] . '"'); + $body .= $this->LE; + $body .= $this->getBoundary($this->boundary[3], $bodyCharSet, 'text/html', $bodyEncoding); + $body .= $this->encodeString($this->Body, $bodyEncoding); + $body .= $this->LE . $this->LE; + $body .= $this->attachAll('inline', $this->boundary[3]); + $body .= $this->LE; + $body .= $this->endBoundary($this->boundary[2]); + $body .= $this->LE; + $body .= $this->attachAll('attachment', $this->boundary[1]); + break; + default: + // catch case 'plain' and case '' + $body .= $this->encodeString($this->Body, $bodyEncoding); + break; + } + + if ($this->isError()) { + $body = ''; + } elseif ($this->sign_key_file) { + try { + if (!defined('PKCS7_TEXT')) { + throw new phpmailerException($this->lang('signing') . ' OpenSSL extension missing.'); + } + // @TODO would be nice to use php://temp streams here, but need to wrap for PHP < 5.1 + $file = tempnam(sys_get_temp_dir(), 'mail'); + if (false === file_put_contents($file, $body)) { + throw new phpmailerException($this->lang('signing') . ' Could not write temp file'); + } + $signed = tempnam(sys_get_temp_dir(), 'signed'); + if (@openssl_pkcs7_sign( + $file, + $signed, + 'file://' . realpath($this->sign_cert_file), + array('file://' . realpath($this->sign_key_file), $this->sign_key_pass), + null + ) + ) { + @unlink($file); + $body = file_get_contents($signed); + @unlink($signed); + } else { + @unlink($file); + @unlink($signed); + throw new phpmailerException($this->lang('signing') . openssl_error_string()); + } + } catch (phpmailerException $exc) { + $body = ''; + if ($this->exceptions) { + throw $exc; + } + } + } + return $body; + } + + /** + * Return the start of a message boundary. + * @access protected + * @param string $boundary + * @param string $charSet + * @param string $contentType + * @param string $encoding + * @return string + */ + protected function getBoundary($boundary, $charSet, $contentType, $encoding) + { + $result = ''; + if ($charSet == '') { + $charSet = $this->CharSet; + } + if ($contentType == '') { + $contentType = $this->ContentType; + } + if ($encoding == '') { + $encoding = $this->Encoding; + } + $result .= $this->textLine('--' . $boundary); + $result .= sprintf('Content-Type: %s; charset=%s', $contentType, $charSet); + $result .= $this->LE; + // RFC1341 part 5 says 7bit is assumed if not specified + if ($encoding != '7bit') { + $result .= $this->headerLine('Content-Transfer-Encoding', $encoding); + } + $result .= $this->LE; + + return $result; + } + + /** + * Return the end of a message boundary. + * @access protected + * @param string $boundary + * @return string + */ + protected function endBoundary($boundary) + { + return $this->LE . '--' . $boundary . '--' . $this->LE; + } + + /** + * Set the message type. + * PHPMailer only supports some preset message types, + * not arbitrary MIME structures. + * @access protected + * @return void + */ + protected function setMessageType() + { + $type = array(); + if ($this->alternativeExists()) { + $type[] = 'alt'; + } + if ($this->inlineImageExists()) { + $type[] = 'inline'; + } + if ($this->attachmentExists()) { + $type[] = 'attach'; + } + $this->message_type = implode('_', $type); + if ($this->message_type == '') { + $this->message_type = 'plain'; + } + } + + /** + * Format a header line. + * @access public + * @param string $name + * @param string $value + * @return string + */ + public function headerLine($name, $value) + { + return $name . ': ' . $value . $this->LE; + } + + /** + * Return a formatted mail line. + * @access public + * @param string $value + * @return string + */ + public function textLine($value) + { + return $value . $this->LE; + } + + /** + * Add an attachment from a path on the filesystem. + * Returns false if the file could not be found or read. + * @param string $path Path to the attachment. + * @param string $name Overrides the attachment name. + * @param string $encoding File encoding (see $Encoding). + * @param string $type File extension (MIME) type. + * @param string $disposition Disposition to use + * @throws phpmailerException + * @return boolean + */ + public function addAttachment($path, $name = '', $encoding = 'base64', $type = '', $disposition = 'attachment') + { + try { + if (!@is_file($path)) { + throw new phpmailerException($this->lang('file_access') . $path, self::STOP_CONTINUE); + } + + // If a MIME type is not specified, try to work it out from the file name + if ($type == '') { + $type = self::filenameToType($path); + } + + $filename = basename($path); + if ($name == '') { + $name = $filename; + } + + $this->attachment[] = array( + 0 => $path, + 1 => $filename, + 2 => $name, + 3 => $encoding, + 4 => $type, + 5 => false, // isStringAttachment + 6 => $disposition, + 7 => 0 + ); + + } catch (phpmailerException $exc) { + $this->setError($exc->getMessage()); + $this->edebug($exc->getMessage()); + if ($this->exceptions) { + throw $exc; + } + return false; + } + return true; + } + + /** + * Return the array of attachments. + * @return array + */ + public function getAttachments() + { + return $this->attachment; + } + + /** + * Attach all file, string, and binary attachments to the message. + * Returns an empty string on failure. + * @access protected + * @param string $disposition_type + * @param string $boundary + * @return string + */ + protected function attachAll($disposition_type, $boundary) + { + // Return text of body + $mime = array(); + $cidUniq = array(); + $incl = array(); + + // Add all attachments + foreach ($this->attachment as $attachment) { + // Check if it is a valid disposition_filter + if ($attachment[6] == $disposition_type) { + // Check for string attachment + $string = ''; + $path = ''; + $bString = $attachment[5]; + if ($bString) { + $string = $attachment[0]; + } else { + $path = $attachment[0]; + } + + $inclhash = md5(serialize($attachment)); + if (in_array($inclhash, $incl)) { + continue; + } + $incl[] = $inclhash; + $name = $attachment[2]; + $encoding = $attachment[3]; + $type = $attachment[4]; + $disposition = $attachment[6]; + $cid = $attachment[7]; + if ($disposition == 'inline' && isset($cidUniq[$cid])) { + continue; + } + $cidUniq[$cid] = true; + + $mime[] = sprintf('--%s%s', $boundary, $this->LE); + $mime[] = sprintf( + 'Content-Type: %s; name="%s"%s', + $type, + $this->encodeHeader($this->secureHeader($name)), + $this->LE + ); + // RFC1341 part 5 says 7bit is assumed if not specified + if ($encoding != '7bit') { + $mime[] = sprintf('Content-Transfer-Encoding: %s%s', $encoding, $this->LE); + } + + if ($disposition == 'inline') { + $mime[] = sprintf('Content-ID: <%s>%s', $cid, $this->LE); + } + + // If a filename contains any of these chars, it should be quoted, + // but not otherwise: RFC2183 & RFC2045 5.1 + // Fixes a warning in IETF's msglint MIME checker + // Allow for bypassing the Content-Disposition header totally + if (!(empty($disposition))) { + $encoded_name = $this->encodeHeader($this->secureHeader($name)); + if (preg_match('/[ \(\)<>@,;:\\"\/\[\]\?=]/', $encoded_name)) { + $mime[] = sprintf( + 'Content-Disposition: %s; filename="%s"%s', + $disposition, + $encoded_name, + $this->LE . $this->LE + ); + } else { + $mime[] = sprintf( + 'Content-Disposition: %s; filename=%s%s', + $disposition, + $encoded_name, + $this->LE . $this->LE + ); + } + } else { + $mime[] = $this->LE; + } + + // Encode as string attachment + if ($bString) { + $mime[] = $this->encodeString($string, $encoding); + if ($this->isError()) { + return ''; + } + $mime[] = $this->LE . $this->LE; + } else { + $mime[] = $this->encodeFile($path, $encoding); + if ($this->isError()) { + return ''; + } + $mime[] = $this->LE . $this->LE; + } + } + } + + $mime[] = sprintf('--%s--%s', $boundary, $this->LE); + + return implode('', $mime); + } + + /** + * Encode a file attachment in requested format. + * Returns an empty string on failure. + * @param string $path The full path to the file + * @param string $encoding The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable' + * @throws phpmailerException + * @see EncodeFile(encodeFile + * @access protected + * @return string + */ + protected function encodeFile($path, $encoding = 'base64') + { + try { + if (!is_readable($path)) { + throw new phpmailerException($this->lang('file_open') . $path, self::STOP_CONTINUE); + } + $magic_quotes = get_magic_quotes_runtime(); + if ($magic_quotes) { + if (version_compare(PHP_VERSION, '5.3.0', '<')) { + set_magic_quotes_runtime(false); + } else { + //Doesn't exist in PHP 5.4, but we don't need to check because + //get_magic_quotes_runtime always returns false in 5.4+ + //so it will never get here + ini_set('magic_quotes_runtime', 0); + } + } + $file_buffer = file_get_contents($path); + $file_buffer = $this->encodeString($file_buffer, $encoding); + if ($magic_quotes) { + if (version_compare(PHP_VERSION, '5.3.0', '<')) { + set_magic_quotes_runtime($magic_quotes); + } else { + ini_set('magic_quotes_runtime', ($magic_quotes?'1':'0')); + } + } + return $file_buffer; + } catch (Exception $exc) { + $this->setError($exc->getMessage()); + return ''; + } + } + + /** + * Encode a string in requested format. + * Returns an empty string on failure. + * @param string $str The text to encode + * @param string $encoding The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable' + * @access public + * @return string + */ + public function encodeString($str, $encoding = 'base64') + { + $encoded = ''; + switch (strtolower($encoding)) { + case 'base64': + $encoded = chunk_split(base64_encode($str), 76, $this->LE); + break; + case '7bit': + case '8bit': + $encoded = $this->fixEOL($str); + // Make sure it ends with a line break + if (substr($encoded, -(strlen($this->LE))) != $this->LE) { + $encoded .= $this->LE; + } + break; + case 'binary': + $encoded = $str; + break; + case 'quoted-printable': + $encoded = $this->encodeQP($str); + break; + default: + $this->setError($this->lang('encoding') . $encoding); + break; + } + return $encoded; + } + + /** + * Encode a header string optimally. + * Picks shortest of Q, B, quoted-printable or none. + * @access public + * @param string $str + * @param string $position + * @return string + */ + public function encodeHeader($str, $position = 'text') + { + $matchcount = 0; + switch (strtolower($position)) { + case 'phrase': + if (!preg_match('/[\200-\377]/', $str)) { + // Can't use addslashes as we don't know the value of magic_quotes_sybase + $encoded = addcslashes($str, "\0..\37\177\\\""); + if (($str == $encoded) && !preg_match('/[^A-Za-z0-9!#$%&\'*+\/=?^_`{|}~ -]/', $str)) { + return ($encoded); + } else { + return ("\"$encoded\""); + } + } + $matchcount = preg_match_all('/[^\040\041\043-\133\135-\176]/', $str, $matches); + break; + /** @noinspection PhpMissingBreakStatementInspection */ + case 'comment': + $matchcount = preg_match_all('/[()"]/', $str, $matches); + // Intentional fall-through + case 'text': + default: + $matchcount += preg_match_all('/[\000-\010\013\014\016-\037\177-\377]/', $str, $matches); + break; + } + + if ($matchcount == 0) { // There are no chars that need encoding + return ($str); + } + + $maxlen = 75 - 7 - strlen($this->CharSet); + // Try to select the encoding which should produce the shortest output + if ($matchcount > strlen($str) / 3) { + // More than a third of the content will need encoding, so B encoding will be most efficient + $encoding = 'B'; + if (function_exists('mb_strlen') && $this->hasMultiBytes($str)) { + // Use a custom function which correctly encodes and wraps long + // multibyte strings without breaking lines within a character + $encoded = $this->base64EncodeWrapMB($str, "\n"); + } else { + $encoded = base64_encode($str); + $maxlen -= $maxlen % 4; + $encoded = trim(chunk_split($encoded, $maxlen, "\n")); + } + } else { + $encoding = 'Q'; + $encoded = $this->encodeQ($str, $position); + $encoded = $this->wrapText($encoded, $maxlen, true); + $encoded = str_replace('=' . self::CRLF, "\n", trim($encoded)); + } + + $encoded = preg_replace('/^(.*)$/m', ' =?' . $this->CharSet . "?$encoding?\\1?=", $encoded); + $encoded = trim(str_replace("\n", $this->LE, $encoded)); + + return $encoded; + } + + /** + * Check if a string contains multi-byte characters. + * @access public + * @param string $str multi-byte text to wrap encode + * @return boolean + */ + public function hasMultiBytes($str) + { + if (function_exists('mb_strlen')) { + return (strlen($str) > mb_strlen($str, $this->CharSet)); + } else { // Assume no multibytes (we can't handle without mbstring functions anyway) + return false; + } + } + + /** + * Does a string contain any 8-bit chars (in any charset)? + * @param string $text + * @return boolean + */ + public function has8bitChars($text) + { + return (boolean)preg_match('/[\x80-\xFF]/', $text); + } + + /** + * Encode and wrap long multibyte strings for mail headers + * without breaking lines within a character. + * Adapted from a function by paravoid + * @link http://www.php.net/manual/en/function.mb-encode-mimeheader.php#60283 + * @access public + * @param string $str multi-byte text to wrap encode + * @param string $linebreak string to use as linefeed/end-of-line + * @return string + */ + public function base64EncodeWrapMB($str, $linebreak = null) + { + $start = '=?' . $this->CharSet . '?B?'; + $end = '?='; + $encoded = ''; + if ($linebreak === null) { + $linebreak = $this->LE; + } + + $mb_length = mb_strlen($str, $this->CharSet); + // Each line must have length <= 75, including $start and $end + $length = 75 - strlen($start) - strlen($end); + // Average multi-byte ratio + $ratio = $mb_length / strlen($str); + // Base64 has a 4:3 ratio + $avgLength = floor($length * $ratio * .75); + + for ($i = 0; $i < $mb_length; $i += $offset) { + $lookBack = 0; + do { + $offset = $avgLength - $lookBack; + $chunk = mb_substr($str, $i, $offset, $this->CharSet); + $chunk = base64_encode($chunk); + $lookBack++; + } while (strlen($chunk) > $length); + $encoded .= $chunk . $linebreak; + } + + // Chomp the last linefeed + $encoded = substr($encoded, 0, -strlen($linebreak)); + return $encoded; + } + + /** + * Encode a string in quoted-printable format. + * According to RFC2045 section 6.7. + * @access public + * @param string $string The text to encode + * @param integer $line_max Number of chars allowed on a line before wrapping + * @return string + * @link http://www.php.net/manual/en/function.quoted-printable-decode.php#89417 Adapted from this comment + */ + public function encodeQP($string, $line_max = 76) + { + if (function_exists('quoted_printable_encode')) { // Use native function if it's available (>= PHP5.3) + return $this->fixEOL(quoted_printable_encode($string)); + } + // Fall back to a pure PHP implementation + $string = str_replace( + array('%20', '%0D%0A.', '%0D%0A', '%'), + array(' ', "\r\n=2E", "\r\n", '='), + rawurlencode($string) + ); + $string = preg_replace('/[^\r\n]{' . ($line_max - 3) . '}[^=\r\n]{2}/', "$0=\r\n", $string); + return $this->fixEOL($string); + } + + /** + * Backward compatibility wrapper for an old QP encoding function that was removed. + * @see PHPMailer::encodeQP() + * @access public + * @param string $string + * @param integer $line_max + * @param boolean $space_conv + * @return string + * @deprecated Use encodeQP instead. + */ + public function encodeQPphp( + $string, + $line_max = 76, + /** @noinspection PhpUnusedParameterInspection */ $space_conv = false + ) { + return $this->encodeQP($string, $line_max); + } + + /** + * Encode a string using Q encoding. + * @link http://tools.ietf.org/html/rfc2047 + * @param string $str the text to encode + * @param string $position Where the text is going to be used, see the RFC for what that means + * @access public + * @return string + */ + public function encodeQ($str, $position = 'text') + { + // There should not be any EOL in the string + $pattern = ''; + $encoded = str_replace(array("\r", "\n"), '', $str); + switch (strtolower($position)) { + case 'phrase': + // RFC 2047 section 5.3 + $pattern = '^A-Za-z0-9!*+\/ -'; + break; + /** @noinspection PhpMissingBreakStatementInspection */ + case 'comment': + // RFC 2047 section 5.2 + $pattern = '\(\)"'; + // intentional fall-through + // for this reason we build the $pattern without including delimiters and [] + case 'text': + default: + // RFC 2047 section 5.1 + // Replace every high ascii, control, =, ? and _ characters + $pattern = '\000-\011\013\014\016-\037\075\077\137\177-\377' . $pattern; + break; + } + $matches = array(); + if (preg_match_all("/[{$pattern}]/", $encoded, $matches)) { + // If the string contains an '=', make sure it's the first thing we replace + // so as to avoid double-encoding + $eqkey = array_search('=', $matches[0]); + if (false !== $eqkey) { + unset($matches[0][$eqkey]); + array_unshift($matches[0], '='); + } + foreach (array_unique($matches[0]) as $char) { + $encoded = str_replace($char, '=' . sprintf('%02X', ord($char)), $encoded); + } + } + // Replace every spaces to _ (more readable than =20) + return str_replace(' ', '_', $encoded); + } + + + /** + * Add a string or binary attachment (non-filesystem). + * This method can be used to attach ascii or binary data, + * such as a BLOB record from a database. + * @param string $string String attachment data. + * @param string $filename Name of the attachment. + * @param string $encoding File encoding (see $Encoding). + * @param string $type File extension (MIME) type. + * @param string $disposition Disposition to use + * @return void + */ + public function addStringAttachment( + $string, + $filename, + $encoding = 'base64', + $type = '', + $disposition = 'attachment' + ) { + // If a MIME type is not specified, try to work it out from the file name + if ($type == '') { + $type = self::filenameToType($filename); + } + // Append to $attachment array + $this->attachment[] = array( + 0 => $string, + 1 => $filename, + 2 => basename($filename), + 3 => $encoding, + 4 => $type, + 5 => true, // isStringAttachment + 6 => $disposition, + 7 => 0 + ); + } + + /** + * Add an embedded (inline) attachment from a file. + * This can include images, sounds, and just about any other document type. + * These differ from 'regular' attachments in that they are intended to be + * displayed inline with the message, not just attached for download. + * This is used in HTML messages that embed the images + * the HTML refers to using the $cid value. + * @param string $path Path to the attachment. + * @param string $cid Content ID of the attachment; Use this to reference + * the content when using an embedded image in HTML. + * @param string $name Overrides the attachment name. + * @param string $encoding File encoding (see $Encoding). + * @param string $type File MIME type. + * @param string $disposition Disposition to use + * @return boolean True on successfully adding an attachment + */ + public function addEmbeddedImage($path, $cid, $name = '', $encoding = 'base64', $type = '', $disposition = 'inline') + { + if (!@is_file($path)) { + $this->setError($this->lang('file_access') . $path); + return false; + } + + // If a MIME type is not specified, try to work it out from the file name + if ($type == '') { + $type = self::filenameToType($path); + } + + $filename = basename($path); + if ($name == '') { + $name = $filename; + } + + // Append to $attachment array + $this->attachment[] = array( + 0 => $path, + 1 => $filename, + 2 => $name, + 3 => $encoding, + 4 => $type, + 5 => false, // isStringAttachment + 6 => $disposition, + 7 => $cid + ); + return true; + } + + /** + * Add an embedded stringified attachment. + * This can include images, sounds, and just about any other document type. + * Be sure to set the $type to an image type for images: + * JPEG images use 'image/jpeg', GIF uses 'image/gif', PNG uses 'image/png'. + * @param string $string The attachment binary data. + * @param string $cid Content ID of the attachment; Use this to reference + * the content when using an embedded image in HTML. + * @param string $name + * @param string $encoding File encoding (see $Encoding). + * @param string $type MIME type. + * @param string $disposition Disposition to use + * @return boolean True on successfully adding an attachment + */ + public function addStringEmbeddedImage( + $string, + $cid, + $name = '', + $encoding = 'base64', + $type = '', + $disposition = 'inline' + ) { + // If a MIME type is not specified, try to work it out from the name + if ($type == '') { + $type = self::filenameToType($name); + } + + // Append to $attachment array + $this->attachment[] = array( + 0 => $string, + 1 => $name, + 2 => $name, + 3 => $encoding, + 4 => $type, + 5 => true, // isStringAttachment + 6 => $disposition, + 7 => $cid + ); + return true; + } + + /** + * Check if an inline attachment is present. + * @access public + * @return boolean + */ + public function inlineImageExists() + { + foreach ($this->attachment as $attachment) { + if ($attachment[6] == 'inline') { + return true; + } + } + return false; + } + + /** + * Check if an attachment (non-inline) is present. + * @return boolean + */ + public function attachmentExists() + { + foreach ($this->attachment as $attachment) { + if ($attachment[6] == 'attachment') { + return true; + } + } + return false; + } + + /** + * Check if this message has an alternative body set. + * @return boolean + */ + public function alternativeExists() + { + return !empty($this->AltBody); + } + + /** + * Clear all To recipients. + * @return void + */ + public function clearAddresses() + { + foreach ($this->to as $to) { + unset($this->all_recipients[strtolower($to[0])]); + } + $this->to = array(); + } + + /** + * Clear all CC recipients. + * @return void + */ + public function clearCCs() + { + foreach ($this->cc as $cc) { + unset($this->all_recipients[strtolower($cc[0])]); + } + $this->cc = array(); + } + + /** + * Clear all BCC recipients. + * @return void + */ + public function clearBCCs() + { + foreach ($this->bcc as $bcc) { + unset($this->all_recipients[strtolower($bcc[0])]); + } + $this->bcc = array(); + } + + /** + * Clear all ReplyTo recipients. + * @return void + */ + public function clearReplyTos() + { + $this->ReplyTo = array(); + } + + /** + * Clear all recipient types. + * @return void + */ + public function clearAllRecipients() + { + $this->to = array(); + $this->cc = array(); + $this->bcc = array(); + $this->all_recipients = array(); + } + + /** + * Clear all filesystem, string, and binary attachments. + * @return void + */ + public function clearAttachments() + { + $this->attachment = array(); + } + + /** + * Clear all custom headers. + * @return void + */ + public function clearCustomHeaders() + { + $this->CustomHeader = array(); + } + + /** + * Add an error message to the error container. + * @access protected + * @param string $msg + * @return void + */ + protected function setError($msg) + { + $this->error_count++; + if ($this->Mailer == 'smtp' and !is_null($this->smtp)) { + $lasterror = $this->smtp->getError(); + if (!empty($lasterror) and array_key_exists('smtp_msg', $lasterror)) { + $msg .= '

    ' . $this->lang('smtp_error') . $lasterror['smtp_msg'] . "

    \n"; + } + } + $this->ErrorInfo = $msg; + } + + /** + * Return an RFC 822 formatted date. + * @access public + * @return string + * @static + */ + public static function rfcDate() + { + // Set the time zone to whatever the default is to avoid 500 errors + // Will default to UTC if it's not set properly in php.ini + date_default_timezone_set(@date_default_timezone_get()); + return date('D, j M Y H:i:s O'); + } + + /** + * Get the server hostname. + * Returns 'localhost.localdomain' if unknown. + * @access protected + * @return string + */ + protected function serverHostname() + { + $result = 'localhost.localdomain'; + if (!empty($this->Hostname)) { + $result = $this->Hostname; + } elseif (isset($_SERVER) and array_key_exists('SERVER_NAME', $_SERVER) and !empty($_SERVER['SERVER_NAME'])) { + $result = $_SERVER['SERVER_NAME']; + } elseif (function_exists('gethostname') && gethostname() !== false) { + $result = gethostname(); + } elseif (php_uname('n') !== false) { + $result = php_uname('n'); + } + return $result; + } + + /** + * Get an error message in the current language. + * @access protected + * @param string $key + * @return string + */ + protected function lang($key) + { + if (count($this->language) < 1) { + $this->setLanguage('en'); // set the default language + } + + if (isset($this->language[$key])) { + return $this->language[$key]; + } else { + return 'Language string failed to load: ' . $key; + } + } + + /** + * Check if an error occurred. + * @access public + * @return boolean True if an error did occur. + */ + public function isError() + { + return ($this->error_count > 0); + } + + /** + * Ensure consistent line endings in a string. + * Changes every end of line from CRLF, CR or LF to $this->LE. + * @access public + * @param string $str String to fixEOL + * @return string + */ + public function fixEOL($str) + { + // Normalise to \n + $nstr = str_replace(array("\r\n", "\r"), "\n", $str); + // Now convert LE as needed + if ($this->LE !== "\n") { + $nstr = str_replace("\n", $this->LE, $nstr); + } + return $nstr; + } + + /** + * Add a custom header. + * $name value can be overloaded to contain + * both header name and value (name:value) + * @access public + * @param string $name Custom header name + * @param string $value Header value + * @return void + */ + public function addCustomHeader($name, $value = null) + { + if ($value === null) { + // Value passed in as name:value + $this->CustomHeader[] = explode(':', $name, 2); + } else { + $this->CustomHeader[] = array($name, $value); + } + } + + /** + * Create a message from an HTML string. + * Automatically makes modifications for inline images and backgrounds + * and creates a plain-text version by converting the HTML. + * Overwrites any existing values in $this->Body and $this->AltBody + * @access public + * @param string $message HTML message string + * @param string $basedir baseline directory for path + * @param boolean|callable $advanced Whether to use the internal HTML to text converter + * or your own custom converter @see html2text() + * @return string $message + */ + public function msgHTML($message, $basedir = '', $advanced = false) + { + preg_match_all('/(src|background)=["\'](.*)["\']/Ui', $message, $images); + if (isset($images[2])) { + foreach ($images[2] as $imgindex => $url) { + // Convert data URIs into embedded images + if (preg_match('#^data:(image[^;,]*)(;base64)?,#', $url, $match)) { + $data = substr($url, strpos($url, ',')); + if ($match[2]) { + $data = base64_decode($data); + } else { + $data = rawurldecode($data); + } + $cid = md5($url) . '@phpmailer.0'; // RFC2392 S 2 + if ($this->addStringEmbeddedImage($data, $cid, '', 'base64', $match[1])) { + $message = str_replace( + $images[0][$imgindex], + $images[1][$imgindex] . '="cid:' . $cid . '"', + $message + ); + } + } elseif (!preg_match('#^[A-z]+://#', $url)) { + // Do not change urls for absolute images (thanks to corvuscorax) + $filename = basename($url); + $directory = dirname($url); + if ($directory == '.') { + $directory = ''; + } + $cid = md5($url) . '@phpmailer.0'; // RFC2392 S 2 + if (strlen($basedir) > 1 && substr($basedir, -1) != '/') { + $basedir .= '/'; + } + if (strlen($directory) > 1 && substr($directory, -1) != '/') { + $directory .= '/'; + } + if ($this->addEmbeddedImage( + $basedir . $directory . $filename, + $cid, + $filename, + 'base64', + self::_mime_types((string)self::mb_pathinfo($filename, PATHINFO_EXTENSION)) + ) + ) { + $message = preg_replace( + '/' . $images[1][$imgindex] . '=["\']' . preg_quote($url, '/') . '["\']/Ui', + $images[1][$imgindex] . '="cid:' . $cid . '"', + $message + ); + } + } + } + } + $this->isHTML(true); + // Convert all message body line breaks to CRLF, makes quoted-printable encoding work much better + $this->Body = $this->normalizeBreaks($message); + $this->AltBody = $this->normalizeBreaks($this->html2text($message, $advanced)); + if (empty($this->AltBody)) { + $this->AltBody = 'To view this email message, open it in a program that understands HTML!' . + self::CRLF . self::CRLF; + } + return $this->Body; + } + + /** + * Convert an HTML string into plain text. + * This is used by msgHTML(). + * Note - older versions of this function used a bundled advanced converter + * which was been removed for license reasons in #232 + * Example usage: + * + * // Use default conversion + * $plain = $mail->html2text($html); + * // Use your own custom converter + * $plain = $mail->html2text($html, function($html) { + * $converter = new MyHtml2text($html); + * return $converter->get_text(); + * }); + * + * @param string $html The HTML text to convert + * @param boolean|callable $advanced Any boolean value to use the internal converter, + * or provide your own callable for custom conversion. + * @return string + */ + public function html2text($html, $advanced = false) + { + if (is_callable($advanced)) { + return $advanced($html); + } + return html_entity_decode( + trim(strip_tags(preg_replace('/<(head|title|style|script)[^>]*>.*?<\/\\1>/si', '', $html))), + ENT_QUOTES, + $this->CharSet + ); + } + + /** + * Get the MIME type for a file extension. + * @param string $ext File extension + * @access public + * @return string MIME type of file. + * @static + */ + public static function _mime_types($ext = '') + { + $mimes = array( + 'xl' => 'application/excel', + 'js' => 'application/javascript', + 'hqx' => 'application/mac-binhex40', + 'cpt' => 'application/mac-compactpro', + 'bin' => 'application/macbinary', + 'doc' => 'application/msword', + 'word' => 'application/msword', + 'class' => 'application/octet-stream', + 'dll' => 'application/octet-stream', + 'dms' => 'application/octet-stream', + 'exe' => 'application/octet-stream', + 'lha' => 'application/octet-stream', + 'lzh' => 'application/octet-stream', + 'psd' => 'application/octet-stream', + 'sea' => 'application/octet-stream', + 'so' => 'application/octet-stream', + 'oda' => 'application/oda', + 'pdf' => 'application/pdf', + 'ai' => 'application/postscript', + 'eps' => 'application/postscript', + 'ps' => 'application/postscript', + 'smi' => 'application/smil', + 'smil' => 'application/smil', + 'mif' => 'application/vnd.mif', + 'xls' => 'application/vnd.ms-excel', + 'ppt' => 'application/vnd.ms-powerpoint', + 'wbxml' => 'application/vnd.wap.wbxml', + 'wmlc' => 'application/vnd.wap.wmlc', + 'dcr' => 'application/x-director', + 'dir' => 'application/x-director', + 'dxr' => 'application/x-director', + 'dvi' => 'application/x-dvi', + 'gtar' => 'application/x-gtar', + 'php3' => 'application/x-httpd-php', + 'php4' => 'application/x-httpd-php', + 'php' => 'application/x-httpd-php', + 'phtml' => 'application/x-httpd-php', + 'phps' => 'application/x-httpd-php-source', + 'swf' => 'application/x-shockwave-flash', + 'sit' => 'application/x-stuffit', + 'tar' => 'application/x-tar', + 'tgz' => 'application/x-tar', + 'xht' => 'application/xhtml+xml', + 'xhtml' => 'application/xhtml+xml', + 'zip' => 'application/zip', + 'mid' => 'audio/midi', + 'midi' => 'audio/midi', + 'mp2' => 'audio/mpeg', + 'mp3' => 'audio/mpeg', + 'mpga' => 'audio/mpeg', + 'aif' => 'audio/x-aiff', + 'aifc' => 'audio/x-aiff', + 'aiff' => 'audio/x-aiff', + 'ram' => 'audio/x-pn-realaudio', + 'rm' => 'audio/x-pn-realaudio', + 'rpm' => 'audio/x-pn-realaudio-plugin', + 'ra' => 'audio/x-realaudio', + 'wav' => 'audio/x-wav', + 'bmp' => 'image/bmp', + 'gif' => 'image/gif', + 'jpeg' => 'image/jpeg', + 'jpe' => 'image/jpeg', + 'jpg' => 'image/jpeg', + 'png' => 'image/png', + 'tiff' => 'image/tiff', + 'tif' => 'image/tiff', + 'eml' => 'message/rfc822', + 'css' => 'text/css', + 'html' => 'text/html', + 'htm' => 'text/html', + 'shtml' => 'text/html', + 'log' => 'text/plain', + 'text' => 'text/plain', + 'txt' => 'text/plain', + 'rtx' => 'text/richtext', + 'rtf' => 'text/rtf', + 'vcf' => 'text/vcard', + 'vcard' => 'text/vcard', + 'xml' => 'text/xml', + 'xsl' => 'text/xml', + 'mpeg' => 'video/mpeg', + 'mpe' => 'video/mpeg', + 'mpg' => 'video/mpeg', + 'mov' => 'video/quicktime', + 'qt' => 'video/quicktime', + 'rv' => 'video/vnd.rn-realvideo', + 'avi' => 'video/x-msvideo', + 'movie' => 'video/x-sgi-movie' + ); + return (array_key_exists(strtolower($ext), $mimes) ? $mimes[strtolower($ext)]: 'application/octet-stream'); + } + + /** + * Map a file name to a MIME type. + * Defaults to 'application/octet-stream', i.e.. arbitrary binary data. + * @param string $filename A file name or full path, does not need to exist as a file + * @return string + * @static + */ + public static function filenameToType($filename) + { + // In case the path is a URL, strip any query string before getting extension + $qpos = strpos($filename, '?'); + if (false !== $qpos) { + $filename = substr($filename, 0, $qpos); + } + $pathinfo = self::mb_pathinfo($filename); + return self::_mime_types($pathinfo['extension']); + } + + /** + * Multi-byte-safe pathinfo replacement. + * Drop-in replacement for pathinfo(), but multibyte-safe, cross-platform-safe, old-version-safe. + * Works similarly to the one in PHP >= 5.2.0 + * @link http://www.php.net/manual/en/function.pathinfo.php#107461 + * @param string $path A filename or path, does not need to exist as a file + * @param integer|string $options Either a PATHINFO_* constant, + * or a string name to return only the specified piece, allows 'filename' to work on PHP < 5.2 + * @return string|array + * @static + */ + public static function mb_pathinfo($path, $options = null) + { + $ret = array('dirname' => '', 'basename' => '', 'extension' => '', 'filename' => ''); + $pathinfo = array(); + if (preg_match('%^(.*?)[\\\\/]*(([^/\\\\]*?)(\.([^\.\\\\/]+?)|))[\\\\/\.]*$%im', $path, $pathinfo)) { + if (array_key_exists(1, $pathinfo)) { + $ret['dirname'] = $pathinfo[1]; + } + if (array_key_exists(2, $pathinfo)) { + $ret['basename'] = $pathinfo[2]; + } + if (array_key_exists(5, $pathinfo)) { + $ret['extension'] = $pathinfo[5]; + } + if (array_key_exists(3, $pathinfo)) { + $ret['filename'] = $pathinfo[3]; + } + } + switch ($options) { + case PATHINFO_DIRNAME: + case 'dirname': + return $ret['dirname']; + case PATHINFO_BASENAME: + case 'basename': + return $ret['basename']; + case PATHINFO_EXTENSION: + case 'extension': + return $ret['extension']; + case PATHINFO_FILENAME: + case 'filename': + return $ret['filename']; + default: + return $ret; + } + } + + /** + * Set or reset instance properties. + * + * Usage Example: + * $page->set('X-Priority', '3'); + * + * @access public + * @param string $name + * @param mixed $value + * NOTE: will not work with arrays, there are no arrays to set/reset + * @throws phpmailerException + * @return boolean + * @TODO Should this not be using __set() magic function? + */ + public function set($name, $value = '') + { + try { + if (isset($this->$name)) { + $this->$name = $value; + } else { + throw new phpmailerException($this->lang('variable_set') . $name, self::STOP_CRITICAL); + } + } catch (Exception $exc) { + $this->setError($exc->getMessage()); + if ($exc->getCode() == self::STOP_CRITICAL) { + return false; + } + } + return true; + } + + /** + * Strip newlines to prevent header injection. + * @access public + * @param string $str + * @return string + */ + public function secureHeader($str) + { + return trim(str_replace(array("\r", "\n"), '', $str)); + } + + /** + * Normalize line breaks in a string. + * Converts UNIX LF, Mac CR and Windows CRLF line breaks into a single line break format. + * Defaults to CRLF (for message bodies) and preserves consecutive breaks. + * @param string $text + * @param string $breaktype What kind of line break to use, defaults to CRLF + * @return string + * @access public + * @static + */ + public static function normalizeBreaks($text, $breaktype = "\r\n") + { + return preg_replace('/(\r\n|\r|\n)/ms', $breaktype, $text); + } + + + /** + * Set the public and private key files and password for S/MIME signing. + * @access public + * @param string $cert_filename + * @param string $key_filename + * @param string $key_pass Password for private key + */ + public function sign($cert_filename, $key_filename, $key_pass) + { + $this->sign_cert_file = $cert_filename; + $this->sign_key_file = $key_filename; + $this->sign_key_pass = $key_pass; + } + + /** + * Quoted-Printable-encode a DKIM header. + * @access public + * @param string $txt + * @return string + */ + public function DKIM_QP($txt) + { + $line = ''; + for ($i = 0; $i < strlen($txt); $i++) { + $ord = ord($txt[$i]); + if (((0x21 <= $ord) && ($ord <= 0x3A)) || $ord == 0x3C || ((0x3E <= $ord) && ($ord <= 0x7E))) { + $line .= $txt[$i]; + } else { + $line .= '=' . sprintf('%02X', $ord); + } + } + return $line; + } + + /** + * Generate a DKIM signature. + * @access public + * @param string $signHeader + * @throws phpmailerException + * @return string + */ + public function DKIM_Sign($signHeader) + { + if (!defined('PKCS7_TEXT')) { + if ($this->exceptions) { + throw new phpmailerException($this->lang('signing') . ' OpenSSL extension missing.'); + } + return ''; + } + $privKeyStr = file_get_contents($this->DKIM_private); + if ($this->DKIM_passphrase != '') { + $privKey = openssl_pkey_get_private($privKeyStr, $this->DKIM_passphrase); + } else { + $privKey = $privKeyStr; + } + if (openssl_sign($signHeader, $signature, $privKey)) { + return base64_encode($signature); + } + return ''; + } + + /** + * Generate a DKIM canonicalization header. + * @access public + * @param string $signHeader Header + * @return string + */ + public function DKIM_HeaderC($signHeader) + { + $signHeader = preg_replace('/\r\n\s+/', ' ', $signHeader); + $lines = explode("\r\n", $signHeader); + foreach ($lines as $key => $line) { + list($heading, $value) = explode(':', $line, 2); + $heading = strtolower($heading); + $value = preg_replace('/\s+/', ' ', $value); // Compress useless spaces + $lines[$key] = $heading . ':' . trim($value); // Don't forget to remove WSP around the value + } + $signHeader = implode("\r\n", $lines); + return $signHeader; + } + + /** + * Generate a DKIM canonicalization body. + * @access public + * @param string $body Message Body + * @return string + */ + public function DKIM_BodyC($body) + { + if ($body == '') { + return "\r\n"; + } + // stabilize line endings + $body = str_replace("\r\n", "\n", $body); + $body = str_replace("\n", "\r\n", $body); + // END stabilize line endings + while (substr($body, strlen($body) - 4, 4) == "\r\n\r\n") { + $body = substr($body, 0, strlen($body) - 2); + } + return $body; + } + + /** + * Create the DKIM header and body in a new message header. + * @access public + * @param string $headers_line Header lines + * @param string $subject Subject + * @param string $body Body + * @return string + */ + public function DKIM_Add($headers_line, $subject, $body) + { + $DKIMsignatureType = 'rsa-sha1'; // Signature & hash algorithms + $DKIMcanonicalization = 'relaxed/simple'; // Canonicalization of header/body + $DKIMquery = 'dns/txt'; // Query method + $DKIMtime = time(); // Signature Timestamp = seconds since 00:00:00 - Jan 1, 1970 (UTC time zone) + $subject_header = "Subject: $subject"; + $headers = explode($this->LE, $headers_line); + $from_header = ''; + $to_header = ''; + $current = ''; + foreach ($headers as $header) { + if (strpos($header, 'From:') === 0) { + $from_header = $header; + $current = 'from_header'; + } elseif (strpos($header, 'To:') === 0) { + $to_header = $header; + $current = 'to_header'; + } else { + if ($current && strpos($header, ' =?') === 0) { + $current .= $header; + } else { + $current = ''; + } + } + } + $from = str_replace('|', '=7C', $this->DKIM_QP($from_header)); + $to = str_replace('|', '=7C', $this->DKIM_QP($to_header)); + $subject = str_replace( + '|', + '=7C', + $this->DKIM_QP($subject_header) + ); // Copied header fields (dkim-quoted-printable) + $body = $this->DKIM_BodyC($body); + $DKIMlen = strlen($body); // Length of body + $DKIMb64 = base64_encode(pack('H*', sha1($body))); // Base64 of packed binary SHA-1 hash of body + $ident = ($this->DKIM_identity == '') ? '' : ' i=' . $this->DKIM_identity . ';'; + $dkimhdrs = 'DKIM-Signature: v=1; a=' . + $DKIMsignatureType . '; q=' . + $DKIMquery . '; l=' . + $DKIMlen . '; s=' . + $this->DKIM_selector . + ";\r\n" . + "\tt=" . $DKIMtime . '; c=' . $DKIMcanonicalization . ";\r\n" . + "\th=From:To:Subject;\r\n" . + "\td=" . $this->DKIM_domain . ';' . $ident . "\r\n" . + "\tz=$from\r\n" . + "\t|$to\r\n" . + "\t|$subject;\r\n" . + "\tbh=" . $DKIMb64 . ";\r\n" . + "\tb="; + $toSign = $this->DKIM_HeaderC( + $from_header . "\r\n" . $to_header . "\r\n" . $subject_header . "\r\n" . $dkimhdrs + ); + $signed = $this->DKIM_Sign($toSign); + return $dkimhdrs . $signed . "\r\n"; + } + + /** + * Allows for public read access to 'to' property. + * @access public + * @return array + */ + public function getToAddresses() + { + return $this->to; + } + + /** + * Allows for public read access to 'cc' property. + * @access public + * @return array + */ + public function getCcAddresses() + { + return $this->cc; + } + + /** + * Allows for public read access to 'bcc' property. + * @access public + * @return array + */ + public function getBccAddresses() + { + return $this->bcc; + } + + /** + * Allows for public read access to 'ReplyTo' property. + * @access public + * @return array + */ + public function getReplyToAddresses() + { + return $this->ReplyTo; + } + + /** + * Allows for public read access to 'all_recipients' property. + * @access public + * @return array + */ + public function getAllRecipientAddresses() + { + return $this->all_recipients; + } + + /** + * Perform a callback. + * @param boolean $isSent + * @param array $to + * @param array $cc + * @param array $bcc + * @param string $subject + * @param string $body + * @param string $from + */ + protected function doCallback($isSent, $to, $cc, $bcc, $subject, $body, $from) + { + if (!empty($this->action_function) && is_callable($this->action_function)) { + $params = array($isSent, $to, $cc, $bcc, $subject, $body, $from); + call_user_func_array($this->action_function, $params); + } + } +} + +/** + * PHPMailer exception handler + * @package PHPMailer + */ +class phpmailerException extends Exception +{ + /** + * Prettify error message output + * @return string + */ + public function errorMessage() + { + $errorMsg = '' . $this->getMessage() . "
    \n"; + return $errorMsg; + } +} diff --git a/inc/phpmailer/class.pop3.php b/inc/phpmailer/class.pop3.php new file mode 100644 index 0000000..984885f --- /dev/null +++ b/inc/phpmailer/class.pop3.php @@ -0,0 +1,397 @@ + + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + * @copyright 2012 - 2014 Marcus Bointon + * @copyright 2010 - 2012 Jim Jagielski + * @copyright 2004 - 2009 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License + * @note This program is distributed in the hope that it will be useful - WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + */ + +/** + * PHPMailer POP-Before-SMTP Authentication Class. + * Specifically for PHPMailer to use for RFC1939 POP-before-SMTP authentication. + * Does not support APOP. + * @package PHPMailer + * @author Richard Davey (original author) + * @author Marcus Bointon (Synchro/coolbru) + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + */ +class POP3 +{ + /** + * The POP3 PHPMailer Version number. + * @type string + * @access public + */ + public $Version = '5.2.9'; + + /** + * Default POP3 port number. + * @type integer + * @access public + */ + public $POP3_PORT = 110; + + /** + * Default timeout in seconds. + * @type integer + * @access public + */ + public $POP3_TIMEOUT = 30; + + /** + * POP3 Carriage Return + Line Feed. + * @type string + * @access public + * @deprecated Use the constant instead + */ + public $CRLF = "\r\n"; + + /** + * Debug display level. + * Options: 0 = no, 1+ = yes + * @type integer + * @access public + */ + public $do_debug = 0; + + /** + * POP3 mail server hostname. + * @type string + * @access public + */ + public $host; + + /** + * POP3 port number. + * @type integer + * @access public + */ + public $port; + + /** + * POP3 Timeout Value in seconds. + * @type integer + * @access public + */ + public $tval; + + /** + * POP3 username + * @type string + * @access public + */ + public $username; + + /** + * POP3 password. + * @type string + * @access public + */ + public $password; + + /** + * Resource handle for the POP3 connection socket. + * @type resource + * @access private + */ + private $pop_conn; + + /** + * Are we connected? + * @type boolean + * @access private + */ + private $connected = false; + + /** + * Error container. + * @type array + * @access private + */ + private $errors = array(); + + /** + * Line break constant + */ + const CRLF = "\r\n"; + + /** + * Simple static wrapper for all-in-one POP before SMTP + * @param $host + * @param boolean $port + * @param boolean $tval + * @param string $username + * @param string $password + * @param integer $debug_level + * @return boolean + */ + public static function popBeforeSmtp( + $host, + $port = false, + $tval = false, + $username = '', + $password = '', + $debug_level = 0 + ) { + $pop = new POP3; + return $pop->authorise($host, $port, $tval, $username, $password, $debug_level); + } + + /** + * Authenticate with a POP3 server. + * A connect, login, disconnect sequence + * appropriate for POP-before SMTP authorisation. + * @access public + * @param string $host The hostname to connect to + * @param integer|boolean $port The port number to connect to + * @param integer|boolean $timeout The timeout value + * @param string $username + * @param string $password + * @param integer $debug_level + * @return boolean + */ + public function authorise($host, $port = false, $timeout = false, $username = '', $password = '', $debug_level = 0) + { + $this->host = $host; + // If no port value provided, use default + if (false === $port) { + $this->port = $this->POP3_PORT; + } else { + $this->port = (integer)$port; + } + // If no timeout value provided, use default + if (false === $timeout) { + $this->tval = $this->POP3_TIMEOUT; + } else { + $this->tval = (integer)$timeout; + } + $this->do_debug = $debug_level; + $this->username = $username; + $this->password = $password; + // Reset the error log + $this->errors = array(); + // connect + $result = $this->connect($this->host, $this->port, $this->tval); + if ($result) { + $login_result = $this->login($this->username, $this->password); + if ($login_result) { + $this->disconnect(); + return true; + } + } + // We need to disconnect regardless of whether the login succeeded + $this->disconnect(); + return false; + } + + /** + * Connect to a POP3 server. + * @access public + * @param string $host + * @param integer|boolean $port + * @param integer $tval + * @return boolean + */ + public function connect($host, $port = false, $tval = 30) + { + // Are we already connected? + if ($this->connected) { + return true; + } + + //On Windows this will raise a PHP Warning error if the hostname doesn't exist. + //Rather than suppress it with @fsockopen, capture it cleanly instead + set_error_handler(array($this, 'catchWarning')); + + if (false === $port) { + $port = $this->POP3_PORT; + } + + // connect to the POP3 server + $this->pop_conn = fsockopen( + $host, // POP3 Host + $port, // Port # + $errno, // Error Number + $errstr, // Error Message + $tval + ); // Timeout (seconds) + // Restore the error handler + restore_error_handler(); + + // Did we connect? + if (false === $this->pop_conn) { + // It would appear not... + $this->setError(array( + 'error' => "Failed to connect to server $host on port $port", + 'errno' => $errno, + 'errstr' => $errstr + )); + return false; + } + + // Increase the stream time-out + stream_set_timeout($this->pop_conn, $tval, 0); + + // Get the POP3 server response + $pop3_response = $this->getResponse(); + // Check for the +OK + if ($this->checkResponse($pop3_response)) { + // The connection is established and the POP3 server is talking + $this->connected = true; + return true; + } + return false; + } + + /** + * Log in to the POP3 server. + * Does not support APOP (RFC 2828, 4949). + * @access public + * @param string $username + * @param string $password + * @return boolean + */ + public function login($username = '', $password = '') + { + if (!$this->connected) { + $this->setError('Not connected to POP3 server'); + } + if (empty($username)) { + $username = $this->username; + } + if (empty($password)) { + $password = $this->password; + } + + // Send the Username + $this->sendString("USER $username" . self::CRLF); + $pop3_response = $this->getResponse(); + if ($this->checkResponse($pop3_response)) { + // Send the Password + $this->sendString("PASS $password" . self::CRLF); + $pop3_response = $this->getResponse(); + if ($this->checkResponse($pop3_response)) { + return true; + } + } + return false; + } + + /** + * Disconnect from the POP3 server. + * @access public + */ + public function disconnect() + { + $this->sendString('QUIT'); + //The QUIT command may cause the daemon to exit, which will kill our connection + //So ignore errors here + try { + @fclose($this->pop_conn); + } catch (Exception $e) { + //Do nothing + }; + } + + /** + * Get a response from the POP3 server. + * $size is the maximum number of bytes to retrieve + * @param integer $size + * @return string + * @access private + */ + private function getResponse($size = 128) + { + $response = fgets($this->pop_conn, $size); + if ($this->do_debug >= 1) { + echo "Server -> Client: $response"; + } + return $response; + } + + /** + * Send raw data to the POP3 server. + * @param string $string + * @return integer + * @access private + */ + private function sendString($string) + { + if ($this->pop_conn) { + if ($this->do_debug >= 2) { //Show client messages when debug >= 2 + echo "Client -> Server: $string"; + } + return fwrite($this->pop_conn, $string, strlen($string)); + } + return 0; + } + + /** + * Checks the POP3 server response. + * Looks for for +OK or -ERR. + * @param string $string + * @return boolean + * @access private + */ + private function checkResponse($string) + { + if (substr($string, 0, 3) !== '+OK') { + $this->setError(array( + 'error' => "Server reported an error: $string", + 'errno' => 0, + 'errstr' => '' + )); + return false; + } else { + return true; + } + } + + /** + * Add an error to the internal error store. + * Also display debug output if it's enabled. + * @param $error + */ + private function setError($error) + { + $this->errors[] = $error; + if ($this->do_debug >= 1) { + echo '
    ';
    +            foreach ($this->errors as $error) {
    +                print_r($error);
    +            }
    +            echo '
    '; + } + } + + /** + * POP3 connection error handler. + * @param integer $errno + * @param string $errstr + * @param string $errfile + * @param integer $errline + * @access private + */ + private function catchWarning($errno, $errstr, $errfile, $errline) + { + $this->setError(array( + 'error' => "Connecting to the POP3 server raised a PHP warning: ", + 'errno' => $errno, + 'errstr' => $errstr, + 'errfile' => $errfile, + 'errline' => $errline + )); + } +} diff --git a/inc/phpmailer/class.smtp.php b/inc/phpmailer/class.smtp.php new file mode 100644 index 0000000..d699197 --- /dev/null +++ b/inc/phpmailer/class.smtp.php @@ -0,0 +1,1132 @@ + + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + * @copyright 2014 Marcus Bointon + * @copyright 2010 - 2012 Jim Jagielski + * @copyright 2004 - 2009 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License + * @note This program is distributed in the hope that it will be useful - WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + */ + +/** + * PHPMailer RFC821 SMTP email transport class. + * Implements RFC 821 SMTP commands and provides some utility methods for sending mail to an SMTP server. + * @package PHPMailer + * @author Chris Ryan + * @author Marcus Bointon + */ +class SMTP +{ + /** + * The PHPMailer SMTP version number. + * @type string + */ + const VERSION = '5.2.9'; + + /** + * SMTP line break constant. + * @type string + */ + const CRLF = "\r\n"; + + /** + * The SMTP port to use if one is not specified. + * @type integer + */ + const DEFAULT_SMTP_PORT = 25; + + /** + * The maximum line length allowed by RFC 2822 section 2.1.1 + * @type integer + */ + const MAX_LINE_LENGTH = 998; + + /** + * Debug level for no output + */ + const DEBUG_OFF = 0; + + /** + * Debug level to show client -> server messages + */ + const DEBUG_CLIENT = 1; + + /** + * Debug level to show client -> server and server -> client messages + */ + const DEBUG_SERVER = 2; + + /** + * Debug level to show connection status, client -> server and server -> client messages + */ + const DEBUG_CONNECTION = 3; + + /** + * Debug level to show all messages + */ + const DEBUG_LOWLEVEL = 4; + + /** + * The PHPMailer SMTP Version number. + * @type string + * @deprecated Use the `VERSION` constant instead + * @see SMTP::VERSION + */ + public $Version = '5.2.9'; + + /** + * SMTP server port number. + * @type integer + * @deprecated This is only ever used as a default value, so use the `DEFAULT_SMTP_PORT` constant instead + * @see SMTP::DEFAULT_SMTP_PORT + */ + public $SMTP_PORT = 25; + + /** + * SMTP reply line ending. + * @type string + * @deprecated Use the `CRLF` constant instead + * @see SMTP::CRLF + */ + public $CRLF = "\r\n"; + + /** + * Debug output level. + * Options: + * * self::DEBUG_OFF (`0`) No debug output, default + * * self::DEBUG_CLIENT (`1`) Client commands + * * self::DEBUG_SERVER (`2`) Client commands and server responses + * * self::DEBUG_CONNECTION (`3`) As DEBUG_SERVER plus connection status + * * self::DEBUG_LOWLEVEL (`4`) Low-level data output, all messages + * @type integer + */ + public $do_debug = self::DEBUG_OFF; + + /** + * How to handle debug output. + * Options: + * * `echo` Output plain-text as-is, appropriate for CLI + * * `html` Output escaped, line breaks converted to `
    `, appropriate for browser output + * * `error_log` Output to error log as configured in php.ini + * + * Alternatively, you can provide a callable expecting two params: a message string and the debug level: + * + * $smtp->Debugoutput = function($str, $level) {echo "debug level $level; message: $str";}; + * + * @type string|callable + */ + public $Debugoutput = 'echo'; + + /** + * Whether to use VERP. + * @link http://en.wikipedia.org/wiki/Variable_envelope_return_path + * @link http://www.postfix.org/VERP_README.html Info on VERP + * @type boolean + */ + public $do_verp = false; + + /** + * The timeout value for connection, in seconds. + * Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2 + * This needs to be quite high to function correctly with hosts using greetdelay as an anti-spam measure. + * @link http://tools.ietf.org/html/rfc2821#section-4.5.3.2 + * @type integer + */ + public $Timeout = 300; + + /** + * How long to wait for commands to complete, in seconds. + * Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2 + * @type integer + */ + public $Timelimit = 300; + + /** + * The socket for the server connection. + * @type resource + */ + protected $smtp_conn; + + /** + * Error message, if any, for the last call. + * @type array + */ + protected $error = array(); + + /** + * The reply the server sent to us for HELO. + * If null, no HELO string has yet been received. + * @type string|null + */ + protected $helo_rply = null; + + /** + * The set of SMTP extensions sent in reply to EHLO command. + * Indexes of the array are extension names. + * Value at index 'HELO' or 'EHLO' (according to command that was sent) + * represents the server name. In case of HELO it is the only element of the array. + * Other values can be boolean TRUE or an array containing extension options. + * If null, no HELO/EHLO string has yet been received. + * @type array|null + */ + protected $server_caps = null; + + /** + * The most recent reply received from the server. + * @type string + */ + protected $last_reply = ''; + + /** + * Output debugging info via a user-selected method. + * @see SMTP::$Debugoutput + * @see SMTP::$do_debug + * @param string $str Debug string to output + * @param integer $level The debug level of this message; see DEBUG_* constants + * @return void + */ + protected function edebug($str, $level = 0) + { + if ($level > $this->do_debug) { + return; + } + //Avoid clash with built-in function names + if (!in_array($this->Debugoutput, array('error_log', 'html', 'echo')) and is_callable($this->Debugoutput)) { + call_user_func($this->Debugoutput, $str, $this->do_debug); + return; + } + switch ($this->Debugoutput) { + case 'error_log': + //Don't output, just log + error_log($str); + break; + case 'html': + //Cleans up output a bit for a better looking, HTML-safe output + echo htmlentities( + preg_replace('/[\r\n]+/', '', $str), + ENT_QUOTES, + 'UTF-8' + ) + . "
    \n"; + break; + case 'echo': + default: + //Normalize line breaks + $str = preg_replace('/(\r\n|\r|\n)/ms', "\n", $str); + echo gmdate('Y-m-d H:i:s') . "\t" . str_replace( + "\n", + "\n \t ", + trim($str) + )."\n"; + } + } + + /** + * Connect to an SMTP server. + * @param string $host SMTP server IP or host name + * @param integer $port The port number to connect to + * @param integer $timeout How long to wait for the connection to open + * @param array $options An array of options for stream_context_create() + * @access public + * @return boolean + */ + public function connect($host, $port = null, $timeout = 30, $options = array()) + { + static $streamok; + //This is enabled by default since 5.0.0 but some providers disable it + //Check this once and cache the result + if (is_null($streamok)) { + $streamok = function_exists('stream_socket_client'); + } + // Clear errors to avoid confusion + $this->error = array(); + // Make sure we are __not__ connected + if ($this->connected()) { + // Already connected, generate error + $this->error = array('error' => 'Already connected to a server'); + return false; + } + if (empty($port)) { + $port = self::DEFAULT_SMTP_PORT; + } + // Connect to the SMTP server + $this->edebug( + "Connection: opening to $host:$port, t=$timeout, opt=".var_export($options, true), + self::DEBUG_CONNECTION + ); + $errno = 0; + $errstr = ''; + if ($streamok) { + $socket_context = stream_context_create($options); + //Suppress errors; connection failures are handled at a higher level + $this->smtp_conn = @stream_socket_client( + $host . ":" . $port, + $errno, + $errstr, + $timeout, + STREAM_CLIENT_CONNECT, + $socket_context + ); + } else { + //Fall back to fsockopen which should work in more places, but is missing some features + $this->edebug( + "Connection: stream_socket_client not available, falling back to fsockopen", + self::DEBUG_CONNECTION + ); + $this->smtp_conn = fsockopen( + $host, + $port, + $errno, + $errstr, + $timeout + ); + } + // Verify we connected properly + if (!is_resource($this->smtp_conn)) { + $this->error = array( + 'error' => 'Failed to connect to server', + 'errno' => $errno, + 'errstr' => $errstr + ); + $this->edebug( + 'SMTP ERROR: ' . $this->error['error'] + . ": $errstr ($errno)", + self::DEBUG_CLIENT + ); + return false; + } + $this->edebug('Connection: opened', self::DEBUG_CONNECTION); + // SMTP server can take longer to respond, give longer timeout for first read + // Windows does not have support for this timeout function + if (substr(PHP_OS, 0, 3) != 'WIN') { + $max = ini_get('max_execution_time'); + if ($max != 0 && $timeout > $max) { // Don't bother if unlimited + @set_time_limit($timeout); + } + stream_set_timeout($this->smtp_conn, $timeout, 0); + } + // Get any announcement + $announce = $this->get_lines(); + $this->edebug('SERVER -> CLIENT: ' . $announce, self::DEBUG_SERVER); + return true; + } + + /** + * Initiate a TLS (encrypted) session. + * @access public + * @return boolean + */ + public function startTLS() + { + if (!$this->sendCommand('STARTTLS', 'STARTTLS', 220)) { + return false; + } + // Begin encrypted connection + if (!stream_socket_enable_crypto( + $this->smtp_conn, + true, + STREAM_CRYPTO_METHOD_TLS_CLIENT + )) { + return false; + } + return true; + } + + /** + * Perform SMTP authentication. + * Must be run after hello(). + * @see hello() + * @param string $username The user name + * @param string $password The password + * @param string $authtype The auth type (PLAIN, LOGIN, NTLM, CRAM-MD5) + * @param string $realm The auth realm for NTLM + * @param string $workstation The auth workstation for NTLM + * @access public + * @return boolean True if successfully authenticated. + */ + public function authenticate( + $username, + $password, + $authtype = null, + $realm = '', + $workstation = '' + ) { + if (!$this->server_caps) { + $this->error = array('error' => 'Authentication is not allowed before HELO/EHLO'); + return false; + } + + if (array_key_exists('EHLO', $this->server_caps)) { + // SMTP extensions are available. Let's try to find a proper authentication method + + if (!array_key_exists('AUTH', $this->server_caps)) { + $this->error = array( 'error' => 'Authentication is not allowed at this stage' ); + // 'at this stage' means that auth may be allowed after the stage changes + // e.g. after STARTTLS + return false; + } + + self::edebug('Auth method requested: ' . ($authtype ? $authtype : 'UNKNOWN'), self::DEBUG_LOWLEVEL); + self::edebug( + 'Auth methods available on the server: ' . implode(',', $this->server_caps['AUTH']), + self::DEBUG_LOWLEVEL + ); + + if (empty($authtype)) { + foreach (array('LOGIN', 'CRAM-MD5', 'NTLM', 'PLAIN') as $method) { + if (in_array($method, $this->server_caps['AUTH'])) { + $authtype = $method; + break; + } + } + if (empty($authtype)) { + $this->error = array( 'error' => 'No supported authentication methods found' ); + return false; + } + self::edebug('Auth method selected: '.$authtype, self::DEBUG_LOWLEVEL); + } + + if (!in_array($authtype, $this->server_caps['AUTH'])) { + $this->error = array( 'error' => 'The requested authentication method "' + . $authtype . '" is not supported by the server' ); + return false; + } + } elseif (empty($authtype)) { + $authtype = 'LOGIN'; + } + switch ($authtype) { + case 'PLAIN': + // Start authentication + if (!$this->sendCommand('AUTH', 'AUTH PLAIN', 334)) { + return false; + } + // Send encoded username and password + if (!$this->sendCommand( + 'User & Password', + base64_encode("\0" . $username . "\0" . $password), + 235 + ) + ) { + return false; + } + break; + case 'LOGIN': + // Start authentication + if (!$this->sendCommand('AUTH', 'AUTH LOGIN', 334)) { + return false; + } + if (!$this->sendCommand("Username", base64_encode($username), 334)) { + return false; + } + if (!$this->sendCommand("Password", base64_encode($password), 235)) { + return false; + } + break; + case 'NTLM': + /* + * ntlm_sasl_client.php + * Bundled with Permission + * + * How to telnet in windows: + * http://technet.microsoft.com/en-us/library/aa995718%28EXCHG.65%29.aspx + * PROTOCOL Docs http://curl.haxx.se/rfc/ntlm.html#ntlmSmtpAuthentication + */ + require_once 'extras/ntlm_sasl_client.php'; + $temp = new stdClass(); + $ntlm_client = new ntlm_sasl_client_class; + //Check that functions are available + if (!$ntlm_client->Initialize($temp)) { + $this->error = array('error' => $temp->error); + $this->edebug( + 'You need to enable some modules in your php.ini file: ' + . $this->error['error'], + self::DEBUG_CLIENT + ); + return false; + } + //msg1 + $msg1 = $ntlm_client->TypeMsg1($realm, $workstation); //msg1 + + if (!$this->sendCommand( + 'AUTH NTLM', + 'AUTH NTLM ' . base64_encode($msg1), + 334 + ) + ) { + return false; + } + //Though 0 based, there is a white space after the 3 digit number + //msg2 + $challenge = substr($this->last_reply, 3); + $challenge = base64_decode($challenge); + $ntlm_res = $ntlm_client->NTLMResponse( + substr($challenge, 24, 8), + $password + ); + //msg3 + $msg3 = $ntlm_client->TypeMsg3( + $ntlm_res, + $username, + $realm, + $workstation + ); + // send encoded username + return $this->sendCommand('Username', base64_encode($msg3), 235); + case 'CRAM-MD5': + // Start authentication + if (!$this->sendCommand('AUTH CRAM-MD5', 'AUTH CRAM-MD5', 334)) { + return false; + } + // Get the challenge + $challenge = base64_decode(substr($this->last_reply, 4)); + + // Build the response + $response = $username . ' ' . $this->hmac($challenge, $password); + + // send encoded credentials + return $this->sendCommand('Username', base64_encode($response), 235); + default: + $this->error = array( 'error' => 'Authentication method "' . $authtype . '" is not supported' ); + return false; + } + return true; + } + + /** + * Calculate an MD5 HMAC hash. + * Works like hash_hmac('md5', $data, $key) + * in case that function is not available + * @param string $data The data to hash + * @param string $key The key to hash with + * @access protected + * @return string + */ + protected function hmac($data, $key) + { + if (function_exists('hash_hmac')) { + return hash_hmac('md5', $data, $key); + } + + // The following borrowed from + // http://php.net/manual/en/function.mhash.php#27225 + + // RFC 2104 HMAC implementation for php. + // Creates an md5 HMAC. + // Eliminates the need to install mhash to compute a HMAC + // by Lance Rushing + + $bytelen = 64; // byte length for md5 + if (strlen($key) > $bytelen) { + $key = pack('H*', md5($key)); + } + $key = str_pad($key, $bytelen, chr(0x00)); + $ipad = str_pad('', $bytelen, chr(0x36)); + $opad = str_pad('', $bytelen, chr(0x5c)); + $k_ipad = $key ^ $ipad; + $k_opad = $key ^ $opad; + + return md5($k_opad . pack('H*', md5($k_ipad . $data))); + } + + /** + * Check connection state. + * @access public + * @return boolean True if connected. + */ + public function connected() + { + if (is_resource($this->smtp_conn)) { + $sock_status = stream_get_meta_data($this->smtp_conn); + if ($sock_status['eof']) { + // The socket is valid but we are not connected + $this->edebug( + 'SMTP NOTICE: EOF caught while checking if connected', + self::DEBUG_CLIENT + ); + $this->close(); + return false; + } + return true; // everything looks good + } + return false; + } + + /** + * Close the socket and clean up the state of the class. + * Don't use this function without first trying to use QUIT. + * @see quit() + * @access public + * @return void + */ + public function close() + { + $this->error = array(); + $this->server_caps = null; + $this->helo_rply = null; + if (is_resource($this->smtp_conn)) { + // close the connection and cleanup + fclose($this->smtp_conn); + $this->smtp_conn = null; //Makes for cleaner serialization + $this->edebug('Connection: closed', self::DEBUG_CONNECTION); + } + } + + /** + * Send an SMTP DATA command. + * Issues a data command and sends the msg_data to the server, + * finializing the mail transaction. $msg_data is the message + * that is to be send with the headers. Each header needs to be + * on a single line followed by a with the message headers + * and the message body being separated by and additional . + * Implements rfc 821: DATA + * @param string $msg_data Message data to send + * @access public + * @return boolean + */ + public function data($msg_data) + { + //This will use the standard timelimit + if (!$this->sendCommand('DATA', 'DATA', 354)) { + return false; + } + + /* The server is ready to accept data! + * According to rfc821 we should not send more than 1000 characters on a single line (including the CRLF) + * so we will break the data up into lines by \r and/or \n then if needed we will break each of those into + * smaller lines to fit within the limit. + * We will also look for lines that start with a '.' and prepend an additional '.'. + * NOTE: this does not count towards line-length limit. + */ + + // Normalize line breaks before exploding + $lines = explode("\n", str_replace(array("\r\n", "\r"), "\n", $msg_data)); + + /* To distinguish between a complete RFC822 message and a plain message body, we check if the first field + * of the first line (':' separated) does not contain a space then it _should_ be a header and we will + * process all lines before a blank line as headers. + */ + + $field = substr($lines[0], 0, strpos($lines[0], ':')); + $in_headers = false; + if (!empty($field) && strpos($field, ' ') === false) { + $in_headers = true; + } + + foreach ($lines as $line) { + $lines_out = array(); + if ($in_headers and $line == '') { + $in_headers = false; + } + //We need to break this line up into several smaller lines + //This is a small micro-optimisation: isset($str[$len]) is equivalent to (strlen($str) > $len) + while (isset($line[self::MAX_LINE_LENGTH])) { + //Working backwards, try to find a space within the last MAX_LINE_LENGTH chars of the line to break on + //so as to avoid breaking in the middle of a word + $pos = strrpos(substr($line, 0, self::MAX_LINE_LENGTH), ' '); + if (!$pos) { //Deliberately matches both false and 0 + //No nice break found, add a hard break + $pos = self::MAX_LINE_LENGTH - 1; + $lines_out[] = substr($line, 0, $pos); + $line = substr($line, $pos); + } else { + //Break at the found point + $lines_out[] = substr($line, 0, $pos); + //Move along by the amount we dealt with + $line = substr($line, $pos + 1); + } + //If processing headers add a LWSP-char to the front of new line RFC822 section 3.1.1 + if ($in_headers) { + $line = "\t" . $line; + } + } + $lines_out[] = $line; + + //Send the lines to the server + foreach ($lines_out as $line_out) { + //RFC2821 section 4.5.2 + if (!empty($line_out) and $line_out[0] == '.') { + $line_out = '.' . $line_out; + } + $this->client_send($line_out . self::CRLF); + } + } + + //Message data has been sent, complete the command + //Increase timelimit for end of DATA command + $savetimelimit = $this->Timelimit; + $this->Timelimit = $this->Timelimit * 2; + $result = $this->sendCommand('DATA END', '.', 250); + //Restore timelimit + $this->Timelimit = $savetimelimit; + return $result; + } + + /** + * Send an SMTP HELO or EHLO command. + * Used to identify the sending server to the receiving server. + * This makes sure that client and server are in a known state. + * Implements RFC 821: HELO + * and RFC 2821 EHLO. + * @param string $host The host name or IP to connect to + * @access public + * @return boolean + */ + public function hello($host = '') + { + //Try extended hello first (RFC 2821) + return (boolean)($this->sendHello('EHLO', $host) or $this->sendHello('HELO', $host)); + } + + /** + * Send an SMTP HELO or EHLO command. + * Low-level implementation used by hello() + * @see hello() + * @param string $hello The HELO string + * @param string $host The hostname to say we are + * @access protected + * @return boolean + */ + protected function sendHello($hello, $host) + { + $noerror = $this->sendCommand($hello, $hello . ' ' . $host, 250); + $this->helo_rply = $this->last_reply; + if ($noerror) { + $this->parseHelloFields($hello); + } else { + $this->server_caps = null; + } + return $noerror; + } + + /** + * Parse a reply to HELO/EHLO command to discover server extensions. + * In case of HELO, the only parameter that can be discovered is a server name. + * @access protected + * @param string $type - 'HELO' or 'EHLO' + */ + protected function parseHelloFields($type) + { + $this->server_caps = array(); + $lines = explode("\n", $this->last_reply); + foreach ($lines as $n => $s) { + $s = trim(substr($s, 4)); + if (!$s) { + continue; + } + $fields = explode(' ', $s); + if ($fields) { + if (!$n) { + $name = $type; + $fields = $fields[0]; + } else { + $name = array_shift($fields); + if ($name == 'SIZE') { + $fields = ($fields) ? $fields[0] : 0; + } + } + $this->server_caps[$name] = ($fields ? $fields : true); + } + } + } + + /** + * Send an SMTP MAIL command. + * Starts a mail transaction from the email address specified in + * $from. Returns true if successful or false otherwise. If True + * the mail transaction is started and then one or more recipient + * commands may be called followed by a data command. + * Implements rfc 821: MAIL FROM: + * @param string $from Source address of this message + * @access public + * @return boolean + */ + public function mail($from) + { + $useVerp = ($this->do_verp ? ' XVERP' : ''); + return $this->sendCommand( + 'MAIL FROM', + 'MAIL FROM:<' . $from . '>' . $useVerp, + 250 + ); + } + + /** + * Send an SMTP QUIT command. + * Closes the socket if there is no error or the $close_on_error argument is true. + * Implements from rfc 821: QUIT + * @param boolean $close_on_error Should the connection close if an error occurs? + * @access public + * @return boolean + */ + public function quit($close_on_error = true) + { + $noerror = $this->sendCommand('QUIT', 'QUIT', 221); + $err = $this->error; //Save any error + if ($noerror or $close_on_error) { + $this->close(); + $this->error = $err; //Restore any error from the quit command + } + return $noerror; + } + + /** + * Send an SMTP RCPT command. + * Sets the TO argument to $toaddr. + * Returns true if the recipient was accepted false if it was rejected. + * Implements from rfc 821: RCPT TO: + * @param string $toaddr The address the message is being sent to + * @access public + * @return boolean + */ + public function recipient($toaddr) + { + return $this->sendCommand( + 'RCPT TO', + 'RCPT TO:<' . $toaddr . '>', + array(250, 251) + ); + } + + /** + * Send an SMTP RSET command. + * Abort any transaction that is currently in progress. + * Implements rfc 821: RSET + * @access public + * @return boolean True on success. + */ + public function reset() + { + return $this->sendCommand('RSET', 'RSET', 250); + } + + /** + * Send a command to an SMTP server and check its return code. + * @param string $command The command name - not sent to the server + * @param string $commandstring The actual command to send + * @param integer|array $expect One or more expected integer success codes + * @access protected + * @return boolean True on success. + */ + protected function sendCommand($command, $commandstring, $expect) + { + if (!$this->connected()) { + $this->error = array( + 'error' => "Called $command without being connected" + ); + return false; + } + $this->client_send($commandstring . self::CRLF); + + $this->last_reply = $this->get_lines(); + // Fetch SMTP code and possible error code explanation + $matches = array(); + if (preg_match("/^([0-9]{3})[ -](?:([0-9]\\.[0-9]\\.[0-9]) )?/", $this->last_reply, $matches)) { + $code = $matches[1]; + $code_ex = (count($matches) > 2 ? $matches[2] : null); + // Cut off error code from each response line + $detail = preg_replace( + "/{$code}[ -]".($code_ex ? str_replace('.', '\\.', $code_ex).' ' : '')."/m", + '', + $this->last_reply + ); + } else { // Fall back to simple parsing if regex fails + $code = substr($this->last_reply, 0, 3); + $code_ex = null; + $detail = substr($this->last_reply, 4); + } + + $this->edebug('SERVER -> CLIENT: ' . $this->last_reply, self::DEBUG_SERVER); + + if (!in_array($code, (array)$expect)) { + $this->error = array( + 'error' => "$command command failed", + 'smtp_code' => $code, + 'smtp_code_ex' => $code_ex, + 'detail' => $detail + ); + $this->edebug( + 'SMTP ERROR: ' . $this->error['error'] . ': ' . $this->last_reply, + self::DEBUG_CLIENT + ); + return false; + } + + $this->error = array(); + return true; + } + + /** + * Send an SMTP SAML command. + * Starts a mail transaction from the email address specified in $from. + * Returns true if successful or false otherwise. If True + * the mail transaction is started and then one or more recipient + * commands may be called followed by a data command. This command + * will send the message to the users terminal if they are logged + * in and send them an email. + * Implements rfc 821: SAML FROM: + * @param string $from The address the message is from + * @access public + * @return boolean + */ + public function sendAndMail($from) + { + return $this->sendCommand('SAML', "SAML FROM:$from", 250); + } + + /** + * Send an SMTP VRFY command. + * @param string $name The name to verify + * @access public + * @return boolean + */ + public function verify($name) + { + return $this->sendCommand('VRFY', "VRFY $name", array(250, 251)); + } + + /** + * Send an SMTP NOOP command. + * Used to keep keep-alives alive, doesn't actually do anything + * @access public + * @return boolean + */ + public function noop() + { + return $this->sendCommand('NOOP', 'NOOP', 250); + } + + /** + * Send an SMTP TURN command. + * This is an optional command for SMTP that this class does not support. + * This method is here to make the RFC821 Definition complete for this class + * and _may_ be implemented in future + * Implements from rfc 821: TURN + * @access public + * @return boolean + */ + public function turn() + { + $this->error = array( + 'error' => 'The SMTP TURN command is not implemented' + ); + $this->edebug('SMTP NOTICE: ' . $this->error['error'], self::DEBUG_CLIENT); + return false; + } + + /** + * Send raw data to the server. + * @param string $data The data to send + * @access public + * @return integer|boolean The number of bytes sent to the server or false on error + */ + public function client_send($data) + { + $this->edebug("CLIENT -> SERVER: $data", self::DEBUG_CLIENT); + return fwrite($this->smtp_conn, $data); + } + + /** + * Get the latest error. + * @access public + * @return array + */ + public function getError() + { + return $this->error; + } + + /** + * Get SMTP extensions available on the server + * @access public + * @return array|null + */ + public function getServerExtList() + { + return $this->server_caps; + } + + /** + * A multipurpose method + * The method works in three ways, dependent on argument value and current state + * 1. HELO/EHLO was not sent - returns null and set up $this->error + * 2. HELO was sent + * $name = 'HELO': returns server name + * $name = 'EHLO': returns boolean false + * $name = any string: returns null and set up $this->error + * 3. EHLO was sent + * $name = 'HELO'|'EHLO': returns server name + * $name = any string: if extension $name exists, returns boolean True + * or its options. Otherwise returns boolean False + * In other words, one can use this method to detect 3 conditions: + * - null returned: handshake was not or we don't know about ext (refer to $this->error) + * - false returned: the requested feature exactly not exists + * - positive value returned: the requested feature exists + * @param string $name Name of SMTP extension or 'HELO'|'EHLO' + * @return mixed + */ + public function getServerExt($name) + { + if (!$this->server_caps) { + $this->error = array('No HELO/EHLO was sent'); + return null; + } + + // the tight logic knot ;) + if (!array_key_exists($name, $this->server_caps)) { + if ($name == 'HELO') { + return $this->server_caps['EHLO']; + } + if ($name == 'EHLO' || array_key_exists('EHLO', $this->server_caps)) { + return false; + } + $this->error = array('HELO handshake was used. Client knows nothing about server extensions'); + return null; + } + + return $this->server_caps[$name]; + } + + /** + * Get the last reply from the server. + * @access public + * @return string + */ + public function getLastReply() + { + return $this->last_reply; + } + + /** + * Read the SMTP server's response. + * Either before eof or socket timeout occurs on the operation. + * With SMTP we can tell if we have more lines to read if the + * 4th character is '-' symbol. If it is a space then we don't + * need to read anything else. + * @access protected + * @return string + */ + protected function get_lines() + { + // If the connection is bad, give up straight away + if (!is_resource($this->smtp_conn)) { + return ''; + } + $data = ''; + $endtime = 0; + stream_set_timeout($this->smtp_conn, $this->Timeout); + if ($this->Timelimit > 0) { + $endtime = time() + $this->Timelimit; + } + while (is_resource($this->smtp_conn) && !feof($this->smtp_conn)) { + $str = @fgets($this->smtp_conn, 515); + $this->edebug("SMTP -> get_lines(): \$data was \"$data\"", self::DEBUG_LOWLEVEL); + $this->edebug("SMTP -> get_lines(): \$str is \"$str\"", self::DEBUG_LOWLEVEL); + $data .= $str; + $this->edebug("SMTP -> get_lines(): \$data is \"$data\"", self::DEBUG_LOWLEVEL); + // If 4th character is a space, we are done reading, break the loop, micro-optimisation over strlen + if ((isset($str[3]) and $str[3] == ' ')) { + break; + } + // Timed-out? Log and break + $info = stream_get_meta_data($this->smtp_conn); + if ($info['timed_out']) { + $this->edebug( + 'SMTP -> get_lines(): timed-out (' . $this->Timeout . ' sec)', + self::DEBUG_LOWLEVEL + ); + break; + } + // Now check if reads took too long + if ($endtime and time() > $endtime) { + $this->edebug( + 'SMTP -> get_lines(): timelimit reached ('. + $this->Timelimit . ' sec)', + self::DEBUG_LOWLEVEL + ); + break; + } + } + return $data; + } + + /** + * Enable or disable VERP address generation. + * @param boolean $enabled + */ + public function setVerp($enabled = false) + { + $this->do_verp = $enabled; + } + + /** + * Get VERP address generation mode. + * @return boolean + */ + public function getVerp() + { + return $this->do_verp; + } + + /** + * Set debug output method. + * @param string|callable $method The name of the mechanism to use for debugging output, or a callable to handle it. + */ + public function setDebugOutput($method = 'echo') + { + $this->Debugoutput = $method; + } + + /** + * Get debug output method. + * @return string + */ + public function getDebugOutput() + { + return $this->Debugoutput; + } + + /** + * Set debug output level. + * @param integer $level + */ + public function setDebugLevel($level = 0) + { + $this->do_debug = $level; + } + + /** + * Get debug output level. + * @return integer + */ + public function getDebugLevel() + { + return $this->do_debug; + } + + /** + * Set SMTP timeout. + * @param integer $timeout + */ + public function setTimeout($timeout = 0) + { + $this->Timeout = $timeout; + } + + /** + * Get SMTP timeout. + * @return integer + */ + public function getTimeout() + { + return $this->Timeout; + } +} diff --git a/inc/siteconfig.inc.php b/inc/siteconfig.inc.php new file mode 100644 index 0000000..71df0d4 --- /dev/null +++ b/inc/siteconfig.inc.php @@ -0,0 +1,126 @@ + 0) + { + while ($languages_row = mysqli_fetch_array($languages_result)) + { + $language_code = $languages_row['language_code']; + $language_name = $languages_row['language']; + $languages[$language_code] = $language_name; + } + } + +?> \ No newline at end of file diff --git a/inc/sms/.DS_Store b/inc/sms/.DS_Store new file mode 100644 index 0000000..68eedd8 Binary files /dev/null and b/inc/sms/.DS_Store differ diff --git a/inc/sms/nexmo/.DS_Store b/inc/sms/nexmo/.DS_Store new file mode 100644 index 0000000..98c95dd Binary files /dev/null and b/inc/sms/nexmo/.DS_Store differ diff --git a/inc/sms/nexmo/NexmoAccount.php b/inc/sms/nexmo/NexmoAccount.php new file mode 100644 index 0000000..bc11e12 --- /dev/null +++ b/inc/sms/nexmo/NexmoAccount.php @@ -0,0 +1,244 @@ + array('method' => 'GET', 'url' => '/account/get-balance/{k}/{s}'), + 'get_pricing' => array('method' => 'GET', 'url' => '/account/get-pricing/outbound/{k}/{s}/{country_code}'), + 'get_own_numbers' => array('method' => 'GET', 'url' => '/account/numbers/{k}/{s}'), + 'search_numbers' => array('method' => 'GET', 'url' => '/number/search/{k}/{s}/{country_code}?pattern={pattern}'), + 'buy_number' => array('method' => 'POST', 'url' => '/number/buy/{k}/{s}/{country_code}/{msisdn}'), + 'cancel_number' => array('method' => 'POST', 'url' => '/number/cancel/{k}/{s}/{country_code}/{msisdn}') + ); + + + private $cache = array(); + + /** + * @param $nx_key Your Nexmo account key + * @param $nx_secret Your Nexmo secret + */ + public function __construct ($api_key, $api_secret) { + $this->nx_key = $api_key; + $this->nx_secret = $api_secret; + } + + + /** + * Return your account balance in Euros + * @return float|bool + */ + public function balance () { + if (!isset($this->cache['balance'])) { + $tmp = $this->apiCall('get_balance'); + if (!$tmp['data']) return false; + + $this->cache['balance'] = $tmp['data']['value']; + } + + return (float)$this->cache['balance']; + } + + + /** + * Find out the price to send a message to a country + * @param $country_code Country code to return the SMS price for + * @return float|bool + */ + public function smsPricing ($country_code) { + $country_code = strtoupper($country_code); + + if (!isset($this->cache['country_codes'])) + $this->cache['country_codes'] = array(); + + if (!isset($this->cache['country_codes'][$country_code])) { + $tmp = $this->apiCall('get_pricing', array('country_code'=>$country_code)); + if (!$tmp['data']) return false; + + $this->cache['country_codes'][$country_code] = $tmp['data']; + } + + return (float)$this->cache['country_codes'][$country_code]['mt']; + } + + + /** + * Return a countries international dialing code + * @param $country_code Country code to return the dialing code for + * @return string|bool + */ + public function getCountryDialingCode ($country_code) { + $country_code = strtoupper($country_code); + + if (!isset($this->cache['country_codes'])) + $this->cache['country_codes'] = array(); + + if (!isset($this->cache['country_codes'][$country_code])) { + $tmp = $this->apiCall('get_pricing', array('country_code'=>$country_code)); + if (!$tmp['data']) return false; + + $this->cache['country_codes'][$country_code] = $tmp['data']; + } + + return (string)$this->cache['country_codes'][$country_code]['prefix']; + } + + + /** + * Get an array of all purchased numbers for your account + * @return array|bool + */ + public function numbersList () { + if (!isset($this->cache['own_numbers'])) { + $tmp = $this->apiCall('get_own_numbers'); + if (!$tmp['data']) return false; + + $this->cache['own_numbers'] = $tmp['data']; + } + + if (!$this->cache['own_numbers']['numbers']) { + return array(); + } + + return $this->cache['own_numbers']['numbers']; + } + + + /** + * Search available numbers to purchase for your account + * @param $country_code Country code to search available numbers in + * @param $pattern Number pattern to search for + * @return bool + */ + public function numbersSearch ($country_code, $pattern) { + $country_code = strtoupper($country_code); + + $tmp = $this->apiCall('search_numbers', array('country_code'=>$country_code, 'pattern'=>$pattern)); + if (!$tmp['data'] || !isset($tmp['data']['numbers'])) return false; + return $tmp['data']['numbers']; + } + + + /** + * Purchase an available number to your account + * @param $country_code Country code for your desired number + * @param $msisdn Full number which you wish to purchase + * @return bool + */ + public function numbersBuy ($country_code, $msisdn) { + $country_code = strtoupper($country_code); + + $tmp = $this->apiCall('buy_number', array('country_code'=>$country_code, 'msisdn'=>$msisdn)); + return ($tmp['http_code'] === 200); + } + + + /** + * Cancel an existing number on your account + * @param $country_code Country code for which the number is for + * @param $msisdn The number to cancel + * @return bool + */ + public function numbersCancel ($country_code, $msisdn) { + $country_code = strtoupper($country_code); + + $tmp = $this->apiCall('cancel_number', array('country_code'=>$country_code, 'msisdn'=>$msisdn)); + return ($tmp['http_code'] === 200); + } + + + /** + * Run a REST command on Nexmo SMS services + * @param $command + * @param array $data + * @return array|bool + */ + private function apiCall($command, $data=array()) { + if (!isset($this->rest_commands[$command])) { + return false; + } + + $cmd = $this->rest_commands[$command]; + + $url = $cmd['url']; + $url = str_replace(array('{k}', '{s}') ,array($this->nx_key, $this->nx_secret), $url); + + $parsed_data = array(); + foreach ($data as $k => $v) $parsed_data['{'.$k.'}'] = $v; + $url = str_replace(array_keys($parsed_data) ,array_values($parsed_data), $url); + + $url = trim($this->rest_base_url, '/') . $url; + $post_data = ''; + + // If available, use CURL + if (function_exists('curl_version')) { + + $to_nexmo = curl_init( $url ); + curl_setopt( $to_nexmo, CURLOPT_RETURNTRANSFER, true ); + curl_setopt( $to_nexmo, CURLOPT_SSL_VERIFYPEER, false); + curl_setopt($to_nexmo, CURLOPT_HTTPHEADER, array('Accept: application/json')); + + if ($cmd['method'] == 'POST') { + curl_setopt( $to_nexmo, CURLOPT_POST, true ); + curl_setopt( $to_nexmo, CURLOPT_POSTFIELDS, $post_data ); + } + + $from_nexmo = curl_exec( $to_nexmo ); + $curl_info = curl_getinfo($to_nexmo); + $http_response_code = $curl_info['http_code']; + curl_close ( $to_nexmo ); + + } elseif (ini_get('allow_url_fopen')) { + // No CURL available so try the awesome file_get_contents + + $opts = array('http' => + array( + 'method' => 'GET', + 'header' => 'Accept: application/json' + ) + ); + + if ($cmd['method'] == 'POST') { + $opts['http']['method'] = 'POST'; + $opts['http']['header'] .= "\r\nContent-type: application/x-www-form-urlencoded"; + $opts['http']['content'] = $post_data; + } + + $context = stream_context_create($opts); + $from_nexmo = file_get_contents($url, false, $context); + + // et the response code + preg_match('/HTTP\/[^ ]+ ([0-9]+)/i', $http_response_header[0], $m); + $http_response_code = $m[1]; + + } else { + // No way of sending a HTTP post :( + return false; + } + + $data = json_decode($from_nexmo, true); + return array( + 'data' => $data, + 'http_code' => (int)$http_response_code + ); + + } + } diff --git a/inc/sms/nexmo/NexmoMessage.php b/inc/sms/nexmo/NexmoMessage.php new file mode 100644 index 0000000..44f2fbf --- /dev/null +++ b/inc/sms/nexmo/NexmoMessage.php @@ -0,0 +1,451 @@ +nx_key = $api_key; + $this->nx_secret = $api_secret; + } + function sendVoice($to , $text){ + $text = $this->nexmo_conv($text); + $url = "https://rest.nexmo.com/tts/json?api_key=$this->nx_key&api_secret=$this->nx_secret&to=$to&text=$text&lg=zh-cn"; + + return $this->nexmoParse(file_get_contents($url)); + + } + + + /** + * Prepare new text message. + * + * If $unicode is not provided we will try to detect the + * message type. Otherwise set to TRUE if you require + * unicode characters. + */ + function sendText ( $to, $from, $message, $unicode=null ) { + + // Making sure strings are UTF-8 encoded + if ( !is_numeric($from) && !mb_check_encoding($from, 'UTF-8') ) { + trigger_error('$from needs to be a valid UTF-8 encoded string'); + return false; + } + + if ( !mb_check_encoding($message, 'UTF-8') ) { + trigger_error('$message needs to be a valid UTF-8 encoded string'); + return false; + } + + if ($unicode === null) { + $containsUnicode = max(array_map('ord', str_split($message))) > 127; + } else { + $containsUnicode = (bool)$unicode; + } + + // Make sure $from is valid + $from = $this->validateOriginator($from); + + // URL Encode + $from = urlencode( $from ); + $message = urlencode( $message ); + + // Send away! + $post = array( + 'from' => $from, + 'to' => $to, + 'text' => $message, + 'type' => $containsUnicode ? 'unicode' : 'text' + ); + return $this->sendRequest ( $post ); + + } + + + /** + * Prepare new WAP message. + */ + function sendBinary ( $to, $from, $body, $udh ) { + + //Binary messages must be hex encoded + $body = bin2hex ( $body ); + $udh = bin2hex ( $udh ); + + // Make sure $from is valid + $from = $this->validateOriginator($from); + + // Send away! + $post = array( + 'from' => $from, + 'to' => $to, + 'type' => 'binary', + 'body' => $body, + 'udh' => $udh + ); + return $this->sendRequest ( $post ); + + } + + + /** + * Prepare new binary message. + */ + function pushWap ( $to, $from, $title, $url, $validity = 172800000 ) { + + // Making sure $title and $url are UTF-8 encoded + if ( !mb_check_encoding($title, 'UTF-8') || !mb_check_encoding($url, 'UTF-8') ) { + trigger_error('$title and $udh need to be valid UTF-8 encoded strings'); + return false; + } + + // Make sure $from is valid + $from = $this->validateOriginator($from); + + // Send away! + $post = array( + 'from' => $from, + 'to' => $to, + 'type' => 'wappush', + 'url' => $url, + 'title' => $title, + 'validity' => $validity + ); + return $this->sendRequest ( $post ); + + } + + + /** + * Prepare and send a new message. + */ + private function sendRequest ( $data ) { + // Build the post data + $data = array_merge($data, array('username' => $this->nx_key, 'password' => $this->nx_secret)); + $post = ''; + foreach($data as $k => $v){ + $post .= "&$k=$v"; + } + + // If available, use CURL + if (function_exists('curl_version')) { + + $to_nexmo = curl_init( $this->nx_uri ); + curl_setopt( $to_nexmo, CURLOPT_POST, true ); + curl_setopt( $to_nexmo, CURLOPT_RETURNTRANSFER, true ); + curl_setopt( $to_nexmo, CURLOPT_POSTFIELDS, $post ); + + if (!$this->ssl_verify) { + curl_setopt( $to_nexmo, CURLOPT_SSL_VERIFYPEER, false); + } + + $from_nexmo = curl_exec( $to_nexmo ); + curl_close ( $to_nexmo ); + + } elseif (ini_get('allow_url_fopen')) { + // No CURL available so try the awesome file_get_contents + + $opts = array('http' => + array( + 'method' => 'POST', + 'header' => 'Content-type: application/x-www-form-urlencoded', + 'content' => $post + ) + ); + $context = stream_context_create($opts); + $from_nexmo = file_get_contents($this->nx_uri, false, $context); + + } else { + // No way of sending a HTTP post :( + return false; + } + + + return $this->nexmoParse( $from_nexmo ); + + } + + + /** + * Recursively normalise any key names in an object, removing unwanted characters + */ + private function normaliseKeys ($obj) { + // Determine is working with a class or araay + if ($obj instanceof stdClass) { + $new_obj = new stdClass(); + $is_obj = true; + } else { + $new_obj = array(); + $is_obj = false; + } + + + foreach($obj as $key => $val){ + // If we come across another class/array, normalise it + if ($val instanceof stdClass || is_array($val)) { + $val = $this->normaliseKeys($val); + } + + // Replace any unwanted characters in they key name + if ($is_obj) { + $new_obj->{str_replace('-', '', $key)} = $val; + } else { + $new_obj[str_replace('-', '', $key)] = $val; + } + } + + return $new_obj; + } + + + /** + * Parse server response. + */ + private function nexmoParse ( $from_nexmo ) { + $response = json_decode($from_nexmo); + + // Copy the response data into an object, removing any '-' characters from the key + $response_obj = $this->normaliseKeys($response); + + if ($response_obj) { + $this->nexmo_response = $response_obj; + + // Find the total cost of this message + $response_obj->cost = $total_cost = 0; + if (is_array($response_obj->messages)) { + foreach ($response_obj->messages as $msg) { + if (property_exists($msg, "messageprice")) { + $total_cost = $total_cost + (float)$msg->messageprice; + } + } + + $response_obj->cost = $total_cost; + } + + return $response_obj; + + } else { + // A malformed response + $this->nexmo_response = array(); + return false; + } + + } + + + /** + * Validate an originator string + * + * If the originator ('from' field) is invalid, some networks may reject the network + * whilst stinging you with the financial cost! While this cannot correct them, it + * will try its best to correctly format them. + */ + private function validateOriginator($inp){ + // Remove any invalid characters + $ret = preg_replace('/[^a-zA-Z0-9]/', '', (string)$inp); + + if(preg_match('/[a-zA-Z]/', $inp)){ + + // Alphanumeric format so make sure it's < 11 chars + $ret = substr($ret, 0, 11); + + } else { + + // Numerical, remove any prepending '00' + if(substr($ret, 0, 2) == '00'){ + $ret = substr($ret, 2); + $ret = substr($ret, 0, 15); + } + } + + return (string)$ret; + } + + + + /** + * Display a brief overview of a sent message. + * Useful for debugging and quick-start purposes. + */ + public function displayOverview( $nexmo_response=null ){ + $info = (!$nexmo_response) ? $this->nexmo_response : $nexmo_response; + + if (!$nexmo_response ) return 'Cannot display an overview of this response'; + + // How many messages were sent? + if ( $info->messagecount > 1 ) { + + $status = 'Your message was sent in ' . $info->messagecount . ' parts'; + + } elseif ( $info->messagecount == 1) { + + $status = 'Your message was sent'; + + } else { + + return 'There was an error sending your message'; + } + + // Build an array of each message status and ID + if (!is_array($info->messages)) $info->messages = array(); + $message_status = array(); + foreach ( $info->messages as $message ) { + $tmp = array('id'=>'', 'status'=>0); + + if ( $message->status != 0) { + $tmp['status'] = $message->errortext; + } else { + $tmp['status'] = 'OK'; + $tmp['id'] = $message->messageid; + } + + $message_status[] = $tmp; + } + + + // Build the output + if (isset($_SERVER['HTTP_HOST'])) { + // HTML output + $ret = ''; + $ret .= ''; + foreach ($message_status as $mstat) { + $ret .= ''; + } + $ret .= '
    '.$status.'
    StatusMessage ID
    '.$mstat['status'].''.$mstat['id'].'
    '; + + } else { + + // CLI output + $ret = "$status:\n"; + + // Get the sizes for the table + $out_sizes = array('id'=>strlen('Message ID'), 'status'=>strlen('Status')); + foreach ($message_status as $mstat) { + if ($out_sizes['id'] < strlen($mstat['id'])) { + $out_sizes['id'] = strlen($mstat['id']); + } + if ($out_sizes['status'] < strlen($mstat['status'])) { + $out_sizes['status'] = strlen($mstat['status']); + } + } + + $ret .= ' '.str_pad('Status', $out_sizes['status'], ' ').' '; + $ret .= str_pad('Message ID', $out_sizes['id'], ' ')."\n"; + foreach ($message_status as $mstat) { + $ret .= ' '.str_pad($mstat['status'], $out_sizes['status'], ' ').' '; + $ret .= str_pad($mstat['id'], $out_sizes['id'], ' ')."\n"; + } + } + + return $ret; + } + + + + + + + + /** + * Inbound text methods + */ + + + /** + * Check for any inbound messages, using $_GET by default. + * + * This will set the current message to the inbound + * message allowing for a future reply() call. + */ + public function inboundText( $data=null ){ + if(!$data) $data = $_GET; + + if(!isset($data['text'], $data['msisdn'], $data['to'])) return false; + + // Get the relevant data + $this->to = $data['to']; + $this->from = $data['msisdn']; + $this->text = $data['text']; + $this->network = (isset($data['network-code'])) ? $data['network-code'] : ''; + $this->message_id = $data['messageId']; + + // Flag that we have an inbound message + $this->inbound_message = true; + + return true; + } + + + /** + * Reply the current message if one is set. + */ + public function reply ($message) { + // Make sure we actually have a text to reply to + if (!$this->inbound_message) { + return false; + } + + return $this->sendText($this->from, $this->to, $message); + } + public function nexmo_conv( $string ) { + $conv = new converter; + $string = $conv->convert('UTF','BIG', $string); + $string = $conv->convert('BIG','GB', $string); + $string = iconv('GBK', 'UTF-8//IGNORE', $string); + $string = urlencode($string); + return $string; + } +} diff --git a/inc/sms/nexmo/NexmoReceipt.php b/inc/sms/nexmo/NexmoReceipt.php new file mode 100644 index 0000000..ecd541c --- /dev/null +++ b/inc/sms/nexmo/NexmoReceipt.php @@ -0,0 +1,58 @@ +found = true; + + // Get the relevant data + $this->to = $data['msisdn']; + $this->from = $data['to']; + $this->network = $data['network-code']; + $this->message_id = $data['messageId']; + $this->status = strtoupper($data['status']); + + // Format the date into timestamp + $dp = date_parse_from_format('ymdGi', $data['scts']); + $this->received_time = mktime($dp['hour'], $dp['minute'], $dp['second'], $dp['month'], $dp['day'], $dp['year']); + } + + + /** + * Returns true if a valid receipt is found + */ + public function exists () { + return $this->found; + } +} \ No newline at end of file diff --git a/inc/sms/nexmo/converter.class.php b/inc/sms/nexmo/converter.class.php new file mode 100644 index 0000000..33ed8b0 --- /dev/null +++ b/inc/sms/nexmo/converter.class.php @@ -0,0 +1,362 @@ +convert('GB','BIG',$String); +* $String='BIG转GB2312(ç¹è½¬ç®€ä½“); +* $String=$Conv->convert('BIG','GB',$String); +* $String='GBK转UTF'; +* $String=$Conv->convert('GBK','UTF',$String); +* $String='BIG转UTF'; +* $String=$Conv->convert('BIG','UTF',$String); +* $String='UTF转GBK'; +* $String=$Conv->convert('UTF','GBK',$String); +* $String='UTF转BIG'; +* $String=$Conv->convert('UTF','BIG',$String); +*/ +class converter{ + + var $ICONV;//是å¦å¯ç”¨iconv函数 + var $TablePath;//ç è¡¨è·¯å¾„ + var $UseMemSize;//把ç è¡¨è¯»åˆ°å†…å­˜,加快速度,但需è¦å ç”¨æ›´å¤šå†…å­˜ + /** + * 构造函数 + * åˆå§‹åŒ–å˜é‡ + */ + function converter($TablePath=null){ + $this->TablePath=empty($TablePath)?dirname(__FILE__).'/tables/':$TablePath; + if(function_exists('iconv')){ + $this->ICONV=true; + } + } + + /** + * 转æ¢å‡½æ•° + */ + function convert($Source,$Target,$String){ + $Source=strtolower($Source); + $Target=strtolower($Target); + $Func=$Source.'2'.$Target; + return $this->$Func($String); + } + + /** + * unicode转utf + * 详细å¯è§ + * http://www.linuxforum.net/books/UTF-8-Unicode.html + */ + function uni2utf($Char){ + $Return=''; + if($Char<0x80){ + $Return.=$Char; + }elseif($Char<0x800){ + $Return.=chr(0xC0|$Char>>6); + $Return.=chr(0x80|$Char&0x3F); + }elseif($Char<0x10000){ + $Return.=chr(0xE0|$Char>>12); + $Return.=chr(0x80|$Char>>6&0x3F); + $Return.=chr(0x80|$Char&0x3F); + }elseif($Char<0x200000){ + $Return.=chr(0xF0|$Char>>18); + $Return.=chr(0x80|$Char>>12&0x3F); + $Return.=chr(0x80|$Char>>6&0x3F); + $Return.=chr(0x80|$Char&0x3F); + } + return $Return; + } + + /** + * utf8转unicode + */ + function utf2uni($Char){ + switch(strlen($Char)){ + case 1: + return ord($Char); + case 2: + $OutStr=(ord($Char[0])&0x3f)<<6; + $OutStr+=ord($Char[1])&0x3f; + return $OutStr; + case 3: + $OutStr=(ord($Char[0])&0x1f)<<12; + $OutStr+=(ord($Char[1])&0x3f)<<6; + $OutStr+=ord($Char[2])&0x3f; + return $OutStr; + case 4: + $OutStr=(ord($Char[0])&0x0f)<<18; + $OutStr+=(ord($Char[1])&0x3f)<<12; + $OutStr+=(ord($Char[2])&0x3f)<<6; + $OutStr+=ord($Char[3])&0x3f; + return $OutStr; + } + } + + /** + * 中文互转 + * bg转big + * 或者big转bg + * 备注:GB2312是GBKçš„å­é›† + */ + function chs2chs($String,$Target,$Type){ + if($Type=='GB' && $this->ICONV) return iconv('GBK','UTF-8',$String); + if($Type=='BIG' && $this->ICONV) return iconv('BIG5','UTF-8',$String); + $TableFile=$this->TablePath.($Target=='GB'?'BIG2GB.Table':'GB2BIG.Table'); + if(!file_exists($TableFile)) return false; + $MapTable=($Type=='MEM'?file_get_contents($TableFile):fopen($TableFile,'rb')); + $StringLenth=strlen($String); + $ReturnStr=''; + for($Foo=0;$Foo<$StringLenth;$Foo++){ + if(ord(substr($String,$Foo,1))>127){ + $Str=substr($String,$Foo,2); + $High=ord($Str[0]); + $Low=ord($Str[1]); + $MapAddr=(($High-160)*510)+($Low-1)*2; + if($Type=='MEM'){ + $High=$MapTable[$MapAddr]; + $Low=$MapTable[$MapAddr+1]; + }else{ + fseek($MapTable,$MapAddr); + $High=fgetc($MapTable); + $Low=fgetc($MapTable); + } + $ReturnStr.="$High$Low"; + $Foo++; + }else{ + $ReturnStr.=$String[$Foo]; + } + } + $Type=='MEM'?null:fclose($MapTable); + return $ReturnStr; + } + + /** + * 汉字转拼音 + * 由于ç è¡¨æ˜¯ä½¿ç”¨GBKçš„æ‰€ä»¥åŒæ ·é€‚用于GB2312 + * 此函数æ¥è‡ªHigthman的汉字转拼音 + * è¯¦ç»†è§ + * http://www.hightman.cn/demo/getpy.php?source + */ + Function GBK2PINYIN($String,$Type='File'){ + $TableFile=$this->TablePath.'GBK2PY.Table'; + if(!file_exists($MapFile)){ + return false; + } + $MapTable=($Type=='MEM'?file_get_contents($TableFile):$MapTable=fopen($TableFile,'rb')); + $StringLenth=strlen($String); + $ReturnStr=''; + for($Foo=0;$Foo<$StringLenth;$Foo++){ + $Char=ord(substr($String,$Foo,1)); + if($Char>127){ + $Str=substr($String,$Foo,2); + $High=ord($Str[0])-129; + $Low=ord($Str[1])-64; + $Addr=($High<<8)+$Low-($High*64); + if($Addr<0){ + $ReturnStr.='_'; + }else{ + $MapAddr=$Addr*8; + if($Type=='MEM'){ + $MapStr=''; + for($Tmp=0;$Tmp<8;$Tmp++){ + $MapStr.=$MapTable[($MapAddr+$Tmp)]; + } + $BinStr=unpack('a8py',$MapStr); + }else{ + fseek($MapTable,$MapAddr,SEEK_SET); + $BinStr=unpack('a8py',fread($MapTable,8)); + } + $Foo++; + $ReturnStr.=$BinStr['py']; + } + }else{ + $ReturnStr.=$String[$Foo]; + } + } + $Type=='MEM'?null:fclose($MapTable); + return $ReturnStr; + } + + /** + * GBK转UNI + * GBK转UTF8æ ¹æ®uni2utf得出 + * æ­¤ä»£ç æ¥è‡ªäºŽ + * http://www.wensh.net/archive.php/topic/287.html + */ + function chs2uni($String,$Source='GBK',$Target='UTF',$Type='File'){ + if($Source=='GBK' && $this->ICONV){ + return iconv('GBK','UTF-8',$String); + } + if($Source=='BIG' && $this->ICONV){ + return iconv('BIG5','UTF-8',$String); + } + $MapFile=$this->TablePath; + $MapFile.=($Source=='GBK'?'GBK2UNI.Table':'BIG2UNI.Table'); + if(!file_exists($MapFile)){ + return false; + } + if($Type=='File'){ + $MapTable=fopen($MapFile,'rb'); + $Tmp=fread($MapTable,2); + $MapSize=ord($Tmp[0])+256*ord($Tmp[1]); + }else{ + $MapTable=file_get_contents($MapFile); + $MapSize=ord($MapTable[0])+256*ord($MapTable[1]); + } + $ReturnStr=''; + $StringLenth=strlen($String); + for($Foo=0;$Foo<$StringLenth;$Foo++){ + if(ord($String[$Foo])>127){ + $Str=substr($String,$Foo,2); + $StrEncode=hexdec(bin2hex($Str)); + $SearchStart=1; + $SearchEnd=$MapSize; + while($SearchStart<$SearchEnd-1){ + $SearchMid=floor(($SearchStart+$SearchEnd)/2); + $MapAddr=4*($SearchMid-1)+2; + if($Type=='MEM'){ + $MapEncode=ord($MapTable[$MapAddr])+256*ord($MapTable[$MapAddr+1]); + }else{ + fseek($MapTable,$MapAddr); + $TmpStr=fread($MapTable,2); + $MapEncode=ord($TmpStr[0])+256*ord($TmpStr[1]); + } + if($StrEncode==$MapEncode){ + $SearchStart=$SearchMid; + break; + } + $StrEncode>$MapEncode?$SearchStart=$SearchMid:$SearchEnd=$SearchMid; + } + $MapAddr=2+4*($SearchStart-1); + if($Type=='MEM'){ + $Encode=ord($MapTable[$MapAddr])+256*ord($MapTable[$MapAddr+1]); + }else{ + fseek($MapTable,$MapAddr); + $TmpStr=fread($MapTable,2); + $Encode=ord($TmpStr[0])+256*ord($TmpStr[1]); + } + if($StrEncode==$Encode){ + if($Type=='MEM'){ + $StrUni=ord($MapTable[$MapAddr+2])+256*ord($MapTable[$MapAddr+3]); + }else{ + $TmpStr=fread($MapTable,2); + $StrUni=ord($TmpStr[0])+256*ord($TmpStr[1]); + } + $ReturnStr.=$Target=='UTF'?$this->uni2utf($StrUni):$StrUni; + }else{ + $ReturnStr.='__'; + } + $Foo++; + }else{ + $ReturnStr.=$String[$Foo]; + } + } + $Type=='MEM'?null:fclose($MapTable); + return $ReturnStr; + } + + /** + * utf转gbk + */ + function utf2chs($String,$Target='GBK',$Type='File'){ + if($Source=='GBK' && $this->ICONV){ + return iconv('UTF-8','GBK',$String); + } + if($Source=='BIG' && $this->ICONV){ + return iconv('UTF-8','BIG5',$String); + } + $MapFile=$this->TablePath.($Target=='GBK'?'UNI2GBK.Table':'UNI2BIG.Table'); + if(!file_exists($MapFile)){ + return false; + } + if($Type=='File'){ + $MapTable=fopen($MapFile,'rb'); + $Tmp=fread($MapTable,2); + $MapSize=ord($Tmp[0])+256*ord($Tmp[1]); + }else{ + $MapTable=file_get_contents($MapFile); + $MapSize=ord($MapTable[0])+256*ord($MapTable[1]); + } + $ReturnStr=''; + $StringLenth=strlen($String); + for($Foo=0;$Foo<$StringLenth;$Foo++){ + if(ord($String[$Foo])>127){ + $StrEncode=$this->UTF2UNI(substr($String,$Foo,3)); + $SearchStart=1; + $SearchEnd=$MapSize; + while($SearchStart<$SearchEnd-1){ + $SearchMid=floor(($SearchStart+$SearchEnd)/2); + $MapAddr=4*($SearchMid-1)+2; + if($Type=='MEM'){ + $MapEncode=ord($MapTable[$MapAddr])+256*ord($MapTable[$MapAddr+1]); + }else{ + fseek($MapTable,$MapAddr); + $TmpStr=fread($MapTable,2); + $MapEncode=ord($TmpStr[0])+256*ord($TmpStr[1]); + } + if($StrEncode==$MapEncode){ + $SearchStart=$SearchMid; + break; + } + $StrEncode>$MapEncode?$SearchStart=$SearchMid:$SearchEnd=$SearchMid; + } + $MapAddr=2+4*($SearchStart-1); + if($Type=='MEM'){ + $Encode=ord($MapTable[$MapAddr])+256*ord($MapTable[$MapAddr+1]); + }else{ + fseek($MapTable,$MapAddr); + $TmpStr=fread($MapTable,2); + $Encode=ord($TmpStr[0])+256*ord($TmpStr[1]); + } + if($StrEncode==$Encode){ + if($Type=='MEM'){ + $Low=$MapTable[$MapAddr+2]; + $High=$MapTable[$MapAddr+3]; + }else{ + $TmpStr=fread($MapTable,2); + $High=$TmpStr[1]; + $Low=$TmpStr[0]; + } + $ReturnStr.="$High$Low"; + }else{ + $ReturnStr.='__'; + } + $Foo=$Foo+2; + }else{ + $ReturnStr.=$String[$Foo]; + } + } + $Type=='MEM'?null:fclose($MapTable); + return $ReturnStr; + } + + function gb2big($String){ + return strlen($String)<$this->UseMemSize?$this->chs2chs($String,'BIG','File'):$this->chs2chs($String,'BIG','MEM'); + } + + function big2gb($String){ + return strlen($String)<$this->UseMemSize?$this->chs2chs($String,'GB','File'):$this->chs2chs($String,'GB','MEM'); + } + + function gbk2py($String){ + return strlen($String)<$this->UseMemSize?$this->gbk2py($String,'File'):$this->gbk2py($String,'MEM'); + } + + function gbk2utf($String){ + return strlen($String)<$this->UseMemSize?$this->chs2uni($String,'GBK','UTF','File'):$this->chs2uni($String,'GBK','UTF','MEM'); + } + + function big2utf($String){ + return strlen($String)<$this->UseMemSize?$this->chs2uni($String,'BIG','UTF','File'):$this->chs2uni($String,'BIG','UTF','MEM'); + } + + function utf2gbk($String){ + return strlen($String)<$this->UseMemSize?$this->utf2chs($String,'GBK','File'):$this->utf2chs($String,'GBK','MEM'); + } + + function utf2big($String){ + return strlen($String)<$this->UseMemSize?$this->utf2chs($String,'BIG','File'):$this->utf2chs($String,'BIG','MEM'); + } +} +?> \ No newline at end of file diff --git a/inc/sms/nexmo/tables/BIG2GB.Table b/inc/sms/nexmo/tables/BIG2GB.Table new file mode 100644 index 0000000..0c01fd1 --- /dev/null +++ b/inc/sms/nexmo/tables/BIG2GB.Table @@ -0,0 +1 @@ +¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@£¬¡¢¡££®¡¤£»¡Ã£¿£¡£º©©¡§£¬¡¢£®¡¤£»£º£¿£¡Ø­¡¥©¦¡ª¡¡£ß¡¡¡¡£¨£©¡Ð¡¡£û£ý¡¡¡¡£Û£Ý¡¡¡¡¡¾¡¿¡¡¡¡¡¶¡·¡¡¡¡¡´¡µ¡Ä¡Å¡¸¡¹¡¡¡¡¡º¡»¡¡¡¡£¨£©¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@£û£ý¡²¡³¡®¡¯¡°¡±¡¡£¢£à¡ä£££¦£ª¡ù¡ì¡¨¡ð¡ñ¡÷¡ø¡ò¡î¡ï¡ó¡ô¡õ¡ö¡¡¡¡¡¡¡¡¡¥¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡£££¦£ª£«£­¡Á¡Â¡À¡¡£¼£¾£½¡Ü¡Ý¡Ù¡Þ¡¡¡Ôª«ª­ª¼ª¾ª½¡«¡É¡È¡Í¡Ï¡¡¡¡¡¡¡¡¡Ò¡Ó¡ß¡à¡â¡á¡¡¡Ñ¡ü¡ý¡û¡ú¡¡¡¡¡¡¡¡¡¬£ü£¯¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@£Ü¡¡¡¡¡ç£¤¡¡¡é¡ê£¥£À¡æ¡¡¡¡ª¥ªÀ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ã¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡©à©Ø©Ð©È©À£þ©¤©¦¡¡©°©´©¸©¼¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡£°£±£²£³£´£µ£¶£·£¸£¹¢ñ¢ò¢ó¢ô¢õ¢ö¢÷¢ø¢ù¢ú¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÎÄÊ®¡¡Ø¦£Á£Â£Ã£Ä£Å£Æ£Ç£È£É£Ê£Ë£Ì£Í£Î£Ï£Ð£Ñ£Ò£Ó£Ô£Õ£Ö£×£Ø£Ù£Ú£á£â£ã£ä£å£æ£ç£è£é£ê£ë£ì£í£î£ï£ð£ñ£ò£ó£ô£õ£ö¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@£÷£ø£ù£ú¦¡¦¢¦£¦¤¦¥¦¦¦§¦¨¦©¦ª¦«¦¬¦­¦®¦¯¦°¦±¦²¦³¦´¦µ¦¶¦·¦¸¦Á¦Â¦Ã¦Ä¦Å¦Æ¦Ç¦È¦É¦Ê¦Ë¦Ì¦Í¦Î¦Ï¦Ð¦Ñ¦Ò¦Ó¦Ô¦Õ¦Ö¦×¦Ø¨Å¨Æ¨Ç¨È¨É¨Ê¨Ë¨Ì¨Í¨Î¨Ï¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¨Ð¨Ñ¨Ò¨Ó¨Ô¨Õ¨Ö¨×¨Ø¨Ù¨Ú¨Û¨Ü¨Ý¨Þ¨ß¨à¨á¨â¨ã¨ä¨å¨æ¨ç¨è¨éª®¨ëª§¡Ì£à¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ò»ÒÒ¶¡ÆßÄ˾ÅÁ˶þÈ˶ùÈë°Ë¼¸µ¶µóÁ¦Ø°Ê®²·ÓÖÈýÏÂÕÉÉÏѾÍè·²¾ÃÛÌÒ²ÆòÓÚÍöØ£ÈÐÉ×ǧ²æ¿ÚÍÁʿϦ´óÅ®×ÓæÝæÞ´çСÞÌʬɽ´¨¹¤¼ºÒÑËȽí¸ÉÞÃß®¹­²Å¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@³óؤ²»Öзᵤ֮ÒüÓèÔÆ¾®»¥Î忺ÈÊʲØêÆÍ³ðÈÔ½ñ½éØÆÔªÔÊÄÚÁùÙ⹫ÈßÐ×·ÖÇÐØ×Ôȹ´Îð»¯Æ¥ÎçÉýئ±å¶òÓѼ°·´ÈÉÌì·ò̫ز¿×ÉÙÓȳßÍÍ°Í»ÃØ¥µõÒýÐĸ껧ÊÖÔúÖ§ÎĶ·½ï·½ÈÕÔ»ÔÂľǷֹ´õÎã±ÈëÊÏË®»ðצ¸¸Ø³Æ¬ÑÀţȮÍõ±û¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÊÀاÇÒÇðÖ÷Õ§·¦ºõÒÔ¸¶×ÐÊËËûÕÌ´úÁîÏÉØð³äÐÖȽ²á¶¬°¼³ö͹¿¯¼Ó¹¦°ü´Ò±±ÔÑǪ°ë»Ü¿¨Õ¼Ã®Ø´È¥¿É¹ÅÓÒÕÙ¶£ßµß¶µð˾ØÏ½ÐÁíֻʷ̨߳¾ä°Èß·ËÄÇôÍâ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÑëʧūÄÌÔÐËüÄá¾ÞÇÉ×óÊв¼Æ½Ó×Ûͺ븥±ØÎì´òÈÓ°ÇÆË³âµ©Êõ±¾Î´Ä©ÔýÕýĸÃñصÓÀÖ­Í¡·º·¸ÐþÓñ¹ÏÍ߸ÊÉúÓÃ˦ÌïÓɼ×Éêñâ°×ƤÃóĿìʸʯʾºÌѨÁ¢Ø©¶ªÆ¹ÅÒØÀب½»Òລ·ÂØø»ïÒÁ¡¡Îé·¥ÐÝ·üÖÙ¼þÈÎÑöØò·ÝÆó¡¡¹âÐ×Õ×ÏÈÈ«¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¹²ÔÙ±ùÁÐÐÌ»®ØØë¾ÁÓÐٿウӡΣ¼ªÀôͬµõÍÂÓõ´ç¸÷ÏòÃûºÏ³Ôºóߺ߸Òò»ØàîÛÚµØÔÚ¹çÛØÛÝÛ×Ùí¶àÒÄ¿äÍý¼éåúºÃËýÈçåù×Ö´æÓîÊØÕ¬°²Ë¼âÒÙÖÝ·«²¢Äê¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ʽ³ÚæââÈÖÐçÊù³É¿Û¿¸ÍÐÊÕÔçּѮÐñÇúÒ·ÓÐÐàÆÓÖì¶ä´Î´ËËÀÄÊÈ꺹ÎÛ½­³ØÏ«ÉÇÎÛÑ´¡¡·º»ÒIJêò°ÙÖñÃ׿ùó¾ÑòÓðÀÏ¿¼¶øñç¶úí²ÈâÀß¼¡³¼×ÔÖÁ¾ÊÉàâ¶ÖÛôÞÉ«°¬³æÑªÐÐÒÂÎ÷Úä´®ºàλסØùÙ¢Øú°é·ðºÎ¹À×ôÓÓÙ¤ËÅÉìµèÕ¼ËÆµ«Ó¶¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@×÷Äã²®µÍÁæÓàØþ²¼Øý¶Ò¿ËÃâ±øÒ±Àä±ðÅÐÀûɾÅÙ½ÙÖúŬ۾ϻ¼´ÂÑÁß¿ÔÍÌÎá·ñ³ß°É´ôßÀÎâ³ÊÂÀ¾ý·Ô¸æ´µÎÇÎü˱³³Äŷͺðѽ֨º¬Ò÷Ìý´ÑÀ§¶Úàñ·»¿ÓÖ·Ì®¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¾ù¿²»ø×ø»µÛß׳¼Ð×±¶Ê·Áæ¤åþÃîÑýåû楼ËÈÑÍ×Т×ÎæÚØÃÍêËκêÞÎ¾ÖÆ¨Äòβáªá¯²íá§Î×Ï£Ðò±Ó´²Í¢ÅªµÜÍ®ÐÎáÝÒÛÍü¼ÉÖ¾È̳À¿ìâîâì½äÎÒ³­¿¹¶¶¼¼·ö¾ñŤ°Ñ¶óÕÒÅú°âÊã³¶ÕÛ°çͶץÒÖ¡¡¸Ä¹¥Øüºµ¸üÊøÀîÐӲĴå¶ÅÕÈè½É¼¸Ë¸Ü¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@輡¡²½Ã¿Çó¹¯É³ÇßÉò³ÁãäÅæÍô¾öãåÌ­ãçãè³åûÆûÎÖ¼³·ÚãêãìãëÙüãæ¡¡ÒÊÔîׯÔÖ¾ÄÀÎĵËüµÒ¿ñ¾Á𮸦ÄеéÔí¶¢ÒÓ˽Ðãͺ¾¿Ïµº±Ð¤ëÁ¸ÎÖâ¸Ø¶ÇÓýÁ¼Ã¢¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÓóÉÖ¼û½ÇÑԹȶ¹õ¹±´³à×ß×ãÉí³µÐÁ³½ÓØåÇѸÆùÑ²ÒØÐÏа°îÄÇÓϲÉÀï·ÀÈîÚåÚæ¿Ó²¢¹ÔÈéÊÂЩÑÇÏí¾©ÑðÒÀÊ̼ÑʹÀй©ÀýÀ´Ù©°Û²¢³ÞÅåÙ¬ÂØÙ«ÙªÙ§¡¡ÍöùÙîÁ½¾ßÆäµäÙýº¯¿Ìȯˢ´Ìµ½¹ÎÖÆ¶çÛÀ¡¡×äЭ׿±°ØÔ¾íжÐôÈ¡ÊåÊÜζºÇ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¿§ÅÞ¹¾¾×ÉëßÈßÍÖäÅØºô¸ÀßÉßκÍßËÄØÖÜÕ¦Ãü¾Ì¹ÌÀ¬¿ÀƺÛáÆÂ̹À¤ÛåÒ¹·îÆæÄÎÑÙ±¼æªÆÞίÃÃÄݹÃÄ·½ãæ©Ê¼ÐÕæ¢æ¨ÄÌæ¦¡¡ÃϹ¼¾×Ú¶¨¹ÙÒËÖæÍðÉÐÇü¾Ó¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@½ìẸ԰¶ÑÒá¶á·ÔÀÁ±ÖãÌûÅÁ²¯àûÐÒ¸ýµê¸®µ×âÒÑÓÏÒ»¡åóÍùÕ÷·ð±ËãÃÖÒºöÄî·ÞâóÕúÇÓâð²À¹ÖÅÂâùÐÔâõâöâò»òãÞ·¿ìåËù³ÐÀ­°èÖôÃò·÷Ĩ¾ÜÕÐÅûÍØ°ÎÅ×ÄéÅê³éѺ¹Õ׾ĴÅĵÖÞÕ±§¾ÐÍÏÞÖ²ð̧Áà·Å¸«ì¶ÍúÎôÒײýÀ¥°ºÃ÷êÀ»èê¿ê»¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Éý·þÅóº¼èÊÕí¶«¹ûèÃèËèÁÖ¦ÁÖ±­½Ü°åÍ÷ËÉÎöèÆÃ¶¡¡èÌèÂê½ÐÀÎäÆçéâÃ¥·ÕÆü×¢Ó¾ãûÃÚÄàºÓ¹ÁÕ´ÕÓ²¨Ä­·¨ãü·ÐйÓÍ¿ö¾ÚãôÇöãóÑØÖÎÅÝ·º²´¡¡ãý¡¡ã÷ãö¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¿»Ñ׳´´¶ÖËÅÀÕù°Ö°æÄÁÎï×´áò¾Ñ¹·ºüÍæçåçäõ¡¡ÛÚðÞ¸í¾ÎµÄÓÛäֱ֪ÎùÉçìëÆî±üôÌ¿Õñ·óþÀØèǼØÂÕ߷ηÊÖ«ëŹÉëÆ¼çëÈ·¾¿ÏÎÔô§É֥ܽ᷼°ÅÑ¿ÜÏÇÛ»¨·Ò½æÐ¾Ü¿¡¡ÜÁÜÀÜÆ»¢Ê­³õ±íÔþÓ­·µ½üÉÛÛ¡ÇñÚý²É½ð³¤ÃŸ·ÍÓ°¢×踽¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Úéö¿ÓêÇà·ÇؽͤÁÁÐÅÇÖºî±ãÏÀÙ¸Çα£´Ù·ýÙ¹¿¡Ë×ÎêÀþ¶íϵٵÙÞÓá¾ÖÙððëйÚɲÌêÏ÷ǰØÝ¿ËÔòÓÂÃ㲪¾¢ÙéÄÏÈ´ºñÅÑÒ§°§×ɰ¥ÔÕÏÌß׿ÈÍÛßÓÑÊß䯷¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ºå¹þ¿©åëÔÛßÝßãßÖßÞàó´¹ÐÍÛóÔ«¹¸³Ç¿åÛòÞÈÆõ×à¿üÛ¼½ªæ°×Ëæ¯ÒÌÍÞÀÑÖ¶Ò¦¼éÍþÒöº¢Ðû»ÂÊÒ¿Íå¶·âʺÆÁʬÎÝÖÅá¼ÏïµÛ˧¡¡ÓÄâԶȽ¨ÞÄåôÑåºÜ´ý»²ÂÉáßáááàŭ˼µ¡¼±ÔõÔ¹»ÐÇ¡ºÞ»ÖºãÊÑÌñ¶²ã¡Ðô±â°ÝÍÚ°´Æ´ÊóÖÞ××§Ö¸¹°¿½¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÕüÀ¨Ê°Ë©Ìô¹ÒÕþ¹Êí½Ê©¼È´ºÕÑÓ³ÃÁÊÇÐÇ×òêÅ¡¡êÂÊÁȾÖùÈáij¼í¼Ü¿ÝÕ¤èѿ±ú¸Ì¹ÕèÖ²éèÛ°Ø×õÁøèÒèÔèÜèØÆâÍáÑê´ù¶Î¶¾Åþ·úȪÑóÖÞºéÁ÷½ò䣶ý¶´Ï´¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@»îÇ¢ÅÉÐÚÂå±Ãä¡ä¢¡¡¡¡Ð¹ä­ä©äªìÅΪ±þ¾æ¾¼Ì¿Õ¨ÅÚÕÕë¼ÉüêôµÖá÷ºÝ½Æçèɺ²£ÁáÕäçêçéÉõ±Âη½çî°î±Ò߰̽ꡡðà¹ï½Ô»Êð§Ó¯Åè±­ÖÑÊ¡íïÏàü¿´¶ÜÅÎíðñæÉ°ÑÐÆö¿³ìììíÆíÖ»ÓíØ®¿ÆÃëÇï´©Í»¸ÍóÄ×Ñæûºì¼ÍÈÒæüÔ¼æú¸×ÃÀôà룡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÄÍˣ׫ҮÅÖñãÅßθ¡¡±³ºúëÎÌ¥°ûØ·ëÕÖÂô®ÜÑ·¶Ã©ÜÄ¿Á¿àÇÑÈôïÜÔÜÛÃçÓ¢×ÂÜÙ̦Է°úÜß¹¶±½ÜâŰºçòµò³ÑÜÉÀÒª½þ¼Æ¶©¸¼Õ긺¸°ôñÅ¿¾ü¹ìÊöåÈÌöµÏåÄ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@µüÆÈåÆåʽ¼ÀÉÓô¡¡ÇõôúÖØãÅÏÞªİ½µÃæ¸ïΤ¾ÂÒôÒ³·ç·ÉʳÊ×Ïã³ËÙñÙı¶·Â¸©¾ëÙÅٺٻÐÒÁ©Öµ½èÒе¹Ãǰ³Øö¾óÙÆ¾ã³«¸öºòÌÈÙ½ÐÞÙÁÄßÙÂÂײּæÔ©Ú¤Ú£¶³Áè×¼µòÆÊØàÌÞ¸Õ°þ·ËÇäÔ­ØÈÛÅÉÚÌÆÑäࡺ߸çÕÜËô²¸ßíÁ¨¿ÞÔ±°¦ÏøÄÄ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ŷßó´½ßìßñÆÔÔÀßìÆÒÂñ°£¡¡ÏÄÌ×ÞÊÞÉæ¶ÄïÄȾêÓ鿏¼§Éïæ·Ãä¶ðæ²æ³Ëï¡¡Ô׺¦¼ÒÑ繬ÏüÈÝå·ÉäмչåìÇÍÏ¿¾þÓø¶ë·åµº¡¡á­²îϯʦ¿âÍ¥×ùÈõͽ¾¶Ðìí¦¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@í§³Ü¿ÖË¡¹§¶÷Ï¢ÇÄÎò㤺·»Úã©ÔÃã£ÉÈÈ­êüÄÃÉÓЮÕñ²¶ÎæÀ¦Äó׽ͦ¾èÍìŲ´ì°¤º´°ÆÐ§ôÍÁÏÅÔÂÃʱ½úêÌ»ÎɹÉΡ¡êËÊéË·ëÞÀÊУºË°¸¿ò»¸¸ù¹ð½ÛèòÊáÀõ×ÀÉ£ÔÔ²ñÍ©èî¸ñÌÒÖêΦ˨¡¡èìÊâѳÒóÆøÑõ°±º¤ë³Ì©ÀËÌéÏûãþÆÖ½þº£Õã両@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÀïÉæ¸¡¿£Ô¡ºÆÓ¿¡¡ä¤Äù¡¡ä¹ìȺ濾ÀÓÁÒÎÚµùÌØÀÇÏÁ±·Àêáú¡¡°àÁðÅæÖé¡¡çóÅÏĶÐóÛÎÁô¼²²¡Ö¢Æ£ðá¾ÒÌÛÕîðèðã¸ÞðåÒæîÁ°»Ñ£ÕæÃßÕ£¾ØÅéÕèÔÒíÀÆÆÉé¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@íÆí¾¾×íÄÅÚÃØ¯ÌìôËî׿Éñ×£ìóìñ³Óï÷Ñí×âÇØÖÈÃØÕ­ñºÕ¾°ÊЦ·Û·ÄÉ´ÎÆÎÉËØË÷´¿Å¦ç¢¼¶ç¡ÄÉÖ½·×ȱá³áÎÌêÈÔŸû°ÒºÄµ¢¹¢ë×Ö¬ÒÈвëÙëØ´àÐØ¸ìÂöÄܼ¹ëÝ¿è³ôô«Ò¨óº½ô³ô²°ãۻã»ÄÀó¾£È×¼ö²ÝÒðÜîÜó×ÈÈã²èÜøÜ÷Üï´ÄÜõ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ò¯ÎÃò½ò¾Ôéò¿°öò¼ÑÁË¥ÖÔÔ¬ñÇñÅÖ»¼ÇÚ¦ÌÖڧڨѶÍÐѵÆý¡¡¡¡Æñ²ò±ª²Æ¹±Æð¹ªÐùéí¡¡ÈèËÍÄæÃÔÍËÄË»ØÌÓ×·å˱Åçß¿¤ºÂÛ«¾ÆÅä×ö¤ÕëîȸªîÇÉÁÔºÕ󶸡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@±ÝɳýÚêÉýÆ»¼¢Âí¹Ç¸ß¶·Øª¹íǬÔÛαͣ¼ÙÙÈÙ¼×öΰ½¡Å¼ÙËÙÉÕì²à͵ƫٿ¡¡¡¡¶µÃá»Ë¼ô¸±ÀÕÎñ¿±¶¯ÙëÞ˳×ÄäÇøØÒ²ÎÂüÉÌžÀ²×ÄÑÆ·È¿Ð°¡³ªà¢ÎÊßûΨơÄîÊÛ਻£ÏÎà¦ßúà¢È¦¹úàöÓò¼áÛѶѲºÛý»ùÌöÂÖ´Å๻ÉÝȢ¦Íñ¸¾À·æ¹¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@æ½æ¾»éÆÅæ»Êë¿ÜÒú¼Ä¼ÅËÞÃÜξר½«ÍÀÌë¡¡³çáÇÆéáÈÑÂá¿À¥±À´ÞÂØáÅá¸ڳ²³£´øÕÊá¡¿µÓ¹ÊüâÖâ×ÕÅÇ¿åç±ò²ÊµñµÃáã´ÓÅÇÓùáâáäÓÁ»¼Ï¤ÓÆÄúÍïã²µëÆà¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Çéã¬âêϧµ¿ã¯Ìèã°Î©¼Â㱡¡ÆÝê©ìèÂӿؾíҴ̽½Ó½ÝÅõ¾ò´ëÞßÑÚµôɨ¹ÒÞÑÍÆÂÕÊÚÕõ²ÉÞäÅÅÌÍÏÆÄíÞæÉáÞà±Ö°½¾È½Ì°ÜÆôÃôÐðë·¡¡Ð±õúÕ¶×åÐýìºì»ÖçÍíÎ»Þ¡¡²ÜÛÃÍûÁºÌÝÉÒè÷èó¸ËͰãÍÎ๣еèèÆúËó°ð÷èÙÌõÀæèÉ¡¡¡¡Óûɱ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ºÁåÏÇâÏÑÁ¹´¾äÈÒºµ­ÌÊÓÙÌídzÇåä¿ÁÜÑÄÊçäÌäÁÑͺԻìÔ¨äÀÆà侺­ÀáÒùÌÔÂÙÉî»´¾»Ïý×͸¢´ãäÃäÆÅëÑɺ¸·éϩˬǣÀç²ÂÃͲþâ£ÕøÂÊÀÅçðÇòÀíÏÖÁ§ð­Æ¿¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@´ÉÌð²úÂÔÆè±ÏÒìÊèÖ̺۴ÃȬðêð¨¿øºÐÊ¢¾ìÖÚÑÛ¿ôíøÌ÷ÁòÖìíÊÏ鯱¼ÀÒÆÖÏñ»óÒ±¿µÑµÚ·ûóÏó×óÐÁ£´ÖÆÉ°íÏÒͳÔúÉÜç¨ç©Ï¸Éð×éÀÛÖÕç¥ç¦²§ÐßÁçÒîôáϰñêÁÄñö¸¬²±´½ÍÑÐÞ¡¡¡¡ô©¶æÏϲ°´¬É¯Ý¸Ý·Ý©¼Ô¾¥Ã§ÄªÜìׯݮÀòݬºÉݶݱ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÆÎÜÈ´¦±ëÉßÖûòÀòÁòÂÇùµ°òÆòÇòÈÊõÙòô±»Ì»ÐäÅÛ´üÃÙ¹æ·ÃÑȾ÷Ú«ÐíÉèË϶ïÐÀôùëà··Ôð¹á»õ̰ƶôöÉâÖºõÃéîÈíÕâåÐͨ¶ºÁ¬ËÙÊÅÖðåɳÑÔì͸·êåѹä;¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@²¿¹ù¶¼ÐïÒ°îο۵öîË¡¡·°±ÕÅãÁê³Â½ÒõÚðÌÕÏÝÚîȸѩö§Õ¾¹¶¥ÇêÓãÄñ±¹ÂóÂé¼Ò°ø¸µ±¸½Ü¿þØ÷É¡°¬×î¿­¸îØÜ´´Ê£ÀÍʤѫ²©ØÊà´¿¦ÐúÌ亰ºÈ´­Î¹Ï²É¥à¸À®à©à«Ôûµ¥à°ÍÙÓ´»½Ó÷ÇÇà¬à±ºí³Ôà¹Î§Ò¢¿°³¡µÌÑß±¨±¤ÛöܩҼºøµì¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@æÃÃÄÐöýæÂæ´æÜå¸»Ô¢ÃÂ×ðѰ¾ÍǶá°áËïúÙã·ùÃ±Ö¡àø¼¸ÀȲÞÏá¾ÇåöÅí¸´Ñ­áå»ó¶ñ±¯ÃÆ»Ýã«ã¶ÐÊãµ¶èâüã·¿®ÄÕã¹»ÌÓäã¸í¬êªì鳏կÃè¼ð¿«ÈàÞñ×á¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@²å´§ÌáÎÕÒ¾½Ò»Ó´·Ô®¾¾»»ÞðÑﺳ³¨¶Ø¸ÒÉ¢°ßì³Ë¹ÆÕÎúÇç¾§¾°è®ÖÇÁÀêÐÔøÌæÆÚ³¯¹×רÌļ¬ÔæÒζ°¿ÃÉ­Õ»èþ°ôÆÜ馯å¹÷Ö²½·×µÃÞÅïèú¡¡¿îÆÛÇÕ²ÐÖ³¿Ç̺µªÂÈ벸ÛÓÎäÕ¶ÉäÖÓ¿´ÕÇþä×Ôü¼õÕ¿Ïæ²³ºþäÎμÎÐÌÀ¿ÊÍÄÃì²âÅÈÓå»ë×Ì¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¸È»ÁäÏ¡¡äØ¡¡¡¡äÒ±º·Ù½¹ÑæÎÞÈ»Öó¡¡ÅÆê÷ϬÓÌ⫺ïÐÉ·©ç÷ÁÕ×ÁçúÅýÅÃÇÙ¡¡è¡çùçûÉûËÕ»­·¬Á¡Í´ðë¾·¶»Æ¦¡¡µÇ·¢Íîð©ñåµÁÀ§¶ÌÏõÓ²ÑâÉԸѳÌ˰ϡ¾½¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@´°½Ñͯ¿¢µÈ²ß±Ê¿ðͲ´ðËñ½î·¤ÖïËÚÖà½Ê½áÈÞ¾ø×ÏÐõË¿Âç¸øÑ¤¡¡ç­ÉÆÏèôâñóñøËàÍóǻҸ¸­ÉöÕÍÌóÆ¢ëçëèëéÊæË´ÆÐÝÍÝÎÆ¼²¤ÝÑÝÂݼ»ªÁââÖÖøÀ³ÝÔÃȾúÝķƾÕÝÇήÌѲËÜÉÝÊÝËÐéòÔÍÜòλ×Öë¸òòÐòÒ½Ö²ÃÁѸ¤ñûÊÓ×¢Ó½ÆÀ´ÊÖ¤Ú¬¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ú¯×çÕ©Ú®ËßÕïÚ­¡¡ÏóõõÖüÌù·¡êÝêڷѺعóÂò±áó´ûÔ½³¬³Ãõɾà°ÏõÇÅܵøõËõÌéðÖáéó¹¼´þåÓÖÜÒݽøåÔ¶õÓÊÏçÛ±º¨ËÖÁ¿³®Å¥¸ÆÄƾû¶ÛîÔ¡¡îÓãÉÈò¿ªÏС@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¼äÏÐãȶӽ×ËåÑôÓç¡ÚòÚïµÌÑãÑÅÐÛ¼¯¹Íö©ÔÆÈÍÏî˳Ðëâ¸â¿·¹â½ÒûâÁ·ëÔ¦»ÆÊòºÚÂÒÓ¶Õ®°Á´«½öÇã´ßÉËɵÙÌ¡¡½ËÒùØâļ½ËÇÚÊÆ¼¨»ãàµàËɤàÂÂðÊÈØÄà¾ËÃàÍàÅÎØÎËÐáǺàÆà¼Ô°Ô²ÈûËÜÌÁͿڣËþÌîËú¡¡¿éÎëÛõÜã°Â¼Þ¼µÏÓæÅÂèæÁ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ϱɩæÇáÔáϻϸÉÁ®ÏÃß±»ãáÝ΢ÓÞÒâ´È¸ÐÏë°®ÈdzîÓúÉ÷»ÅÀõã³âéâëÀ¢íªí©âýê¬ê«´êÕ¥¸ãÌ´î²ë°á²«ËÑɦËðÇÀÒ¡µ·¹¹¾´ÕåаµêÍϾÔÎůêÑ¡¡¡¡»áÀÆÒµ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@³þ¿¬éªÐ¨¼«Ò¬¸ÅÑîèåé®Àã·ãéºÓÜé¬é¹¡¡ÐªËê»Ùµîعë¦ÒçËÝ×ÒÈÜäèÔ´¹µµáÃðäßäÛʪÄçλ¬×¼Áï²×ÌÏϪäàäå¼åÑÌ·³ÃºÁ¶ÕÕìÏì¾ìã»Í»ÀÉ·ìÑìÐůүëºéàʨԳ»«Àź÷è¦ÉªÈðè£çõè§çøè¤µ±»ûðö̵´á¡¡ðò±Ôðô³ÕÁÜÕµÃ˾¦½ÞÄÀíù¶½¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¶Ãغ²ÇÕöî¢íþî¡°«ËéÅöÍëµâµµïÅð±®íÔ¡¡ì÷»½ûÍòÇÝÀâÖɳíïþÙ÷ïý¿ßñ½¿ê½ÚóÞóßóÈÁ»¾¬ÔÁ¾­¾îÀ¦°óËçÌÐÖÃÕÖ×ïÊðÒåÏÛȺʥƸËÁÒÞëìÑü³¦ÐÈÈù½ÅÖס@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¸¹ÏÙÄÔ¾ËͧµÙ»çÂäÝæ¿ûέºùÒ¶Ôá¸ðÝàÝ«ÆÏ¶­ÝâÝçÝáÓݲºÅÓ¼òÑòÚòØÊñ¶êÍÉ·äò×ò¹òÛÑÃôÄÒáȹ²¹ôÃ×°ÀïôÁÔ£ÙöÌ÷½â²ï¸ÃÏêÊÔʫڵ¿äÚ¶Òè³Ï»°Öï¹îѯڹڸղ¡¡ö¤¡¡»¿õöºÑÔô×ʼֻßêßÁÞ¸ê༣¸ú¿çÂ·Ìø¶å¹òõÓõÙ¶ã½ÏÔØéøéù¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@±ÙÅ©ÔËÓεÀËì´ï±ÆÎ¥åÚÓö¶ô¹ý±éåØÓâ¶Ý×Þ¡¡³êÀÒõ¤ÓÔîÜǯîàîß¼ØÓËǦÅÚ¹³²¬ÁåîçîéîÒîëîäíբ°¯¸ôÔÉÓºöÁïô¡¡À׵籢Á㾸ѥ°ÐÔ¤Íç¶Ùçï°äËÌËÇâ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@±¥ÊγÛÍÔѱ÷Õð¯÷䶦¹ÄÊóÉ®Ù×½ÄÙÒÙÔÁÅÆÍÏñÇȹÍ׫¡¡¾¤µÊ»®ØãØÑÑáàÕàÖÂï³¢ËÔŻ̾¼ÎමÂà»ßõà½àС¡ßÙÍÅͼ³¾ÛÓ¾³Ä¹µæÇµÊû¡¡ÊÙâ·ÃÎâ¹¶áÞÆµÕæÏÄÛåýæÎæÐæÌ·õįÄþ¹ÑÁÈʵկÇÞ廲ì¶ÔÂÅÕ¸á«á¤±ÒÄ»àþá£ÀªÁαױðÕó¹Òó¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ը̬¿¶Âý¹ßâú²Ñ²Òã¼½ØÆ²ÕªË¤³·Ãþ§ߡÞâ´ÝåºÞý²ôÇÃÎÓÆìì½³©ôßêÔ°ñÕ¥éÅéÂÈٸܹ¹é»È¶é½é¾Áñ»±Ç¹é¿é³¸ÉÅÌ¡¡Ç¸¸èëµÕÄÑݹöÀìµÎäöÑúÄ®×Õ©Ưºº¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÂúÖÍÆáÊþ½¥ÕÇÁ°äîÂþäð³ºäô»¦ÓæÉøµÓ±ÈÛÎõÉ¿ÐÜϨӫ¶ûêûÜýÓüâ¯ÑþËöÂê¹åè©ÕçÒÉűÑñ·èÓú»¾¾¡¼àÃéî¥î£Ë¯´Åµú±Ì̼˶íÙìõ¸£»öÖÖ³ÆÍÝÎѽ߶˹ܻþ¼ãóÛËãóé²­óÝóç¸öóë´âôÕ¾«ÕÀçº×Û´Âç±Â̽ô×ºÍø¸Ùç²³ñÃà²ÊÂÚάÐ÷ç»ç·¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@·£´äôäµÔΞÛÕØ¸¯°ò¸àëõ²²ÍÈëöê°Ì¨ÓëÌòÎèô»ÈØÝïϯÐîÃÉݰÆÑËâ¸ÇÕôÝ¥ÝíËѲԡ¡ÝîòêÃÛòßòìòáòæÖ©Ê´òéòèÉѹÓÅá¹üÂãÖÆñÔñÒÖ¾ËЯÒÓïÎÜÈϽëÊÄÎó¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@˵ھ»åÓÕÚ¿Ú½¡¡ºÀÀêò±öêâÉÞºÕÕԸϾָ¨éüÇáÍìÀ±Ô¶åÜѷDzңµÝåÝ¡¡åÞ±ÉÜ­Û´½ÍËá¿áõ©½ÂÒøÍ­Ãúîù¸õîýÏÎï§¡¡Ï³ºÒ¹ëÃö¸ó·§ºÏ϶ÕϼʴÆöÃÐè÷°÷±ÉØÆÄÁììªÌ¨½È±ý¶üâòµ°¹÷»÷Ö¿ý»êÃùð°·ï÷á±ÇÆëÒÚÒÇÆ§½©¼ÛÙ¯¿ë¼ó¡¡ÁÝ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¾çÅüÁõ½£¹ôÛÄÀ÷ßëÎûàÚ³°ºÙ×컩ÐêÒ­àÛÅçË»Ð¥ß´Ü¯ÐæÔö·Ø×¹¶é¶Õ¡¡¡¡æÒæµæ¿åü½¿æ¬å¼¿íÉóд²ãÂÄáØ¡¡´±ÖÄᦷϳøÃíØË¹ã³§µ¯Ó°µÂáçÇì»ÛÂÇí«Ä½ÓÇ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÆÝοËËÓûã¿Á¯ÃõÔ÷ã½µ¬·ßã¾âä¾ĦֿġײÆËÀ̳Å׫²¦ÄÓ˺ÁÃÈö´é²¥¸§ÄéÇËߤµ§ÞìµÐ·óÊýĺÔݱ©êÇÑùÕÁé¤×®Êà±ê²Û쥷®½°ÀÖèÈéÊÁºÅ·Ì¾éäÒãŹ½¬äü³ÎÆÃÁʽ̶ཽDZäú³±ÅìäýÀ£Èó½§ÅËëøä±¡¡¡¡Êì°¾ÈÈìÙë»êó½±â±Ó¨è°Á§¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@èªè­çÜñ¤´ñÎÁÁöÊÝ´¯ñ£°¨ÖåÅÌϹÃÐî§î¨àÁ´è°õÈ·ÀÚÄë¿ÄÂëÅ͸å¼Ú¹È»ü𢵾ҤÇî¼ýÏä·¶óð׭ƪóòé¢óóºýµÞÁ·Î³Ö¼êÃ弩±àÔµÏ߶лºç¶ç¼ç¿ç¾Âî°ÕôÉ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ôæñîÌÅĤϥ½º·ô±ìÕá±ÎεÁ«ÊßÒñÂûÃッ²Ì²·Åî´ÐÞ£ÁâòëºûµûòðϺÎÏÊ­òù»ÈòòòõÎÀ³åºÖ¸´°ýñÙ¡¡ñÛÒêÁÂ̸׻µ®ÇëÖî¿ÎÚÃÚÆµ÷Ë­ÂÛÚºÚÇ·ÌÚÄÍãÊúÖíÅâÉ͸³¼úÕ˶ÄÏÍÂô´ÍÖÊâÙô÷ÌËȤÅö¼ùõ×Ìß̤²ÈõØ¡¡¾áÌÉ»ÔÁ¾ê¡±²éýÂÖê¢éþ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¹õÊÊÕÚåÛÔâǨÁÚÖ£µËÛ¶´¼×í´×ëçпÌàÏúÆÌîí³úÂÁÈñﱷ汵﮺¸ãÌÔÄÏööªÕðù¿¿°°Ð¬¹®ò¡¸©ò¢¹ÎÑø¶öÄÙâÅÍÕפæáÊ»æå¼Ý¾Ôæâ÷¼·¢÷×ÄÖ÷ÈÆÇöϳð²Ñ»¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡ôï÷âÀèÄ«³ÝÈ御ٱÙÏÙ­¼½ÃÝÄý¼ÁØæÑ«àßàæµ±Ø¬àä¶ÖÔëÆ÷ßæàåàÈÊÉàÞ¸Á±Ú¿Ñ̳ÛÕ·ÜôÁÙøÑ§å¾µ¼Ç¿ÏÜÆ¾í¬±¹ãÁÒ亶°ÃиսÉÃÓµµ²Ì¢º³¾Ý°ÔñÀÞ²Ù¼ñÇܵ£ÎÎÕûÀúÏþåßêÊ꼡¡éׯÓèë³ÈºáéÙÊ÷éÏÍÖÏðÇÅÇÁéÔ»úèãì¨Àúë©å¥µíÔè¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ŨÔó×Ç墰ļ¤å£å¤¡¡äÅ¡¡³ãìÀÁ×ÉÕµÆÑàìäÁÇÌÌìËȼ¡¡¶Àè«çá¡¡¡¡è±Æ°ê±ÝùÕÎȳðü¬îÂîªÂ÷î©Æ³Ä¥×©íàíÓÓù»ýÓ±ÄÂöÕ¡¡¿ú¸ÝËòÖþóÆóè´Ûɸó÷¸âÌÇçË¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@çÌÝÓ¸¿ÏØçÉçÇçÉç§î¾ô˺²°¿ôçññÉÅÄåÅòÕéÐËËÒ²ÕÈïÞ¥Þ¦Þ«µ´Þ¬½¶ÏôÎßÞ©ó¦ÃøÂìÓ©ÈÚºâÍÊ¿ãÈìñÝñ×Ç×êìÚÐÑèÚÉ»äıµýгÚÑŵÚËν·íÚÍÚÏÚÈÚÎÔ¥¡¡Ã¨ÀµÌãõâÓ»õåõßõà·ø¼­Êä꣱æ°ì×ñåàÑ¡³ÙÁÉÒÅÚþÐѶ§±í¾âÃÌ´íÇ®¸ÖÎý¼@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@×¶½õ¡¡ï¿ïÀïÅÑÖËíËæÏÕµñö®Õ´ÁØ»ôÄÞö­µå¾²ëïÇʼվ±Æµò¥Í·ÍÇÒò͹ݽ¤âÆÏÚëȺ§æéÂæº¡÷À÷Ù÷ں屫ÍÒð³ÑìѼ¡¡Ô§Ä¬Ç­Áú¹êÓų¥ÀÜ´¢Àøº¿ß̳¢àéÏÅ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ì纾ѹÛÖÛ÷Ó¤æÉæÖÈæÞÏåðÓìÁëÔÀáɰïÃÖ»ÕÓ¦¶®¿Òųí®Ï·´÷Çæ»÷뢼·Å¡²ÁÄâ¸éߪ¡¡Á²±ÐÊïêÓÌ´µµÏ­¼ìèíèÎéÉ¡¡éÞéÜéÑ¡¡é硡ձޱõ¼Ãå©ÃÉÌÎÀÄåªÉ¬¿£å¦¡¡Êªå§Î«ìÝÓªÛÆ²ÓÔïÖò»Ù»âìÛ¾ôǽÄü»ñè³»·è¨è²ðìÁư©µ´Í«µÉî«Ë²¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÇÆÁ˽ÃÁ×»Çíãí¶½¸ìûìøËëÁþ´ØÂ¨óúÅñóùóã¿·ÃÓ·à¡¡Ôã²ÚôÖËõ¼¨çÑÂÆçбÁ·ì×Ü×ÝçÒ·±ÏËçÎñßçÏ¡¡¡¡óÀôèÒíñúÉù´ÏÁªËÊÒÜÓ·âß±ÛÍÎŧµ¨Á³ëÚÁپټèн¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@±¡ÀÙÞµ½ªÇ¾ÊíѦޱް¼»¿÷ó°ó¯ó«òþó¡ó§ò÷ÂÝòåó¬ÙôñÞÏåñÚ¡¡êéÃÕ°ùÇ«½²»ÑҥлÌÜÚ×»íϪáÙ׬Èü¹ºÊ£êçÇ÷õãÌ£µ¸õèϽշì±Ô¯Óß±ÜåỹÂõåâÑûÛ¸õ±Ôͳó¶ÆÃ¾Ãª¼üÁ´ïƹø´¸ïñǶÍïÌ¡¡ïÉÀ«ã×À»ãǰåÒþÁ¥Ëä˪ϼ¾Ïº«¿Åì«Î¹³Ò¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¿¥ÏÊöÞöÛöÙºè¸ë÷çð¤µã÷í÷î÷ì÷ýÕ«´ÔààÏòÛÛÀÝÉôÒÍí¯´ÁÀ©ÖÀÈÅÄì°ÚËÓߢ¶Ïê×ëüéÄÃʹñ¼÷Äûèþ¡¡Ì¨ì£¹ééëкäÉÂË佦ÆÙä¯Ñ¬½ýìâ¡¡áîÁÔèµè¯ÎÍñ±ðÝ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Óúî­öÄÕ°íú´¡Àñð£»à¡¡´ÜÇÏóï»Éô¢óìóñ¼òÁ¸Ö¯ÉÉÈÆçÔÐåçÕ·­Ì³ÇÌ·­Ö°ÄôÆêë÷¾É²ØÈøÀ¶Ãê½åÞ¹ÜùÞ·¼öòͲõ³æó´¸²êîõüÚÓ½÷ÃýÚØ·á׸õ¾õç±Ä×Ù¼£õÏÇûתÕÞåÇåäåãÒ½½´ÀåÈÛ°÷ËøÎÙÄøÕò¸äï×ïÓ´¸Ç¹ãØ´³ãÙãÚÀëÔÓË«³û¼¦Áó÷·Çï¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@±Þ¡¡¶îÑÕÌâò¦ò§ÑîÁóâÈÀ¡÷Ñð¥Æï÷Á××ËÉκ÷Ë÷ÍöèÀðöê¡¡öç¾é¶ìðÀ÷ﶬ÷ø¡¡ÑÊ»µÂ¢ÛÞ³èÅÓ®³Í»³ÀÁãÂÅÊ£¿õÆØ³÷èüéµéÖå­äìäþå«Á¤±ôãò±¬Ë¸ë¹¶¿ÊÞ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ì¡çôÇí°ê³ë½®±ñ³ÕÃɰ­µ»»ñÎÈÁ±²¾ô¤Ç©éÜô¦Ïµ¼ëÒïÉþ»æÂÞ½Éëþ¸þÙúÀ°·ªÒÕ޴źÌÙÒ©ÊíÒÏӬЫзó¸ñɽó°ÀôÅ»©Æ×ʶ̷֤Úܼ¥ÎûÚÛÔùÔÞõë¶×³ùõêµÅõÎõí꥽δDZßåå¡¡õ´¾µïá²ùïßÁ´ïÛïÜ÷éïÚïÝïÏïÎï¬öɹØÂ¤ÄÑö¯ÎíÃÒèºÔÏÀà¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ô¸µßì¬ÂøâËæðÆ­®º¾¨öðöëöôðÈðÄȵðÆÅô÷èÀö´ôðȰÁüÈÂàÓÑϽÀÈÀæ×ÄïÄõ±¦¡¡ÐüâãÈÁÀ¹²óêØëÊé´À½ÃÖäò¯Ï×ççÑ÷Ö¢¿óí·¯Àùñ¼¾º³ïÀº¼®Å´Íűèçͼ̡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@×ëó¿Ò«ëͽ¢Ô尪ĢÝþ«ƻËÕÔÌòºÈäñܾõ´¥Ò鯩¾¯ÒëÔêÚÞÓ®ÉÄõ»Ôêõî¡¡õ·ÊÍÖÓîóÐâ²ûö±Æ®Èļ¢Ü°å¹ÌÚɧ¡¡ÈúöúÏÌÃæµ³÷ùö´³öÁäÙ³ÂÞà¿ßùÏùÙçÊôΡ¾åÉåÉãЯìµêÙÓ£À¸èù¼ß¹àÀÃÎþÏâè¬ñ®¡¡ÌÙ²øÐøåñÞÁÀ¼ºúòôÀó»À¯Íà°ÚÀÀÇ´¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@»¤ÓþÔß³ìÔ¾õÒºä±çõ¸Á­ÀØÌúîõîìïíïÔ±Ù°ÔÅù¶Ïì¹Ëò«÷ÏÇýæôÝëÂâ÷Ãħ÷Î÷¢÷¤Ýºº×ðΡ¡÷ê÷öܱö·ö¸ÄöÙ²ÙÎß½ÄÒÃÞÂÏáÛÂÍÍä̯ܲȨ»¶È÷̲â¤È¿µþñ«Ñ¢¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ìüÁýô¥ÁûÌýÔàÏ®³Ä¡¡¶ÁÊêØÍõÜõÙàÎÛªÖý¼ø¼øö«ö²÷²çÖ²ü÷Ò½¾æçÔàÐè±îöã÷§÷©ðÑŸ÷úö¹öº¹¨ËÕÑÒÁµÂξð½Áɹ¡¡è¶ÇÔÇ©¡¡¡¡Ó§Ï˲š¡ÕºÂܹƱäåÎÂßïðîåÅÙØÌÏÔ÷оªæäÑéËèÌå÷Ç÷­ÁÛ÷¬ð¸÷ëøÖö°ÓÀ¿å±Ì±ñ²´£¹ÞÏó¼áéÈò÷¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÚßÑÞ¸ÓÄð¯ö¨Áéö°Ç§ò­Öè÷Þ÷Êö×Ó¥ðؼïÑÎ÷¡ö»È£Ìüé­ÍåÀéÂáÂù¹ÛõæÐÆÏâԿ­²ö÷Å÷àÙäÂÐÖõÔÞÄ÷÷µÂ¿æ÷ÀÂÚÔõïõ¦×êöÇÂàöùöÔ÷òÑÞÔäðÐìàæêÓôðÙð½Óõ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¢Ù¢Ú¢Û¢Ü¢Ý¢Þ¢ß¢à¢á¢â¢Å¢Æ¢Ç¢È¢É¢Ê¢Ë¢Ì¢Í¢Î¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ø¼Ø¯¡¡ÙïØçÚ¢Ùû¡¡¡¡ÚàÛÌâºå²çÝçÛ¡¡ÛÈåæáê¡¡¡¡ðÚ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡©¡¡¡¡¡¡¡¡¡¡¡¡¤¡¤¢¤£¤¤¤¥¤¦¤§¤¨¤©¤ª¤«¤¬¤­¤®¤¯¤°¤±¤²¤³¤´¤µ¤¶¤·¤¸¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¤¹¤º¤»¤¼¤½¤¾¤¿¤À¤Á¤Â¤Ã¤Ä¤Å¤Æ¤Ç¤È¤É¤Ê¤Ë¤Ì¤Í¤Î¤Ï¤Ð¤Ñ¤Ò¤Ó¤Ô¤Õ¤Ö¤×¤Ø¤Ù¤Ú¤Û¤Ü¤Ý¤Þ¤ß¤à¤á¤â¤ã¤ä¤å¤æ¤ç¤è¤é¤ê¤ë¤ì¤í¤î¤ï¤ð¤ñ¤ò¤ó¥¡¥¢¥£¥¤¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¥¥¥¦¥§¥¨¥©¥ª¥«¥¬¥­¥®¥¯¥°¥±¥²¥³¥´¥µ¥¶¥·¥¸¥¹¥º¥»¥¼¥½¥¾¥¿¥À¥Á¥Â¥Ã¥Ä¥Å¥Æ¥Ç¥È¥É¥Ê¥Ë¥Ì¥Í¥Î¥Ï¥Ð¥Ñ¥Ò¥Ó¥Ô¥Õ¥Ö¥×¥Ø¥Ù¥Ú¥Û¥Ü¥Ý¥Þ¥ß¥à¥á¥â¥ã¥ä¥å¥æ¥ç¥è¥é¥ê¥ë¥ì¥í¥î¥ï¥ð¥ñ¥ò¥ó¥ô¥õ¥ö§¡§¢§£§¤§¥§¦§§§¨§©§ª§«§¬¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@§­§®§¯§°§±§²§³§´§µ§¶§·§¸§¹§º§»§¼§½§¾§¿§À¢¢¢¢§Ò§Ó§Ô§Õ§Ö§×§Ø§Ù§Ú§Û§Ü§Ý§Þ§ß§à§á§â§ã§ä§å§æ§ç§è§é§ê§ë§ì§í§î§ï§ð§ñ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ØÖ¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡í¡¡®÷¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ØéÙèÚâܳÞÐáëë¶âàãÜãßåÁê·ìáìêí±ò®ôéñ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡Ø¿ÛÉØÎÍòآآرءàí¡¡åøáÜ¡¡¡¡Óë¡¡ØÁØìØë¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÎÞ쯡¡ÆøãÝ¡¡¡¡Øí¡¡¡¡ØîÙÚ¡¡¡¡¡¡¡¡¡¡¡¡¡¡º»Äþå³¶ûåê¡¡¡¡¡¡âÏ¡¡âáîá¡¡ë­¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡áì¡¡¡¡ÒÜ¡¡¼¿ÓÅ¡¡Øõ¡¡¡¡âì¼Û¡¡´«¡¡¡¡Øó¡¡¡¡¡¡¡¡Ùü¡¡¡¡¡¡¡¡¡¡¿»¡¡¡¡¡¡àïØ¶ÛÜÛÙ¡¡ÞÅ¡¡æ±¡¡¡¡¡¡¡¡¡¡¡¡æØÞÍ¡¡á¨¡¡¡¡¡¡¡¡×¯Òì¡¡¡¡¡¡¡¡âã¡¡º´¡¡ÍÏǤ¡¡¡¡²æ¡¡¡¡ê¹ê¸¡¡¡¡¡¡¡¡»ú¡¡¡¡¡¡ë®Ùà¡¡ãá¡¡ãâãà¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡áí¡¡çà¡¡¡¡ÍÚÍø²Ý¡¡¡¡Ü´Üµò®¡¡ÚøÚõ¡¡Úö¡¡ÚãÍÓ¡¡ÒÙ¡¡¡¡¡¡¡¡ÌåØô¡¡Øû¡¡Ù¡¡¡ÙÜ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Û¿¡¡ÅéØÕ¡¡íÆ¡¡¡¡¡¡¶ïß¾¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡ÖÖ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÛС¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡æ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡á©¡¡á¬¡¡¡¡¡¡á±¡¡¡¡¡¡¡¡¡¡¡¡âÑ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ß¯ìýìþâí¡¡âå¡¡âçâè¼±¡¡¡¡¡¡Ðû³¡¡¡¡ÞÕ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÈÅ¡¡¡¡¡¡¡¡¡¡¡¡¿¼êº¡¡¡¡¡¡¡¡¡¡ÛØ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡è»è¾¡¡¡¡¡¡¡¡¡¡ë¯ë°¡¡¡¡¡¡¡¡¡¡Æã¡¡¡¡ãé¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ä°¡¡¡¡¡¡¡¡¡¡¡¡áð¡¡áñ¡¡¡¡¡¡¡¡¡¡îË¡¡î®¡¡ðÛ¡¡Ôí¡¡¡¡¡¡¡¡¸ì¡¡ëÀÜÐܶ¡¡ÜºÜ»¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ü·¡¡Ü¹õô¡¡¡¡¡¡Úú¡¡¡¡¡¡¡¡¡¡¶òÖ·¡¡¡¡¡¡Ù®¡¡¡¡¡¡¡¡Ù¥Ù¦Ù¨Ö¶¡¡¡¡¶±»²¡¡¡¡¡¡¡¡¡¡¡¡Ù°¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ùþ¡¡¡¡¡¡ØÚ¡¡´´¡¡Þä¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ßÆ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ßÏ¡¡¡¡¡¡¡¡¡¡¡¡Ú®ßÊ¡¡àòÅ÷¡¡ÛèÛã¡¡¡¡Ûé¡¡ÇðÛæÛê¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ûç¡¡¡¡¡¡¡¡¡¡¡¡¡¡æ§¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡æßæÛåµå´¡¡¡¡¡¡¡¡¡¡á²¡¡¡¡áµ¡¡á¸Áë᳡¡¡¡¡¡ÆÂ¡¡¡¡¡¡¡¡àúàù¡¡¡¡¡¡¡¡Â¼áÞÁæ¡¡¡¡¡¡¡¡âñâï¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡â÷¡¡»Ð¡¡¡¡¡¡¡¡âô¡¡¡¡¡¡¡¢»³¡¡Á¯ê§ìæÒ¨×§Ç¯¡¡¡¡¡¡ÞÔ¡¡¡¡¡¡ÞÓ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ê¾¡¡¡¡¡¡¡¡¡¡¡¡¡¡ëá¡¡¡¡¡Ñ¾¡¡¡¡èÄ¡¡¸¹ÏÇ¡¡¡¡¡¡Ì´¡¡¡¡¡¡¡¡¼«¡¡¡¡¡¡¡¡Ø²éâ碡¡í³¡¡ãùãú¡¡¡¡ãïãð¡¡¡¡ãî¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡ËÝ¡¡¡¡¡¡Å¢¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡È²¡¡êÁ¡¡¡¡¡¡¡¡ìÀ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡áô¡¡¡¡ÐÉ¡¡¡¡çð¡¡¡¡çã¡¡¡¡¡¡¡¡¡¡Ã¥î¯çÞ¡¡¸Ø¡¡¡¡íì¡¡¡¡í·¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡ñ¶¡¡¡¡¡¡¡¡ñô¡¡°¹¡¡¡¡¡¡ëÇ¡¡¡¡¡¡Ü¾¡¡ÜÅ¡¡¡¡¡¡ÜÇ¡¡¡¡¡¡ÜÌܸÜÍÜË¡¡ÜÒÜØ¡¡¡¡¡¡ò°¡¡ò±¡¡¡¡¡¡å¡¡¡¡åá¡¡¡ÚûºªÚüÛ¢¡¡ÚçÚè¡¡¡¡¡¡Ù´¡¡¡¡¡¡¡¡Ù¶¡¡Ù·¡¡¡¡¡¡¸©¡¡¡¡¡¡¡¡¡¡¡¡ØÙﱡ¡¡¡¡¡¡¡¡¡¡¡ØÇÀå¡¡¡¡ßÒ¡¡ßç¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡ßû¡¡¡¡¡¡¡¡¶ß¡¡¶¤ßá¡¡¡ßÚßè¡¡Ûû¡¡¡¡ÛìÛí¡¡¡¡¶âܧ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¸´¡¡¡¡¡¡æÏ¡¡¡¡æ­¡¡¡¡¡¡¡¡¡¡¡¡Ù§¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡È¹¡¡¡¡¡¡¡¡á¾¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Úá¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡âÓ¡¡¡¡åè¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ö¼¡¡¢¢¡¡âþ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ìç¡¡¡¡¡¡¡¡¿æ¡¡¡¡¡¡¡¡¡¡¡¡ÞÙ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡êÆ¡¡¡¡êÇ¡¡¡¡¡¡¡¡ìã±þêÃêÄ¡¡¡¡¡¡¡¡èÞ¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¹ñ¡¡¡¡èÏ¡¡¼Ï¡¡¡¡¡¡éªèÕ¡¡èס¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡èÍ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡èÚ¡¡¡¡¡¡éãéå¡¡±ÑÅþô¡¡ë±¡¡¡¡¡¡¡¡ÍÝ¡¡È÷¡¡¡¡ä²ä§ä¨¡¡ä®¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@½à¡¡¡¡¡¡¡¡¡¡ä¦¡¡¡¡¡¡¡¡¡¡¡¡ìÄ¡¡¡¡ìÆ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡êð¡¡¡¡áõ¡¡¡¡¡¡¡¡¡¡Ãî¡¡çæçì¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡î²¡¡¡¡¡¡¡¡íñ¡¡íí¡¡¡¡¡¡¡¡¡¡ïò¡¡¡¡í¼Åø¡¡¡¡¡¡¡¡í¹¡¡¡¡¡¡¡¡¡¡°À¡¡ïõÖÖ¡¡Ö»¡¡ñ¸¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡×±¡¡¡¡¡¡¡¡æý¡¡î·ÓÕ¡¡¡¡¡¡¡¡¡¡ñèÞÇ¡¡¡¡¡¡Ö«¡¡ëÏ¡¡¡¡¡¡ëÑ¡¡ëÔ¡¡¡¡¡¡ëÓ¡¡ëÒ¡¡ô­»Ü¡¡¡¡Æ»¡¡¡¡¡¡ÜæÜûÉ»¡¡ÜÚ¡¡ÜÓ¡¡¡¡ÜÝÜÞ¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÜÖÜå¡¡¡¡¡¡¡¡¡¡ò´¡¡¡¡¡¡¡¡¡¡ñá¡¡¡Ùê¡¡¡¡¡¡åÅ¡¡¡¡¡¡¡¡¡¡Û¤Û¥Û¨¡¡¡¡îÆîÅÚë¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ù¾Ùá¡¡¡Ùá¡¡¡¡¡¡¡¡¡¡¡µ³¡¡¡¡¡¡Æà¡¡¾»¡¡Øß¡¡¡¡ØÞ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ßêßî¡¡ßÄÛÁß¡¡¡¡ßòº¬¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÛôÛø¡¡¡¡¡¡¡¡Ûù¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ø«¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡åò¡¡¡¡í¢í£í¤¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@í¥¡¡¡¡¡¡ã¨¡¡ã¦ã§¡¡ãª¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡°Î¾Èͱ¡¡ÞÜ¡¡ÞÚÞÛ¡¡Å²¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ì·ì¹ì¸Æì¡¡êÉ¡¡¡¡¡¡¡¡¡¡¡¡èñèàèá¡¡¡¡¡¡ÆÜ¡¡¡¡¡¡¡¡¡¡¡¡èäèæ¡¡èé¡¡Æõ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¿È¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡ÈÞ¡¡¡¡ä½¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ä´ä³¡¡¡¡¡¡¡¡ä·¡¡ä»¡¡¡¡ä¼¡¡Í¿¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡áþáù¡¡¡¡áüâ¡áû¡¡çîçí¡¡¡¡çò¡¡çñ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ð¬¡¡ê²¡¡¡¡î³¡¡ðæ¡¡¡¡ðä¡¡ðò¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡íôíòíó¡¡íÈíÇ¡¡¡¡¡¡¡¡¡¡¡¡¡¡íÉ¡¡¡¡¡¡¡¡ìî¡¡ìïìð¡¡¡¡ïø¡¡¡¡¡¡ïö¡¡¡¡¡¡¡¡ñ¹¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@óÇ¡¡¡¡óËóÅóÉ¡¡¡¡¡¡¡¡ôΡ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ç£¡¡¡¡¡¡¡¡¡¡î¸¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ñé¡¡¡¡°·ëÜ¡¡¡¡¡¡¡¡¡¡ô¨ô±¡¡ÜüÜú¡¡¡¡Üè¡¡¡¡¡¡¡¡¡¡Üç¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡Ý¢¡¡ÜëÜí¡¡Üñ¡¡¡¡Þ¶Üò¡¡Üô¡¡¼ð¡¡¡¡²ç¡¡¡¡¡¡¼ë¡¡¡¡ò¶ó¢ò·¡¡¡¡¡¡¡¡¡¡ò¸ò»²Ï»×¡¡òºò»¡¡¡¡¡¡¡¡¡¡¡¡¡¡ô¬¡¡¡¡¡¡ñÄ¡¡¡¡ñÆ¡¡¡¡ôÀ¡¡¡¡¡¡ôø¡¡¡¡áí¡¡¡¡¸ÏõÀ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÊÊ¡¡åÌ¡¡¡¡¡¡¡¡¡¡¡¡¡¡Û£¡¡¡¡Û®Û­Û¬¡¡ôû¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ôüôýîÉ¡¡¡¡¡¡ÚìöÀ¡¡÷ÔÛË¡¡¡¡Æõ±Æ¡¡¡¡¡¡¡¡¡¡¯ÛÙÊ¡¡¡¡¡¡¡¡õá¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¹ÐÛá¡ØÐ¡¡à£à¤ßþ¡¡ßý¡¡ßô¡¡à©¡¡¡¡à§¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡É¶¡¡âè¡¡¡¡¡¡¡¡¡¡àõàð¡¡¡¡¡¡¡¡¡¡Ûúܥܤܣ¡¡Ûü¡¡Ü¡ÛïÝÀ¡¡¡¡¡¡¡¡¡¡Ûë¡¡¡¡¡¡¡¡°Ó¡¡¡¡¡¡¡¡Ü¢¡¡¡¡¡¡¡¡æ¼æº¡¡¡¡¡¡æ«¡¡æ¹¡¡¡¡Òù¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡åíáÆ¡¡¡¡á¿á´¡¡¡¡áÁáá¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ạ¡¡¡¡¡áÄ¡¡¡¡¡¡¡¡âÕ¡¡âØ¡¡¡¡¡¡¡¡¡¡¡¡ÕÜ¡¡¡¡¡¡¡¡¡¡¡¡¡¡À·¢¢ëöã®ã­¡¡¡¡¡¡¾ª¡¡¡¡¡¡êý¡¡Þåµà¡¡¡¡ÅöÞÝ¡¡¡¡¡¡Þá¡¡¶ÞÆþ®Æ¾Ý¡¡ÞÓÞãÞ硡Ų¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¶áìºêΡ¡¡¡¡¡¡¡¡¡¡¡ÀÆ¡¡¡¡¡¡¡¡±­¡¡¡¡¡¡¡¡¡¡¡¡¡¡èõ¡¡èôèö¡¡¡¡èø¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ì¤¡¡¡¡¡¡éè¡¡¡¡ë´®­äÊ¡¡¡¡¡¡¡¡¡¡¡¡äªäµ¡¡¡¡¡¡äÄ¡¡Äס¡äË¡¡äÇ¡¡Õã¡¡ÑÍ¡¡¡¡¡¡¡¡¡¡³Å¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Íé¯ÞÌþ¡¡¡¡¡¡¡¡ìÉ¡¡¡¡¡¡ìÊ¡¡¡¡¡¡¡¡¡¡¡¡êõ¡¡¡¡êöâ§â¢¡¡¡¡¡¡â¥¡¡¡¡¡¡â¦¡¡¡¡¡¡¡¡¡¡¡¡è¯¡¡¡¡º¬¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡´ð¡¡Ñ÷¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¶²¡¡»×¡¡¡¡¡¡ÃÐíõ¡¡¡¡¡¡¡¡¡¡íö½öí÷¡¡Îø¡¡¡¡¡¡íÑíΡ¡íÏ¡¡ìö¡¡¡¡¡¡¡¡¼Ð¡¡Àë½Õ¡¡¡¡¡¡¡¡¡¡¡¡óÌ¡¡óÓ¡¡¡¡óÔóÕ¡¡óΡ¡óÑóÊ¡¡¡¡¡¡óÍ¡¡¡¡¡¡Õ³¡¡¡¡¡¡¡¡¡¡¡¡ç¤¡¡¡¡³ñ¡¡¡¡¡¡çª¡¡¡¡¡¡¡¡¹Ò¡¡ôÆ¡¡ñ´¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡ñõ¡¡¡¡ëä¡¡ëÖ¡¡¡¡ëãëâ¡¡ëä¡¡¡¡¡¡¡¡ô´ô¶¡¡ô·¡¡åõ¡¡¡¡Ý¹¡¡¡¡¯æ¶¹¡¡¡¡¡¡¡¡Üô¡¡¡¡Ý³Ý´¡¡¡¡¡¡ÜðÝ­¡¡¡¡¡¡¡¡¡¡¡¡Ý¨¡¡¡¡¡¡¡¡¡¡¡¡¡¡åµºô¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡òÅòÄ¡¡¡¡¡¡¡¡¡¡òÊ¡¡¡¡¡¡¡¡¡¡¡¡ìÅ¡¡¡¡ñÈ¡¡¡¡¡¡¡¡´Öðù¡¡¡¡¡¡¡¡Ùó¡¡¡¡ÅÛ¡¡¡¡õû¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡õ¡¡¡¡õÁ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡åÍåÏ¡¡¡¡åÒÛ°¡¡¡¡³»¡¡¡¡¡¡Û¯¡¡¡¡¡¡¡¡·Ó¡¡¡¡¡¡º¸¡¡¡¡¡¡îÌîÏ¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡îÊ¡¡¡¡¡¡ãÆ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ø¸¡¡¡¡¡¡¡¡¡¡´ö¡¡¡¡Âî¡¡¡¡¡¡áæ¡¡¡¡¡¡¡¡¡¡¡¡¡¡Àúೡ¡ÁÁ¡¡à¥¡¡¡¡¡¡à®ßöß÷௡¡¡¡¡¡¡¡¡¡¡¡ÑÒ¡¡¡¡¡¡ßá¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ܧܦ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¼î¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡æ£¡¡¡¡æÄ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Íµ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÊµÇÞ¡¡¡¡¡¡¡¡¡¡áÑ¡¡áÒ¡¡¡¡í¸¡¡ÓçáΡ¡¡¡áÌ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡á¢¡¡åé¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@㢡¡¡¡³À¡¡¡¡¡¡Ôä¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡êþÞï¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÞëÞÞ¡¡Þé¡¡¡¡¡¡Þò¡¡¡¡Þí¡¡¡¡¡¡¡¡¡¡¡¡¡¡ºä¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡±ó¡¡¡¡¡¡í½ì¼¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡°µ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡èâèÇ¡¢ñî¡¡¡¡¡¡é§¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡èû¡¡é£¡¡íÖ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ì¥¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ïý¡¡¡¡ë¥Çèíµ¡¡¡¡¡¡¡¡ãí¡¡¡¡¡¡¡¡äÍ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ºÊ䥡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡äС¡¡¡¡¡äÔ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ìÌ¡¡¡¡ìͳ´¡¡¡¡¡¡¡¡¡¡¡¡¡¡¼ã¡¡¡¡¡¡¡¡¡¡êø¡¡ì­¡¡â©â®¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡çýçþçü¡¡Õµ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@袡¡¡¡µñ¡¡¡¡¡¡¡¡¡¡¡¡¡¡å¸¡¡î´ðð¡¡¡¡ðí¡¡¡¡ðî¡¡¡¡¡¡¡¡¡¡íûÇÆ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ïó¡¡íÌ¡¡¡¡íË¡¡íÒÈ·¡¡¡¡íº¡¡¡¡¡¡¡¡¡¡¡¡ïü¡¡ïû¡¡¡¡¡¡ñµ¡¡¡¡¡¡¡¡¡¡óÜ¡¡¡¡óØóÚôÒôÑ¡¡¡¡¡¡¡¡¡¡¡¡æþ¡¡¡¡ç¥¡¡½à¡¡¡¡¡¡¡¡¡¡¡¡ç¬Æ¿¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡ÈÞ¡¡ÏÛ¡¡¡¡¡¡¡¡¡¡¡¡¡¡À°¡¡¡¡¡¡¡¡¡¡´à¡¡¡¡¡¡¡¡¡¡ôª¡¡¡¡¡¡¡¡¡¡ºÊÝÏ¡¡ÝÒ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ý½ÝÃݾݿ¡¡ÝÕ¡¡¡¡ÝÅ¡¡ÂÌ¡¡ÝÌ¡¡ÝÈÝÉ¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¹½ÔÖÝС¡¡¡¡¡¡¡¡¡¡¡¡¡±§¡¡¡¡¡¡òÕ¡¡¡¡¡¡öÚ¡¡¡¡¡¡¡¡¡¡¡¡òË¡¡¡¡òÖ¡¡ÅªÍ¬¼Ð¡¡¡¡¡¡¡¡¡¡¡¡ñËñÊ¡¡¡¡¡¡ñÌ¢¢êè¡¡µÖõý¡¡Úª¡¡¡¡¡¡¡¡¡¡Ú°¡¡¡¡Ú±îº¡¡¡¡¡¡¡¡¡¡¡¡¡¡êÜ¡¡êÛ¡¡¡¡ôò¡¡¡¡¡¡¡¡¡¡¡¡õÅ¡¡õÊ¡¡¡¡¡¡õÆ¡¡¡¡¡¡é÷¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@éò¡¡¡¡¡¡¡¡¡¡¡¡éîéô¡¡¡¡¡¡¡¡åÕ¡¡åÖÛ©¡¡Û²¡¡¡¡¡¡¡¡¡¡Úý¡¡¡¡¡¡¡¡õ¢ôþ¡¡õ¡¡¡îÕ¡¡îØ¡¡¡¡îÑ¡¡¡¡îÙ¡¡¡¡¡¡Ç¦î×îÖ¡¡¡¡¡¡¡¡¡¡Ô¿¡¡¡¡¡¡ãÊ¡¡¡¡¡¡Úñ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Úí¡¡¡¡¡¡¡¡¡¡¡¡·Õ¡¡¡¡¡¡ñü¡¡âÀ¡¡íé¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÏÉØñ¡¡ÙÍ¡¡¡¡ÙÑ¡¡¡¡ÙÝ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡àÉ¡¡¡¡¡¡àá¡àÁàÄßડ¡¡¡¡¡¡¡à²¡¡àÇàÊ¡¡¡¡¡¡¡¡¡¡Û÷Ûîëó¡¡¡¡¡¡¡¡¡¡È·Üª¡¡¸Ô¡¡¡¡¡¡¡¡¯ãôÁ¡¡æÊ¡¡ëô¡¡À¢¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡½þÖá¡ÏÊ¡¡¡¡¡¡áÓ¡¡¡¡áÍ¡¡Îë¡¡¡¡ÛÏ¡¡ÃÝ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ì°¡¡áæ´À¡¡ã»ãº¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ê­ê®¡¡¡¡¾¾´¤°ñ¡¡Þ÷¶ó¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¿¸¡¡¡¡¡¡¶ó¡¡¡¡¡¡ÞøÞù¡¡ÍØÞô¡¡¡¡ÌÍ¡¡Îæ´·ÉÈÞõ¡¡Þö¡¡Þú¡¡¡¡°ß¡¡¡¡êÒ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡é¸¡¡¡¡¡¡¡¡é¨´»¡¡¡¡é©é«é¥¡¡¡¡¡¡¡¡¡¡¡¡¡¡´ªé¸é¢é±é²¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¼ê¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ì§¡¡ì¦¡¡¡¡¡¡éê¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@먡¡¡¡¡¡¡¡¡¡äç¡¡äé¡¡¡¡¡¡äÚËÝ¡¡¡¡äá³ü¡¡¡¡äã°¨¡¡¡¡äæäÑ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡»Ô¡¡ì¿¡¡¡¡¡¡¡¡ÜäìÒìÔ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡êù¡¡¡¡¡¡¡¡¡¡¡¡áø¡¡¡¡¡¡é»¡¡¡¡çâ¡¡¡¡è¥¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ê³¡¡¡¡¡¡îµ¡¡¡¡¡¡¡¡ðñ¡¡ðâðó±Ô¡¡ðõ¡¡¡¡¡¡¡¡¡¡ðª¡¡¡¡¡¡¡¡¾ì¡¡¡¡íý¡¡¡¡¡¡¡¡¡¡¡¡íÖíÕ¡¡¡¡¡¡¡¡¡¡¡¡íØ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡°Þ¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡ÛÊ¡¡¹Ü¡¡Ëã²ÞͲóâ¡¡¡¡óã¡¡¡¡¡¡¡¡¡¡ôÓ¡¡¡¡ç°ç®¡¡ç¨¡¡¡¡¡¡¡¡¡¡ç¯¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡î»¡¡¡¡ôÇôÈ¡¡¡¡³ú¡¡ëí¡¡¡¡ëî¡¡¡¡¡¡¡¡¡¡¡¡ëò¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡ëá¡¡ôºô¹¡¡¡¡¡¡Æ¶¡¡¡¡Ýã¡¡¡¡¡¡¡¡Ýס¡¡¡¡¡¡¡¡¡¡¡ÝØÝÙ¡¡ÝÚ¡¡¡¡¡¡ÇÍ¡¡¡¡ÝÝ¡¡Ýß¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ý¦Ò©¡¡Ýå¡¡¡¡¡¡¡¡¡¡Äè¡¡¡¡²Î¡¡Ýç¡¡òû¡¡¡¡¡¡òÌ¡¡¡¡¡¡òÙ¡¡òÝ¡¡¡¡òÜ¡¡¡¡¡¡¡¡ñΡ¡¡¡¡¡¼Ð¡¡¡¡¡¡¡¡ö¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡õþ´¥¡¡Ú²Ú´Ú¼ö¤¡¡¡¡Ú³Ú·¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡õ÷¡¡¡¡¡¡ôô¡¡¡¡¡¡¡¡¡¡ôó¡¡¡¡ëÝ¡¡õÍ¡¡¡¡¡¡¡¡õС¡¡¡¡¡õ¼²È¡¡¡¡¡¡¡¡éûéú¡¡¡¡¡¡åÙ¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@å×Õì¡¡¡¡¡¡¡¡¡¡ÔÇÚù¡¡¡¡Íªõ¥îè¡¡îæîÚîÛîÝ¡¡îáï¥îê¡¡×êîãîâ³ú¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ï´¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Úóö¡¡¡¡¡¡¡¡½ù¡¡¡¡¡¡ñþ¡¡ñý¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ùì¡¡ö¼ÙÖ¡¡¡¡ÙÇËÛ¡¡¡¡¡¡¡¡¡¡ÙÕ¡¡¡¡ÙÔ¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡Øä¡¡¡¡¡¡¡¡àס¡àÑ¡¡¡¡ØÅßéàÒ¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ü­¡¡¡¡¡¡¡¡Ü¬¡¡Ü¡¡¡¡¡¡¡ÉÊ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡æÑ¡¡¡¡¡¡¡¡¡¡¡¡æÆ¡¡¡¡æË¡¡¡¡¡¡¡¡¡¡¡¡¡¡êÇ¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡åïáÖ¡¡¡¡¡¡¡¡áС¡¡¡¡¡¡¡²Î¡¡¡¡¡¡¡¡àýÄ»¡¡¡¡âÛ¡¡¡¡¡¡Òñ¡¡âÚ¡¡¡¡¡¡¡¡¡¡Ëßí¨¡¡¡¡¡¡ã¥¡¡¡¡¡¡¡¡¡¡Éå¡¡¡¡¡¡¡¡¡¡âæ¡¡¡¡ê¯ê¨¡¡°á¡¡¡¡¡¡¡¡ÞÒ¡¡¿Ù¡¡¡¡¡¡³¶¡¡ÁÌÞûÞè¡¡¡¡¡¡¡¡¡¡ë¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÍûéÁ¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡é¶¡¡¡¡¡¡¡¡¡¡¡¡¡¡é¼éÇ¡¡¡¡¡¡èç¡¡¡¡¡¡éÀ¡¡éá¡¡¡¡¡¡¡è¿¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¢¢¢¢¡¡¡¡éæ¡¡¡¡¡¡¡¡¡¡Üþ¡¡¡¡¡¡¡¡ä°¡¡¡¡¡¡äõ¡¡¡¡Å½¸É¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@äñ¡¡äï¡¡äÝ¡¡¡¡¡¡äÓ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ñ¬¡¡¡¡¡¡ìÁ¡¡°ñ¡¡¡¡¡¡´ôâ°¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡î¶¡¡à³¡¡ðøðý¡¡ðú¡¡ñä¡¡¡¡³ò¡¡¡¡î¦¡¡Øº¡¡íÚÕè²êí¸¡¡¡¡¡¡¡¡íÜ¡¡¡¡íÈ¡¡¡¡ìù¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ñ¿¡¡ñ¾¡¡¡¡óí¡¡¡¡óä¡¡¹¿¡¡¡¡óøóë¡¡Ôý¡¡¡¡¡¡¡¡¯ÜôÔ°Þ¡¡¡¡¡¡ç¹¡¡¡¡¡¡¡¡¡¡¡¡çµ¡¡ç³¡¡¡¡ç¸¡¡¡¡¡¡ôëôì¡¡¡¡¡¡¡¡¡¡¡¡ôã¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡Ùå¡¡¡¡¡¡ëð¡¡¡¡¡¡¡¡¡¡Ýõ¡¡Ýò¡¡Ýð¡¡¡¡¡¡¡¡¡¡ÝóÝôÝèÝé¡¡¡¡¡¡Ýê¡¡¡¡¡¡¡¡Ýª¡¡¡¡¡¡ÝÏØáÜç±Í¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡òÞµû¡¡¡¡òâòàÀ¯¡¡¡¡¡¡¡¡¡¡òä¡¡¡¡¡¡¡¡¡¡¡¡ÑÑÄÞòç¡¡¡¡¡¡¡¡¡¡¡¡òã¡¡µ°¡¡¡¡ñÑ¡¡¡¡ñÕ¡¡ñÓ¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ñÖ¡¡¡¡¡¡êê¡¡¡¡¡¡ö¢¡¡¡¡¡¡¡¡ÚÀ¡¡ã£¡¡¡¡¡¡êä¡¡¡¡¡¡õÔ¡¡¡¡¡¡õÕÓ»¡¡¡¡¡¡õ½¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ûµ¡¡¡¡Û³¡¡¡¡¡¡¡¡¡¡¡¡¡¡õ¨õª¡¡Ò¿¡¡¡¡¡¡îïîî¡¡îð¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@î÷ï¢ï¤¡¡¡¡îþï¨îñöÆ¡¡Ìú¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡îû¡¡¡¡¡¡¡¡¡¡¡¡¡¡°í¡¡¡¡¡¡Ø»¡¡¡¡¡¡÷¹¡¡¡¡¡¡ãú¡¡ì©¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ôê¡¡÷º·Â¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ð±¡¡¡¡¡¡¡¡¡¡ÙÓÙØ¡¡¡¡Ùٽġ¡¡¡½ËØÛÛ½¡¡¡¡¡¡àáߨ¶ñ¡¡à¢¡¡àÙ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡àÜ¡¡ß¼¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡á×áÀ¡¡¡¡¡¡¡¡¡¡á½¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡âÜ¡¡âС¡¡¡±ïé×íÍ¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡»Ý¡¡éס¡ã´¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Þþ¡¡¾ï¡¡¡¡¡¡¡¡¡¡¡¡µ§ÞØ¡¡¡¡´îÕóÇý¡¡¡¡í½¡¡Äè¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡éË¡¡¡¡¡¡¡¡¡¡¡¡éÈ¡¡¡¡¡¡¡¡Ü¬¡¡éΡ¡¡¡¡¡èý¡¡¡¡¡¡¡¡¡¡¹æ¡¡¡¡¡¡éÌ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ë§¡¡ò£¡¡¡¡ÀÔ¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@äøä÷äùäê¡¡¡¡äì¡¡¡¡Ì²³Î¡¡äû¡¡¡¡¡¡ºÆ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ä¶¡¡¡¡ää¡¡¡¡¡¡¡¡¡¡¡¡ìÚ¡¡¡¡ìØ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ìס¡¡¡±Ðéá¡¡¡¡â²¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡è¯çö¡¡Çò计¡Ëö¡¡¡¡¡¡¡¡¡¡¡¡ðûðùðþ¡¡¡¡¡¡¡¡ñ²ñ¡ò«¡¡¡¡î¥óï¡¡¡¡¡¡¡¡È·¡¡¡¡¡¡¡¡íÝ¡¡¡¡¡¡íßìú¡¡¡¡¡¡¡¡¡¡¡¡ð¡¡¡ÌîñÁ¡¡óæ¡¡óè¡¡¡¡¡¡¡¡¡¡ôÛôÚôØ¡¡¡¡¡¡¡¡¡¡ç½çÅ¡¡¡¡çÁçÂçá¡¡¡¡¡¡¡¡¡ôÊ¡¡¡¡Íæ¡¡¡¡ôå³á¡¡¡¡ëù¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡ÆÌô¼¡¡¡¡¡¡¡¡¡¡¡¡Þ¢¡¡¡¡¡¡¡¡¡¡¡¡Ýý¡¡¡¡¡¡ÒÕÄè¡¡¡¡ÝøÝ»¡¡¡¡µÙ¡¡¡¡¡¡Þ¤¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÜêÝä¡¡¡¡ÜࡡݯÝûÜÊ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ë½¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡òöòø¡¡¡¡çé¡¡¡¡¡¡¡¡Èä¡¡¡¡â­¡¡¡¡¡¡°«â¬¡¡Ô³¡¡¡¡òó¡¡òú¡¡òï¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ñØ¡¡¡¡¡¡Ðä¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÚÁ¡¡¡¡¡¡Ú¡¡¡¡¡¡ÚÅ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡êãè¡êæ¡¡¡¡¡¡¡¡¡¡õÛ¡¡¡¡õÚ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@õÖ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¹ø¡¡¡¡¡¡¡¡µÝ¶Ý¡¡¡¡Û·¡¡¡¡¡¡µ¦Ðí¡¡õ¬Õµ¡¡¡¡¡¡¡¡¡¡¡¡ï¶¡¡¡¡¡¡¡¡îòï«ï·¡¡¡¡¡¡ï²îúï¯ïÑï°¡¡öÈ¡¡ï¸å÷¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ﬡ¡¡¡¡¡¡¡ãÏãÍ¡¡¡¡ÍÇ¡¡¡¡¡¡ö¬¡¡ö¦¡¡¡¡¡¡¡¡¡¡¡¡¡¡ò¤¡¡¡¡¡¡¡¡¡¡¡¡ôÙ¡¡âÄ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡æà¡¡¡¡¡¡ææ¡¡¡¡¡¡¡¡¡¡÷Ø÷Ö¡¡¢¢¡¡÷É¡¡öС¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ð±¡¡¡¡¡¡Ñã¡¡¡¡Ñó¡¡¡¡Ø¾¡¡¡¡¡¡¡¡¡¡¡¡¡¡î£¡¡ßÕ¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡ßÜ¡¡¡¡ßà¡¡¡¡à÷¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÛÔ¡¡æÓæÍ¡¡æÈ¡¡¡¡¡¡æÔ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡á»¡¡¡¡ÏÕ¡¡á®¡¡¡¡¡¡á®¡¡¡¡¡¡¡¡âÞ¡¡¡¡âÝ¡¡¡¡áèí­º©¡¡¡¡¡¡¡¡¡¡âø¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡ß¨¡¡ß§Çæ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡êÕ¡¡¡¡¡¡Ïò¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡éС¡¡¡¡¡éÓ¡¡éØ¡¡¡¡¡¡¡¡¡¡ÈïéÒ¡¡¡¡¡¡¡¡¡¡ù»¡¡¡¡³Å¡¡¡¡ÎÞ¡¡¡¡¡¡¡¡éìéé¡¡¡¡¡¡¡¡ë«¡¡¡¡ä½É¬¡¡¡¡¡¡Âº¡¡¡¡¡¡»í¡¡¡¡¡¡ä«¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡å¡Åº¡¡¡¡¡¡¡¡¡¡¡¡»Í¡¡¡¡¡¡ìÇ¡¡ìÜ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡áúⳡ¡áýáö¡¡Çí¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ñ¦¡¡¡¡ñ¬ñ¢ñ©¡¡ñ§÷þ¡¡¡¡¡¡¡¡¡¡¡¡Þ«¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡ÀÚ¡¡¡¡íס¡¡¡¡¡¡¡Âµ¡¡¡¡¡¡¡¡¡¡ñÀ¡¡¡¡¡¡¡¡¡¡¡¡¡¡óô¡¡óöóõ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ôÜ¡¡¡¡¡¡¡¡¡¡¡¡çÈ¡¡¡¡¡¡¡¡¡¡ÌС¡çÄ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡±Ï¡¡¡¡¡¡ÅÕñð¡¡¡¡ì¢¡¡¡¡¡¡¡¡¡¡´à¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Þ¡¡¡¡¡¡¡Ü¿¡¡Üé¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡ÝÛިݡÝÞ¡¡¡¡¡¡¡¡¡¡¡¡¡¡Üñ¡¡¡¡Ýµ¡¡¡¡Ü¼¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ó¥òû¡¡ó¢¡¡¡¡ÒÏ¡¡¡¡¡¡ó£¡¡¡¡¡¡òÏ¡¡¡¡¡¡¡¡¡¡¡¡å½ôÁ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ðú¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ú»¡¡¡¡¡¡¡¡ÚÊÚÌ¡¡¡¡¡¡ÚÒ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡õÞ¡¡¡¡¡¡õáõäÓâ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ºä¡¡ÈÆ¡¡¡¡¡¡¡¡¡¡¡¡Û¦¡¡õ­õ¯õ®¡¡¡¡ïæïÃïÄﺡ¡Õà类÷A¡ï¹ï¾îÍ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡ãÕ¡¡ãÐÑË¡¡ãÑãÓ¡¡ãÔ¡¡¡¡¡¡Òõ¡¡¡¡¡¡÷´¡¡¡¡¡¡¡¡¡¡¡¡¡¡Î¹¡¡¡¡²µ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ëÝ¡¡¿è¡¡¡¡÷Û¡¡¡¡¡¡¡¡¡¡öÔ¡¡¡¡¡¡¡¡öÖöØ¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ð¶¡¡¡¡¡¡¡¡ð·÷æ¡¡÷å¡¡°ü¡¡¡¡¡¡¡¡÷ü¡¡¡¡¡¡¡¡¡¡¡¡¡¡àêßâ¡¡àã¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÄÌ¡¡æÕ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ß½¡¡áÚàü¡¡¡¡¡¡ÇÚ¡¡¡¡¡¡¡¡¡¡¡¡âûÃɱ÷µ·¡¡¡¡ß©¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡éÝô¯èß¡¡¡¡¡¡¡¡¡¡¡¡éÕ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡éÛ¡¡¡¡¡¡¡¡¡¡¡¡Á²½©¡¡¡¡í´¡¡ÃÖ¡¡¡¡¡¡¡¡¡¡å¨¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡â´¡¡¡¡¡¡è´¡¡¡¡¡¡¡¡¡¡¡¡êµ¡¡ê´¡¡ñª·Ïð÷ðï𫡡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡íÍ¡¡¡¡¡¡íáíâ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡óü¡¡óå¡¡¡¡¡¡¡¡óþóÙ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡óø¡¡¡¡ôÝçÊ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ôí¡¡¡¡¡¡÷ãôê¡¡¡¡óÁ¡¡îÀ¡¡¡¡¡¡ñïëþ¡¡ëûëý¡¡¡¡¡¡¡¡¡¡ô½¡¡¡¡ÔÌÞ²¡¡¡¡¡¡¡¡¡¡Þ®Þ¯¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ý÷¡¡»à¡¡Þª¡¡¡¡¡¡¡¡¡¡¡¡Ìê¡¡¡¡¡¡¡¡ÜöÞ¶Þ³¡¡¡¡¡¡Ý²¡¡ò¾¡¡ó¤¡¡¡¡ó©¡¡óª¡¡¡¡¡¡¡¡¡¡¡¡¡¡òüÕÝ󱡡¡¡¡¡¡¡ó®¡¡¡¡çÊñÍ¡¡¡¡ñß¡¡¡¡¡¡¡¡êí¡¡¡¡ì²¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡ÚÕ¡¡Öß¡¡¡¡¡¡¡¡¡¡åÀ¡¡¡¡¡¡¡¡¡¡ÚÖ¡¡¡¡¡¡¡¡¡¡¡¡õù¡¡¡¡¡¡¡¡åÞ¡¡õÄå¿¡¡¡¡¡¡¡¡¡¡ÃÑõ°È©¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ïÊ¡¡ïÇÕëÕ¡¡¡ïÈ¡¡¡¡¡¡¡¡¡¡öÌ¡¡öÊ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡°µºå¡¡ãÖ¡¡¡¡õÒÚô¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ü±ç´¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ºý¡¡â¼¡¡¡¡¡¡ôס¡Ùå¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡´ôöá¡¡¡¡¡¡¡¡÷ÌöÚ¡¡öÜ¡¡¡¡¡¡¡¡¡¡öÝ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ð¹¡¡¡¡ð»¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡ð¼¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡íêö½¡¡¡¡÷÷ö³Ùß¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Äö¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡í¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Ñ÷ÖÀÞó¡¡¡¡¡¡¡¡ß£¡¡¡¡¡¡êÖ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡èë¡¡¡¡Ò½¡¡¡¡¡¡¡¡¡¡äÞ¡¡¡¡¡¡¡¡¡¡äóãø¡¡¡¡¡¡Ò«ìÞ¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ê¶ñ°ðÜ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÀÚíäÅù¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ô¡¡¡¡¡ô£¡¡¡¡¡¡óë¡¡¡¡É¡¡¡¡¡çÀ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ñù¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡ô¾¡¡¡¡¡¡¡¡¡¡´Ô¡¡¡¡¡¡Ý÷¡¡¡¡¡¡Ý£¡¡¡¡¡¡Âñ¡¡¡¡¡¡Þ¸¡¡¡¡¡¡¡¡¡¡ó²¡¡ó³ó¨¡¡¡¡¡¡¡¡¡¡ó­¡¡¡¡ò±¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡á¥¡¡¡¡ñС¡¡¡¡¡Ú©¡¡¡¡¡¡×çºôá¡¡¡¡¡¡ö¥¡¡ßõ¡¡¡¡¡¡¡¡¡¡¡¡¡¡õø¡¡ØÓêÞ¡¡¡¡¡¡õÜõÅ¡¡¡¡õÜ¡¡Ôã¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡ÌË¡¡åïõ¿¡¡ê¤¡¡¡¡¡¡¡¡Ú÷¡¡¡¡¡¡¡¡¡¡õµõ²ïØÁ­ññ¡¡¡¡ï½¡¡îø¡¡ïË¡¡ïÖ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ãÄ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡÷¶¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡è¸¡¡¡¡¡¡Ú»¡¡¡¡¡¡¡¡â¾¡¡æë¡¡¡¡æì¡¡¡¡¡¡æí¡¡¡¡÷¡¡÷Ü¡¡¡¡ãÒ¡¡òâ¡¡¡¡öé¡¡¡¡¡¡öá¡¡¡¡¡¡¡¡¡¡¡¡¡¡ðÃ𾡡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ðÁ¡¡¡¡¡¡¡¡¡¡¡¡÷ð¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ØÉ¡¡¡¡ß¿¡¡à¢ÆµÛä¡¡¡¡¡¡ÀÁ¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡ß«¡¡¡¡¡¡¡¡¡¡¡¡éÆ¡¡¡¡¡¡¡¡¡¡èÝ¡¡¡¡éÍ¡¡¡¡éÚ¡¡¡¡ëª¡¡ãñäë¡¡¡¡¡¡¡¡å¬¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡°¾¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ó¿¡¡Æµ¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@íç¡¡¡¡íæìò¡¡ÍÇ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡çØ¡¡çÙ¡¡¡¡¡¡¡¡ÎÍ¡¡ÃÝ¡¡¡¡¡¡¡¡¡±ìô¯¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Þ¼¡¡¡¡¡¡¡¡¡¡¡¡¡¡óµÙùòÉó«¡¡¡¡¡¡ò²¡¡¡¡óºó¹¡¡Ì»¡¡¡¡¡¡¡¡¡¡¡¡ñÏ¡¡ºËêï¡¡ö£¡¡í­¡¡¡¡¡¡ÚÚ׫À¾¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡²äõï¡¡¡¡õì¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡õ³ïÞïà¡¡¡¡¡¡¡¡ïêóÁïÒ¡¡ï¡¡¡öË¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡÷¸è¹¡¡¡¡òª¡¡¡¡·«¡¡¡¡¡¡âÊâÀâÉ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡×ס¡¡¡¡¡÷Ä¡¡¡¡¡¡¡¡¡¡öìöí¡¡¡¡öï¡¡öòöóöööß¡¡¡¡¡¡¡¡¡¡öî¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡µñ¡¡¡¡¡¡¡¡¡¡ðÇ¡¡¡¡ð´¡¡¡¡Ã²¡¡íë¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡à·¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÞÜÞü¡¡åº¡¡¡¡¡¡¡¡èл±èÀèÓ¡¡¡¡¡¡¡¡¡¡å¯¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡å®¡¡¡¡¡¡¡¡Ñæ¡¡¡¡¡¡â¨è·¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÛÇ¡¡¡¡¡¡ÀÚ¡¡íå¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡ïù¡¡óס¡¡¡¡¡¡¡¡¡¡¡çס¡¡¡¡¡¡¡ñ÷¡¡ëÙ¡¡ô¿¡¡Ü×Þ½¡¡¡¡¡¡¡¡ÜÂޭש޿¡¡¡¡¡¡òïòî¡¡ó·ó¶¡¡ñà¡¡¡¡¡¡¡¡¡¡¡¡Ñé¡¡¡¡»ÙÔê¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡Û¹¡¡¡¡õ¶¡¡¡¡ï¦ïæ¡¡ïè¡¡ïâ¡¡¡¡ÁÍïÐïë¡¡îü¹ñïä¡¡¡¡¡¡ï©¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡ïÆ¡¡ãÛ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ò©¡¡¡¡¡¡¡¡¡¡¡¡¡¡âÍÀ¡¡¡²Ý¡¡¡¡¡¡¡¡æã¡¡æòæóæï¡¡¡¡²²¡¡çÇ¡¡¡¡öø¡¡¡¡öû¡¡¡¡¡¡¡¡¡¡¡¡¡¡öü¡¡¡¡¡¡¡¡¡¡ðÉ¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡ðÊ¡¡¡¡¡¡¡¡ðËðÍ¡¡¡¡¡¡¡¡¡¡¡¡÷ô¡¡÷ó¡¡¡¡¡¡¡¡ö¶¡¡¡¡öµ¡¡ÙÐÔÜ¡¡¡¡¡¡¡¡»¶¡¡¡¡¿ù¡¡¡¡»¶ß¥¡¡¡¡¡¡é·¡¡ããäÜ¡¡¡¡¡¡¡¡¡¡ìß¡¡¡¡âµ¡¡¡¡¡¡¡¡íá¡¡¡¡¡ôÏæþ¡¡çÓ¡¡¡¡ÀÛ¡¡¡¡¡¡Âã¡¡Þ¡¡¡¡¡¡¾Õ¡¡Þ¾¡¡¡¡Ç¾ÞÀÝü¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡óº¡¡¡¡¡¡¡¡ÃïçÓ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡êá¡¡¡¡¡¡¡¡¼÷¡¡ÓßÛº¡¡¡¡¡¡ïî¡¡îС¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ïͽ£ãË¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ì­¡¡¡¡¡¡¡¡¡¡¡¡æõæîæñ¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡öå÷£÷¥¡¡¡¡¡¡¡¡ðÏ¡¡¡¡¡¡¡¡¡¡¡¡¡¡÷½¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡õº¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡êå¡¡¡¡¡¡æ¸¡¡Ùæ¡¡¡¡¡¡æ®¡¡¡¡¡¡¡¡¡¡¡¡ÔÜèþ¡¡¡¡ë¬Àì¡¡¡¡¡¡¡¡»¶¡¡¡¡¡¡ÃÖ¡¡¡¡ñ¨¡¡¡¡¡¡ð¦¡¡¡¡óê¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@Ùá¡¡¡¡Ûä¡¡¡¡ôµ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡êë¡¡¡¡ÚÙ¡¡¡¡¡¡Éó¡¡¡¡õéõðõÑõÈõñ¡¡¡¡¡¡éö¡¡ïÙ¡¡ïì¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡÷Ó¡¡¡¡¡¡¡¡¡¡æö¡¡æè¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡¡¡¡¡¡¡¡¡¡¡å÷¡¡¡¡¡¡÷¨¡¡¡¡öä÷¦¡¡¡¡öæ¡¡÷¡¡¡¡¡¡¡¡¡¡¡ðÒ¡¡¡¡¡¡¡¡¡¡¡¡ðº¡¡¡¡¡¡¡¡¡¡¡¡çÇ¡¡¡¡¡¡¡¡¡¡íèºÍ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡µ²ß¬¡¡¡¡ÔÜèïé¡¡¡¡¡¡¡¡¡¡¡áýó½Ó¸¡¡¡¡¡¡¡¡¡¡Ýñ¡¡¡¡Þ¡¡¡¡¡¡¡¡îá¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ÑçöÅ¡¡¡¡¡¡¡¡¡¡éñ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡÷ß¡¡÷®öà¡¡¡¡öÑ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ðÓ¡¡¡¡ðÖ¡¡¡¡¡¡¡¡ðÔðÕÑà¡¡¡¡¡¡ð¡¡¡¡¡¡¡¡÷õ¡¡¡¡¡¡¡¡÷û¡¡¡¡ì´¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡¡Õ¦¡¡¡¡Äö¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡å°äí¡¡¡¡¡¡¡¡¡¡¡¡¡¡óý¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡À¾õó¡¡¡¡¡¡¡¡¡¡¡¡öΡ¡¡¡¡¡¡¡»ô¡¡¡¡¡¡¡¡÷Æ¡¡÷­÷¯¡¡¡¡¡¡ëÚ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¶¬¡¡¡¡¡¡ëñàìß­¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡î«¡¡óÖ¡¡ôС¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@çÚôî¡¡Ùõ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ñá¡¡¡¡»¶´Ú¡¡¡¡¡¡ïç¡¡¡¡¼ü¡¡¡¡âá¡¡¡öÝ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ö¾¡¡¡¡¡¡¡¡¡¡èï¡¡¡¡ó½ôõõòõ§¡¡¡¡¡¡¹Þ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@г¸Ó¡¡¡¡¡¡¡¡¡¡¡¡ÚÝ¡¡¡¡¡¡¡¡ò¨È§¡¡¡¡¡¡æø¡¡¡¡¡¡ðµ¡¡¡¡í°èù¡¡¡¡¡¡¡¡¡¡ïã»¶¡¡ãΡ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡öâð¿äÙ¡¡´Ö¡¡¡¡¡¡¡¡ÐâÀïǽºãױ浡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¢¢¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@ \ No newline at end of file diff --git a/inc/sms/nexmo/tables/BIG2UNI.Table b/inc/sms/nexmo/tables/BIG2UNI.Table new file mode 100644 index 0000000..6f39001 Binary files /dev/null and b/inc/sms/nexmo/tables/BIG2UNI.Table differ diff --git a/inc/sms/nexmo/tables/GB2BIG.Table b/inc/sms/nexmo/tables/GB2BIG.Table new file mode 100644 index 0000000..abbaf80 Binary files /dev/null and b/inc/sms/nexmo/tables/GB2BIG.Table differ diff --git a/inc/sms/nexmo/tables/GBK2PY.Table b/inc/sms/nexmo/tables/GBK2PY.Table new file mode 100644 index 0000000..ece1329 Binary files /dev/null and b/inc/sms/nexmo/tables/GBK2PY.Table differ diff --git a/inc/sms/nexmo/tables/GBK2UNI.Table b/inc/sms/nexmo/tables/GBK2UNI.Table new file mode 100644 index 0000000..8d3a13d Binary files /dev/null and b/inc/sms/nexmo/tables/GBK2UNI.Table differ diff --git a/inc/sms/nexmo/tables/UNI2BIG.Table b/inc/sms/nexmo/tables/UNI2BIG.Table new file mode 100644 index 0000000..fd6125a Binary files /dev/null and b/inc/sms/nexmo/tables/UNI2BIG.Table differ diff --git a/inc/sms/nexmo/tables/UNI2GBK.Table b/inc/sms/nexmo/tables/UNI2GBK.Table new file mode 100644 index 0000000..ddd2cc1 Binary files /dev/null and b/inc/sms/nexmo/tables/UNI2GBK.Table differ diff --git a/inc/sms/nexmo/tables/big5-unicode.table b/inc/sms/nexmo/tables/big5-unicode.table new file mode 100644 index 0000000..fcece8e Binary files /dev/null and b/inc/sms/nexmo/tables/big5-unicode.table differ diff --git a/inc/sms/nexmo/tables/gb-big5.table b/inc/sms/nexmo/tables/gb-big5.table new file mode 100644 index 0000000..abbaf80 Binary files /dev/null and b/inc/sms/nexmo/tables/gb-big5.table differ diff --git a/inc/sms/nexmo/tables/gb-unicode.table b/inc/sms/nexmo/tables/gb-unicode.table new file mode 100644 index 0000000..b02046f Binary files /dev/null and b/inc/sms/nexmo/tables/gb-unicode.table differ diff --git a/inc/timezone.inc.php b/inc/timezone.inc.php new file mode 100644 index 0000000..fc2168f --- /dev/null +++ b/inc/timezone.inc.php @@ -0,0 +1,569 @@ + \ No newline at end of file diff --git a/inc/usermenu.inc.php b/inc/usermenu.inc.php new file mode 100644 index 0000000..9a1a913 --- /dev/null +++ b/inc/usermenu.inc.php @@ -0,0 +1,13 @@ + +
  • Start Exchange
  • +
  • My Exchanges
  • +
  • +
  • +
  • + +
  • Account Verification
  • + +
  • +
  • +
  • +
  • \ No newline at end of file diff --git a/index.php b/index.php new file mode 100644 index 0000000..b450c25 --- /dev/null +++ b/index.php @@ -0,0 +1,380 @@ + + + + 0 || reserve='') AND (allow_send='1' OR allow_receive='1') AND status='active' ORDER BY RAND()"; + $res_result = smart_mysql_query($res_query); + + if (mysqli_num_rows($res_result) > 0) + { +?> + + + + + + +
    +
    + + +
    +

    Start Exchange

    + +
    +
    +
    + +

    SEND

    + + +
    + +
    + +
    + +
    +

    RECEIVE

    + + +

    + +
    +
    + +
    +

    +
    + +
    + + + + + + + + +
    + +
    + + + + 0) + { + ?> + + + + + + 0) { + + ?> + +
    +

    + + +
    +
    +

    +
    + +
    + + +
    +
    + + 0 OR reserve='') AND status='active' ORDER BY sort_order DESC, currency_name ASC"; // AND currency_id IN (SELECT to_currency FROM exchangerix_exdirections WHERE status='active') + $res_result = smart_mysql_query($res_query); + $cc = 0; + + if (mysqli_num_rows($res_result) > 0) //want more link hover //dev + { +?> +
    +

    Our Reserves

    + + + + "> + + + + + +

    unlimited ".$row_res['currency_code']."" : "".GetCurrencyReserve($row_res['currency_id'])." ".$row_res['currency_code'].""; ?> 
    +
    + + + + + + + +
    +

    Latest Exchanges

    + +

    +
    +
    + + +
    +

    Testimonials 0) { ?>

    + + 0) + { + ?> + view all + + + + +

    No testimonias at this time.

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

    +

    Clients trust us

    +
    +
    + DATE_SUB(NOW(), INTERVAL 1 DAY)")); $all_t_stats = $all_t_stats_row['total']; // status='confirmed' AND ?> +

    +

    Exchanges Today

    +
    +
    + +

    +

    Total Exchanges

    +
    + +
    + + +
    +
    + + + \ No newline at end of file diff --git a/invite.php b/invite.php new file mode 100644 index 0000000..f492584 --- /dev/null +++ b/invite.php @@ -0,0 +1,261 @@ +", " ", $umessage); + $umessage = str_replace("%site_title%", SITE_TITLE, $umessage); + $umessage = str_replace("%referral_link%", $ReferralLink, $umessage); + + + if (isset($_POST['action']) && $_POST['action'] == "friend") + { + unset($errs); + $errs = array(); + + $uname = $_SESSION['FirstName']; + $fname = array(); + $fname = $_POST['fname']; + $femail = array(); + $femail = $_POST['femail']; + $umessage = nl2br(getPostParameter('umessage')); + + if(!($fname[1] && $femail[1])) + { + $errs[] = CBE1_INVITE_ERR; + } + else + { + foreach ($fname as $k=>$v) + { + if ($femail[$k] != "" && !preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/", $femail[$k])) + { + $errs[] = CBE1_INVITE_ERR2." #".$k; + } + } + } + + if (count($errs) == 0) + { + $etemplate = GetEmailTemplate('invite_friend'); + + $recipients = ""; + + foreach ($fname as $k=>$v) + { + if (isset($v) && $v != "" && isset($femail[$k]) && $femail[$k] != "") + { + $friend_name = substr(htmlentities(trim($v)), 0, 25); + $friend_email = substr(htmlentities(trim($femail[$k])), 0, 70); + + $esubject = $etemplate['email_subject']; + + if ($umessage != "") + { + $emessage = $umessage; + $emessage = str_replace("%friend_name%", $friend_name, $emessage); + $emessage = str_replace("%referral_link%", $ReferralLink, $emessage); + $emessage = preg_replace('/((www|http:\/\/)[^ ]+)/', '\1', $emessage); + $emessage .= "

    ".$ReferralLink."

    "; + } + else + { + $emessage = $etemplate['email_message']; + $emessage = str_replace("{friend_name}", $friend_name, $emessage); + $emessage = str_replace("{first_name}", $uname, $emessage); + $emessage = str_replace("{referral_link}", $ReferralLink, $emessage); + } + + $recipients .= $friend_name." <".$friend_email.">||"; + + $to_email = $friend_name.' <'.$friend_email.'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1); + } + } + + // save invitations info // + smart_mysql_query("INSERT INTO exchangerix_invitations SET user_id='".(int)$userid."', recipients='".mysqli_real_escape_string($conn, $recipients)."', message='".mysqli_real_escape_string($conn, $umessage)."', sent_date=NOW()"); + + header("Location: invite.php?msg=1"); + exit(); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
    \n"; + } + } + + /////////////// Page config /////////////// + $PAGE_TITLE = CBE1_INVITE_TITLE; + + require_once ("inc/header.inc.php"); + +?> + +
    + + + +

    + + + + + + + 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + $refs_query = "SELECT *, DATE_FORMAT(created, '".DATE_FORMAT." %h:%i %p') AS signup_date FROM exchangerix_users WHERE ref_id='$userid' ORDER BY created DESC LIMIT $from, $results_per_page"; + $total_refs_result = smart_mysql_query("SELECT * FROM exchangerix_users WHERE ref_id='$userid'"); + $total_refs = mysqli_num_rows($total_refs_result); + + $refs_result = smart_mysql_query($refs_query); + $total_refs_on_page = mysqli_num_rows($refs_result); + + ?> +
    +

    0) { ?>

    + + + 0) { ?> + +
    + + + + + + + + + + "> + + + + + + + +
     
    " align="absmiddle" />
    +
    + + + + +

    + + + + + 0) { ?> + 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + $query = "SELECT *, DATE_FORMAT(created, '".DATE_FORMAT." %h:%i %p') AS date_created, DATE_FORMAT(updated, '".DATE_FORMAT."') AS updated_date FROM exchangerix_exchanges WHERE ref_id='$userid' ORDER BY created DESC LIMIT $from, $results_per_page"; + + $total_result = smart_mysql_query("SELECT * FROM exchangerix_exchanges WHERE ref_id='$userid' ORDER BY created DESC"); + $total = mysqli_num_rows($total_result); + + $result = smart_mysql_query($query); + $total_on_page = mysqli_num_rows($result); + + ?> +
    +

    Your Earnings: $0.00

    + +

    Referrals Exchanges 0) { ?>

    + +
    + + + + + + + + + + 0) { ?> + + "> + + + + + + + + + + + + + + +
    Amount SendAmount Receive Your Commission
    hidden $ + ".STATUS_CONFIRMED.""; break; + case "pending": echo "".STATUS_PENDING.""; break; + case "waiting": echo "waiting"; break; + case "declined": echo "".STATUS_DECLINED.""; break; + case "failed": echo "".STATUS_FAILED.""; break; + case "request": echo "".STATUS_REQUEST.""; break; + case "paid": echo "".STATUS_PAID.""; break; + default: echo "".$row['status'].""; break; + } + + if ($row['status'] == "declined" && $row['reason'] != "") + { + echo " "; + } + ?> +

    No exchanges made by your referrals at this time.

    +
    +

    + + + + + \ No newline at end of file diff --git a/js/.DS_Store b/js/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/js/.DS_Store differ diff --git a/js/autocomplete.js b/js/autocomplete.js new file mode 100644 index 0000000..0d927c0 --- /dev/null +++ b/js/autocomplete.js @@ -0,0 +1,551 @@ +jQuery.autocomplete = function(input, options) { + // Create a link to self + var me = this; + + // Create jQuery object for input element + var $input = $(input).attr("autocomplete", "off"); + + // Apply inputClass if necessary + if (options.inputClass) $input.addClass(options.inputClass); + + // Create results + var results = document.createElement("div"); + // Create jQuery object for results + var $results = $(results); + $results.hide().addClass(options.resultsClass).css("position", "absolute"); + if( options.width > 0 ) $results.css("width", options.width); + + // Add to body element + $("body").append(results); + + input.autocompleter = me; + + var timeout = null; + var prev = ""; + var active = -1; + var cache = {}; + var keyb = false; + var hasFocus = false; + var lastKeyPressCode = null; + + //strip tags + + function trims(string) + { + return string.replace(/(^\s+)|(\s+$)/g, ""); + } + + function strip_tags (input, allowed) { + + allowed = (((allowed || "") + "").toLowerCase().match(/<[a-z][a-z0-9]*>/g) || []).join(''); + var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi, + commentsAndPhpTags = /|<\?(?:php)?[\s\S]*?\?>/gi; + return input.replace(commentsAndPhpTags, '').replace(tags, function ($0, $1) { + return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : ''; + }); + } + + // flush cache + function flushCache(){ + cache = {}; + cache.data = {}; + cache.length = 0; + }; + + // flush cache + flushCache(); + + // if there is a data array supplied + if( options.data != null ){ + var sFirstChar = "", stMatchSets = {}, row = []; + + // no url was specified, we need to adjust the cache length to make sure it fits the local data store + if( typeof options.url != "string" ) options.cacheLength = 1; + + // loop through the array and create a lookup structure + for( var i=0; i < options.data.length; i++ ){ + // if row is a string, make an array otherwise just reference the array + row = ((typeof options.data[i] == "string") ? [options.data[i]] : options.data[i]); + + // if the length is zero, don't add to list + if( row[0].length > 0 ){ + // get the first character + sFirstChar = row[0].substring(0, 1).toLowerCase(); + // if no lookup array for this character exists, look it up now + if( !stMatchSets[sFirstChar] ) stMatchSets[sFirstChar] = []; + // if the match is a string + stMatchSets[sFirstChar].push(row); + } + } + + // add the data items to the cache + for( var k in stMatchSets ){ + // increase the cache size + options.cacheLength++; + // add to the cache + addToCache(k, stMatchSets[k]); + } + } + + $input + .keydown(function(e) { + // track last key pressed + lastKeyPressCode = e.keyCode; + switch(e.keyCode) { + case 38: // up + e.preventDefault(); + moveSelect(-1); + break; + case 40: // down + e.preventDefault(); + moveSelect(1); + break; + case 9: // tab + case 13: // return + if( selectCurrent() ){ + // make sure to blur off the current field + $input.get(0).blur(); + e.preventDefault(); + } + break; + default: + active = -1; + if (timeout) clearTimeout(timeout); + timeout = setTimeout(function(){onChange();}, options.delay); + break; + } + }) + .focus(function(){ + // track whether the field has focus, we shouldn't process any results if the field no longer has focus + hasFocus = true; + }) + .blur(function() { + // track whether the field has focus + hasFocus = false; + // hideResults(); + + + + + }); + + hideResultsNow(); + + function onChange() { + + + // ignore if the following keys are pressed: [del] [shift] [capslock] + if( lastKeyPressCode == 46 || (lastKeyPressCode > 8 && lastKeyPressCode < 32) ) return $results.hide(); + var v = $input.val(); + if (v == prev) return; + prev = v; + if (v.length >= options.minChars) { + $input.addClass(options.loadingClass); + requestData(v); + } else { + $input.removeClass(options.loadingClass); + $results.hide(); + } + }; + + function moveSelect(step) { + + var lis = $("li", results); + if (!lis) return; + + active += step; + + if (active < 0) { + active = 0; + } else if (active >= lis.size()) { + active = lis.size() - 1; + } + + lis.removeClass("ac_over"); + + $(lis[active]).addClass("ac_over"); + + // Weird behaviour in IE + // if (lis[active] && lis[active].scrollIntoView) { + // lis[active].scrollIntoView(false); + // } + + }; + + function selectCurrent() { + var li = $("li.ac_over", results)[0]; + if (!li) { + var $li = $("li", results); + if (options.selectOnly) { + if ($li.length == 1) li = $li[0]; + } else if (options.selectFirst) { + li = $li[0]; + } + } + if (li) { + selectItem(li); + return true; + } else { + return false; + } + }; + + function selectItem(li) { + if (!li) { + li = document.createElement("li"); + li.extra = []; + li.selectValue = ""; + } + + var v = $.trim(li.selectValue ? li.selectValue : li.innerHTML); + input.lastSelected = v; + prev = v; + $results.html(""); + $input.val(trims(strip_tags(v))); + + hideResults(); + + + if (options.onItemSelect) setTimeout(function() { options.onItemSelect(li) }, 1); + }; + + // selects a portion of the input string + function createSelection(start, end){ + // get a reference to the input element + var field = $input.get(0); + + if( field.createTextRange ){ + var selRange = field.createTextRange(); + + + selRange.collapse(true); + selRange.moveStart("character", start); + selRange.moveEnd("character", end); + selRange.select(); + } else if( field.setSelectionRange ){ + field.setSelectionRange(start, end); + } else { + if( field.selectionStart ){ + field.selectionStart = start; + field.selectionEnd = end; + } + } + field.focus(); + }; + + // fills in the input box w/the first match (assumed to be the best match) + function autoFill(sValue){ + + //sValue = strip_tags(sValue); + + // if the last user key pressed was backspace, don't autofill + if( lastKeyPressCode != 8 ){ + // fill in the value (keep the case the user has typed) + $input.val($input.val() + sValue.substring(prev.length)); + // select the portion of the value not typed by the user (so the next character will erase) + createSelection(prev.length, sValue.length); + } + }; + + function showResults() { + // get the position of the input field right now (in case the DOM is shifted) + var pos = findPos(input); + // either use the specified width, or autocalculate based on form element + var iWidth = (options.width > 0) ? options.width : $input.width(); + // reposition + $results.css({ + width: parseInt(iWidth) + "px", + top: (pos.y + input.offsetHeight) + "px", + left: pos.x + "px" + }).show(); + }; + + function hideResults() { + if (timeout) clearTimeout(timeout); + timeout = setTimeout(hideResultsNow, 200); + }; + + + + function hideResultsNow() { + if (timeout) clearTimeout(timeout); + $input.removeClass(options.loadingClass); + if ($results.is(":visible")) { + $results.hide(); + } + if (options.mustMatch) { + var v = $input.val(); + if (v != input.lastSelected) { + selectItem(null); + } + } + }; + + function receiveData(q, data) { + if (data) { + $input.removeClass(options.loadingClass); + results.innerHTML = ""; + + // if the field no longer has focus or if there are no matches, do not display the drop down + if( !hasFocus || data.length == 0 ) return hideResultsNow(); + + if ($.browser.msie) { + // we put a styled iframe behind the calendar so HTML SELECT elements don't show through + $results.append(document.createElement('iframe')); + } + results.appendChild(dataToDom(data)); + // autofill in the complete box w/the first match as long as the user hasn't entered in more data + if( options.autoFill && ($input.val().toLowerCase() == q.toLowerCase()) ) autoFill(data[0][0]); + showResults(); + } else { + hideResultsNow(); + } + }; + + function parseData(data) { + if (!data) return null; + var parsed = []; + var rows = data.split(options.lineSeparator); + for (var i=0; i < rows.length; i++) { + var row = $.trim(rows[i]); + if (row) { + parsed[parsed.length] = row.split(options.cellSeparator); + } + } + + return parsed; + }; + + function dataToDom(data) { + var ul = document.createElement("ul"); + var num = data.length; + + // limited results to a max number + if( (options.maxItemsToShow > 0) && (options.maxItemsToShow < num) ) num = options.maxItemsToShow; + + for (var i=0; i < num; i++) { + var row = data[i]; + + + + if (!row) continue; + var li = document.createElement("li"); + if (options.formatItem) { + li.innerHTML = options.formatItem(row, i, num); + li.selectValue = row[0]; + } else { + li.innerHTML = row[0]; + li.selectValue = row[0]; + } + var extra = null; + if (row.length > 1) { + extra = []; + for (var j=1; j < row.length; j++) { + extra[extra.length] = row[j]; + } + } + + + + li.extra = extra; + ul.appendChild(li); + $(li).hover( + function() { $("li", ul).removeClass("ac_over"); $(this).addClass("ac_over"); active = $("li", ul).indexOf($(this).get(0)); }, + function() { $(this).removeClass("ac_over"); } + ).click(function(e) { e.preventDefault(); e.stopPropagation(); selectItem(this) }); + } + + return ul; + }; + + function requestData(q) { + if (!options.matchCase) q = q.toLowerCase(); + var data = options.cacheLength ? loadFromCache(q) : null; + // recieve the cached data + if (data) { + receiveData(q, data); + // if an AJAX url has been supplied, try loading the data now + } else if( (typeof options.url == "string") && (options.url.length > 0) ){ + $.get(makeUrl(q), function(data) { + data = parseData(data); + addToCache(q, data); + receiveData(q, data); + }); + // if there's been no data found, remove the loading class + } else { + $input.removeClass(options.loadingClass); + } + }; + + function makeUrl(q) { + var url = options.url + "?q=" + encodeURI(q); + for (var i in options.extraParams) { + url += "&" + i + "=" + encodeURI(options.extraParams[i]); + } + return url; + }; + + function loadFromCache(q) { + if (!q) return null; + if (cache.data[q]) return cache.data[q]; + if (options.matchSubset) { + for (var i = q.length - 1; i >= options.minChars; i--) { + var qs = q.substr(0, i); + var c = cache.data[qs]; + if (c) { + var csub = []; + for (var j = 0; j < c.length; j++) { + var x = c[j]; + var x0 = x[0]; + if (matchSubset(x0, q)) { + csub[csub.length] = x; + } + } + return csub; + } + } + } + return null; + }; + + function matchSubset(s, sub) { + if (!options.matchCase) s = s.toLowerCase(); + var i = s.indexOf(sub); + if (i == -1) return false; + return i == 0 || options.matchContains; + }; + + this.flushCache = function() { + flushCache(); + }; + + this.setExtraParams = function(p) { + options.extraParams = p; + }; + + this.findValue = function(){ + var q = $input.val(); + + + + if (!options.matchCase) q = q.toLowerCase(); + var data = options.cacheLength ? loadFromCache(q) : null; + if (data) { + findValueCallback(q, data); + } else if( (typeof options.url == "string") && (options.url.length > 0) ){ + $.get(makeUrl(q), function(data) { + data = parseData(data) + addToCache(q, data); + findValueCallback(q, data); + }); + } else { + // no matches + findValueCallback(q, null); + } + } + + function findValueCallback(q, data){ + if (data) $input.removeClass(options.loadingClass); + + var num = (data) ? data.length : 0; + var li = null; + + for (var i=0; i < num; i++) { + var row = data[i]; + + if( row[0].toLowerCase() == q.toLowerCase() ){ + li = document.createElement("li"); + if (options.formatItem) { + li.innerHTML = options.formatItem(row, i, num); + li.selectValue = row[0]; + } else { + li.innerHTML = row[0]; + li.selectValue = row[0]; + } + var extra = null; + if( row.length > 1 ){ + extra = []; + for (var j=1; j < row.length; j++) { + extra[extra.length] = row[j]; + } + } + + + li.extra = extra; + } + } + + if( options.onFindValue ) setTimeout(function() { options.onFindValue(li) }, 1); + } + + function addToCache(q, data) { + if (!data || !q || !options.cacheLength) return; + if (!cache.length || cache.length > options.cacheLength) { + flushCache(); + cache.length++; + } else if (!cache[q]) { + cache.length++; + } + cache.data[q] = data; + }; + + function findPos(obj) { + var curleft = obj.offsetLeft || 0; + var curtop = obj.offsetTop || 0; + while (obj = obj.offsetParent) { + curleft += obj.offsetLeft + curtop += obj.offsetTop + } + return {x:curleft,y:curtop}; + } +} + + + +jQuery.fn.autocomplete = function(url, options, data) { + // Make sure options exists + options = options || {}; + // Set url as option + options.url = url; + // set some bulk local data + options.data = ((typeof data == "object") && (data.constructor == Array)) ? data : null; + + // Set default values for required options + options.inputClass = options.inputClass || "ac_input"; + options.resultsClass = options.resultsClass || "ac_results"; + options.lineSeparator = options.lineSeparator || "\n"; + options.cellSeparator = options.cellSeparator || "|"; + options.minChars = options.minChars || 1; + options.delay = options.delay || 400; + options.matchCase = options.matchCase || 0; + options.matchSubset = options.matchSubset || 1; + options.matchContains = options.matchContains || 0; + options.cacheLength = options.cacheLength || 1; + options.mustMatch = options.mustMatch || 0; + options.extraParams = options.extraParams || {}; + options.loadingClass = options.loadingClass || "ac_loading"; + options.selectFirst = options.selectFirst || false; + options.selectOnly = options.selectOnly || false; + options.maxItemsToShow = options.maxItemsToShow || -1; + options.autoFill = options.autoFill || false; + options.width = parseInt(options.width, 10) || 0; + + this.each(function() { + var input = this; + new jQuery.autocomplete(input, options); + }); + + // Don't break the chain + return this; +} + +jQuery.fn.autocompleteArray = function(data, options) { + return this.autocomplete(null, options, data); +} + +jQuery.fn.indexOf = function(e){ + for( var i=0; i this.endDate) { + this.viewDate = new Date(this.endDate); + } else { + this.viewDate = new Date(this.date); + } + + if (oldViewDate && oldViewDate.getTime() != this.viewDate.getTime()){ + this.element.trigger({ + type: 'changeDate', + date: this.viewDate + }); + } + this.fill(); + }, + + fillDow: function(){ + var dowCnt = this.weekStart, + html = ''; + while (dowCnt < this.weekStart + 7) { + html += ''+dates[this.language].daysMin[(dowCnt++)%7]+''; + } + html += ''; + this.picker.find('.datepicker-days thead').append(html); + }, + + fillMonths: function(){ + var html = '', + i = 0; + while (i < 12) { + html += ''+dates[this.language].monthsShort[i++]+''; + } + this.picker.find('.datepicker-months td').html(html); + }, + + fill: function() { + var d = new Date(this.viewDate), + year = d.getUTCFullYear(), + month = d.getUTCMonth(), + startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity, + startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity, + endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity, + endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity, + currentDate = this.date && this.date.valueOf(), + today = new Date(); + this.picker.find('.datepicker-days thead th:eq(1)') + .text(dates[this.language].months[month]+' '+year); + this.picker.find('tfoot th.today') + .text(dates[this.language].today) + .toggle(this.todayBtn !== false); + this.updateNavArrows(); + this.fillMonths(); + var prevMonth = UTCDate(year, month-1, 28,0,0,0,0), + day = DPGlobal.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth()); + prevMonth.setUTCDate(day); + prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7); + var nextMonth = new Date(prevMonth); + nextMonth.setUTCDate(nextMonth.getUTCDate() + 42); + nextMonth = nextMonth.valueOf(); + var html = []; + var clsName; + while(prevMonth.valueOf() < nextMonth) { + if (prevMonth.getUTCDay() == this.weekStart) { + html.push(''); + } + clsName = ''; + if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) { + clsName += ' old'; + } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) { + clsName += ' new'; + } + // Compare internal UTC date with local today, not UTC today + if (this.todayHighlight && + prevMonth.getUTCFullYear() == today.getFullYear() && + prevMonth.getUTCMonth() == today.getMonth() && + prevMonth.getUTCDate() == today.getDate()) { + clsName += ' today'; + } + if (currentDate && prevMonth.valueOf() == currentDate) { + clsName += ' active'; + } + if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate || + $.inArray(prevMonth.getUTCDay(), this.daysOfWeekDisabled) !== -1) { + clsName += ' disabled'; + } + html.push(''+prevMonth.getUTCDate() + ''); + if (prevMonth.getUTCDay() == this.weekEnd) { + html.push(''); + } + prevMonth.setUTCDate(prevMonth.getUTCDate()+1); + } + this.picker.find('.datepicker-days tbody').empty().append(html.join('')); + var currentYear = this.date && this.date.getUTCFullYear(); + + var months = this.picker.find('.datepicker-months') + .find('th:eq(1)') + .text(year) + .end() + .find('span').removeClass('active'); + if (currentYear && currentYear == year) { + months.eq(this.date.getUTCMonth()).addClass('active'); + } + if (year < startYear || year > endYear) { + months.addClass('disabled'); + } + if (year == startYear) { + months.slice(0, startMonth).addClass('disabled'); + } + if (year == endYear) { + months.slice(endMonth+1).addClass('disabled'); + } + + html = ''; + year = parseInt(year/10, 10) * 10; + var yearCont = this.picker.find('.datepicker-years') + .find('th:eq(1)') + .text(year + '-' + (year + 9)) + .end() + .find('td'); + year -= 1; + for (var i = -1; i < 11; i++) { + html += ''+year+''; + year += 1; + } + yearCont.html(html); + }, + + updateNavArrows: function() { + var d = new Date(this.viewDate), + year = d.getUTCFullYear(), + month = d.getUTCMonth(); + switch (this.viewMode) { + case 0: + if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) { + this.picker.find('.prev').css({visibility: 'hidden'}); + } else { + this.picker.find('.prev').css({visibility: 'visible'}); + } + if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) { + this.picker.find('.next').css({visibility: 'hidden'}); + } else { + this.picker.find('.next').css({visibility: 'visible'}); + } + break; + case 1: + case 2: + if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) { + this.picker.find('.prev').css({visibility: 'hidden'}); + } else { + this.picker.find('.prev').css({visibility: 'visible'}); + } + if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) { + this.picker.find('.next').css({visibility: 'hidden'}); + } else { + this.picker.find('.next').css({visibility: 'visible'}); + } + break; + } + }, + + click: function(e) { + e.stopPropagation(); + e.preventDefault(); + var target = $(e.target).closest('span, td, th'); + if (target.length == 1) { + switch(target[0].nodeName.toLowerCase()) { + case 'th': + switch(target[0].className) { + case 'switch': + this.showMode(1); + break; + case 'prev': + case 'next': + var dir = DPGlobal.modes[this.viewMode].navStep * (target[0].className == 'prev' ? -1 : 1); + switch(this.viewMode){ + case 0: + this.viewDate = this.moveMonth(this.viewDate, dir); + break; + case 1: + case 2: + this.viewDate = this.moveYear(this.viewDate, dir); + break; + } + this.fill(); + break; + case 'today': + var date = new Date(); + date = UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0); + + this.showMode(-2); + var which = this.todayBtn == 'linked' ? null : 'view'; + this._setDate(date, which); + break; + } + break; + case 'span': + if (!target.is('.disabled')) { + this.viewDate.setUTCDate(1); + if (target.is('.month')) { + var month = target.parent().find('span').index(target); + this.viewDate.setUTCMonth(month); + this.element.trigger({ + type: 'changeMonth', + date: this.viewDate + }); + } else { + var year = parseInt(target.text(), 10)||0; + this.viewDate.setUTCFullYear(year); + this.element.trigger({ + type: 'changeYear', + date: this.viewDate + }); + } + this.showMode(-1); + this.fill(); + } + break; + case 'td': + if (target.is('.day') && !target.is('.disabled')){ + var day = parseInt(target.text(), 10)||1; + var year = this.viewDate.getUTCFullYear(), + month = this.viewDate.getUTCMonth(); + if (target.is('.old')) { + if (month === 0) { + month = 11; + year -= 1; + } else { + month -= 1; + } + } else if (target.is('.new')) { + if (month == 11) { + month = 0; + year += 1; + } else { + month += 1; + } + } + this._setDate(UTCDate(year, month, day,0,0,0,0)); + } + break; + } + } + }, + + _setDate: function(date, which){ + if (!which || which == 'date') + this.date = date; + if (!which || which == 'view') + this.viewDate = date; + this.fill(); + this.setValue(); + this.element.trigger({ + type: 'changeDate', + date: this.date + }); + var element; + if (this.isInput) { + element = this.element; + } else if (this.component){ + element = this.element.find('input'); + } + if (element) { + element.change(); + if (this.autoclose && (!which || which == 'date')) { + this.hide(); + } + } + }, + + moveMonth: function(date, dir){ + if (!dir) return date; + var new_date = new Date(date.valueOf()), + day = new_date.getUTCDate(), + month = new_date.getUTCMonth(), + mag = Math.abs(dir), + new_month, test; + dir = dir > 0 ? 1 : -1; + if (mag == 1){ + test = dir == -1 + // If going back one month, make sure month is not current month + // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02) + ? function(){ return new_date.getUTCMonth() == month; } + // If going forward one month, make sure month is as expected + // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02) + : function(){ return new_date.getUTCMonth() != new_month; }; + new_month = month + dir; + new_date.setUTCMonth(new_month); + // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11 + if (new_month < 0 || new_month > 11) + new_month = (new_month + 12) % 12; + } else { + // For magnitudes >1, move one month at a time... + for (var i=0; i= this.startDate && date <= this.endDate; + }, + + keydown: function(e){ + if (this.picker.is(':not(:visible)')){ + if (e.keyCode == 27) // allow escape to hide and re-show picker + this.show(); + return; + } + var dateChanged = false, + dir, day, month, + newDate, newViewDate; + switch(e.keyCode){ + case 27: // escape + this.hide(); + e.preventDefault(); + break; + case 37: // left + case 39: // right + if (!this.keyboardNavigation) break; + dir = e.keyCode == 37 ? -1 : 1; + if (e.ctrlKey){ + newDate = this.moveYear(this.date, dir); + newViewDate = this.moveYear(this.viewDate, dir); + } else if (e.shiftKey){ + newDate = this.moveMonth(this.date, dir); + newViewDate = this.moveMonth(this.viewDate, dir); + } else { + newDate = new Date(this.date); + newDate.setUTCDate(this.date.getUTCDate() + dir); + newViewDate = new Date(this.viewDate); + newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir); + } + if (this.dateWithinRange(newDate)){ + this.date = newDate; + this.viewDate = newViewDate; + this.setValue(); + this.update(); + e.preventDefault(); + dateChanged = true; + } + break; + case 38: // up + case 40: // down + if (!this.keyboardNavigation) break; + dir = e.keyCode == 38 ? -1 : 1; + if (e.ctrlKey){ + newDate = this.moveYear(this.date, dir); + newViewDate = this.moveYear(this.viewDate, dir); + } else if (e.shiftKey){ + newDate = this.moveMonth(this.date, dir); + newViewDate = this.moveMonth(this.viewDate, dir); + } else { + newDate = new Date(this.date); + newDate.setUTCDate(this.date.getUTCDate() + dir * 7); + newViewDate = new Date(this.viewDate); + newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7); + } + if (this.dateWithinRange(newDate)){ + this.date = newDate; + this.viewDate = newViewDate; + this.setValue(); + this.update(); + e.preventDefault(); + dateChanged = true; + } + break; + case 13: // enter + this.hide(); + e.preventDefault(); + break; + case 9: // tab + this.hide(); + break; + } + if (dateChanged){ + this.element.trigger({ + type: 'changeDate', + date: this.date + }); + var element; + if (this.isInput) { + element = this.element; + } else if (this.component){ + element = this.element.find('input'); + } + if (element) { + element.change(); + } + } + }, + + showMode: function(dir) { + if (dir) { + this.viewMode = Math.max(0, Math.min(2, this.viewMode + dir)); + } + /* + vitalets: fixing bug of very special conditions: + jquery 1.7.1 + webkit + show inline datepicker in bootstrap popover. + Method show() does not set display css correctly and datepicker is not shown. + Changed to .css('display', 'block') solve the problem. + See https://github.com/vitalets/x-editable/issues/37 + + In jquery 1.7.2+ everything works fine. + */ + //this.picker.find('>div').hide().filter('.datepicker-'+DPGlobal.modes[this.viewMode].clsName).show(); + this.picker.find('>div').hide().filter('.datepicker-'+DPGlobal.modes[this.viewMode].clsName).css('display', 'block'); + this.updateNavArrows(); + } + }; + + $.fn.datepicker = function ( option ) { + var args = Array.apply(null, arguments); + args.shift(); + return this.each(function () { + var $this = $(this), + data = $this.data('datepicker'), + options = typeof option == 'object' && option; + if (!data) { + $this.data('datepicker', (data = new Datepicker(this, $.extend({}, $.fn.datepicker.defaults,options)))); + } + if (typeof option == 'string' && typeof data[option] == 'function') { + data[option].apply(data, args); + } + }); + }; + + $.fn.datepicker.defaults = { + }; + $.fn.datepicker.Constructor = Datepicker; + var dates = $.fn.datepicker.dates = { + en: { + days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"], + daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], + daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"], + months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], + today: "Today" + } + }; + + var DPGlobal = { + modes: [ + { + clsName: 'days', + navFnc: 'Month', + navStep: 1 + }, + { + clsName: 'months', + navFnc: 'FullYear', + navStep: 1 + }, + { + clsName: 'years', + navFnc: 'FullYear', + navStep: 10 + }], + isLeapYear: function (year) { + return (((year % 4 === 0) && (year % 100 !== 0)) || (year % 400 === 0)); + }, + getDaysInMonth: function (year, month) { + return [31, (DPGlobal.isLeapYear(year) ? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][month]; + }, + validParts: /dd?|DD?|mm?|MM?|yy(?:yy)?/g, + nonpunctuation: /[^ -\/:-@\[\u3400-\u9fff-`{-~\t\n\r]+/g, + parseFormat: function(format){ + // IE treats \0 as a string end in inputs (truncating the value), + // so it's a bad format delimiter, anyway + var separators = format.replace(this.validParts, '\0').split('\0'), + parts = format.match(this.validParts); + if (!separators || !separators.length || !parts || parts.length === 0){ + throw new Error("Invalid date format."); + } + return {separators: separators, parts: parts}; + }, + parseDate: function(date, format, language) { + if (date instanceof Date) return date; + if (/^[\-+]\d+[dmwy]([\s,]+[\-+]\d+[dmwy])*$/.test(date)) { + var part_re = /([\-+]\d+)([dmwy])/, + parts = date.match(/([\-+]\d+)([dmwy])/g), + part, dir; + date = new Date(); + for (var i=0; i'+ + ''+ + ''+ + ''+ + ''+ + ''+ + '', + contTemplate: '', + footTemplate: '' + }; + DPGlobal.template = '
    '+ + '
    '+ + ''+ + DPGlobal.headTemplate+ + ''+ + DPGlobal.footTemplate+ + '
    '+ + '
    '+ + '
    '+ + ''+ + DPGlobal.headTemplate+ + DPGlobal.contTemplate+ + DPGlobal.footTemplate+ + '
    '+ + '
    '+ + '
    '+ + ''+ + DPGlobal.headTemplate+ + DPGlobal.contTemplate+ + DPGlobal.footTemplate+ + '
    '+ + '
    '+ + '
    '; + + $.fn.datepicker.DPGlobal = DPGlobal; + +}( window.jQuery ); diff --git a/js/bootstrap-select.min.js b/js/bootstrap-select.min.js new file mode 100644 index 0000000..5e4ca44 --- /dev/null +++ b/js/bootstrap-select.min.js @@ -0,0 +1,8 @@ +/*! + * Bootstrap-select v1.11.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2016 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){"use strict";function b(b){var c=[{re:/[\xC0-\xC6]/g,ch:"A"},{re:/[\xE0-\xE6]/g,ch:"a"},{re:/[\xC8-\xCB]/g,ch:"E"},{re:/[\xE8-\xEB]/g,ch:"e"},{re:/[\xCC-\xCF]/g,ch:"I"},{re:/[\xEC-\xEF]/g,ch:"i"},{re:/[\xD2-\xD6]/g,ch:"O"},{re:/[\xF2-\xF6]/g,ch:"o"},{re:/[\xD9-\xDC]/g,ch:"U"},{re:/[\xF9-\xFC]/g,ch:"u"},{re:/[\xC7-\xE7]/g,ch:"c"},{re:/[\xD1]/g,ch:"N"},{re:/[\xF1]/g,ch:"n"}];return a.each(c,function(){b=b.replace(this.re,this.ch)}),b}function c(a){var b={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},c="(?:"+Object.keys(b).join("|")+")",d=new RegExp(c),e=new RegExp(c,"g"),f=null==a?"":""+a;return d.test(f)?f.replace(e,function(a){return b[a]}):f}function d(b,c){var d=arguments,e=b,f=c;[].shift.apply(d);var h,i=this.each(function(){var b=a(this);if(b.is("select")){var c=b.data("selectpicker"),i="object"==typeof e&&e;if(c){if(i)for(var j in i)i.hasOwnProperty(j)&&(c.options[j]=i[j])}else{var k=a.extend({},g.DEFAULTS,a.fn.selectpicker.defaults||{},b.data(),i);k.template=a.extend({},g.DEFAULTS.template,a.fn.selectpicker.defaults?a.fn.selectpicker.defaults.template:{},b.data().template,i.template),b.data("selectpicker",c=new g(this,k,f))}"string"==typeof e&&(h=c[e]instanceof Function?c[e].apply(c,d):c.options[e])}});return"undefined"!=typeof h?h:i}String.prototype.includes||!function(){var a={}.toString,b=function(){try{var a={},b=Object.defineProperty,c=b(a,a,a)&&b}catch(d){}return c}(),c="".indexOf,d=function(b){if(null==this)throw new TypeError;var d=String(this);if(b&&"[object RegExp]"==a.call(b))throw new TypeError;var e=d.length,f=String(b),g=f.length,h=arguments.length>1?arguments[1]:void 0,i=h?Number(h):0;i!=i&&(i=0);var j=Math.min(Math.max(i,0),e);return g+j>e?!1:-1!=c.call(d,f,i)};b?b(String.prototype,"includes",{value:d,configurable:!0,writable:!0}):String.prototype.includes=d}(),String.prototype.startsWith||!function(){var a=function(){try{var a={},b=Object.defineProperty,c=b(a,a,a)&&b}catch(d){}return c}(),b={}.toString,c=function(a){if(null==this)throw new TypeError;var c=String(this);if(a&&"[object RegExp]"==b.call(a))throw new TypeError;var d=c.length,e=String(a),f=e.length,g=arguments.length>1?arguments[1]:void 0,h=g?Number(g):0;h!=h&&(h=0);var i=Math.min(Math.max(h,0),d);if(f+i>d)return!1;for(var j=-1;++j'},maxOptions:!1,mobile:!1,selectOnTab:!1,dropdownAlignRight:!1},g.prototype={constructor:g,init:function(){var b=this,c=this.$element.attr("id");this.$element.addClass("bs-select-hidden"),this.liObj={},this.multiple=this.$element.prop("multiple"),this.autofocus=this.$element.prop("autofocus"),this.$newElement=this.createView(),this.$element.after(this.$newElement).appendTo(this.$newElement),this.$button=this.$newElement.children("button"),this.$menu=this.$newElement.children(".dropdown-menu"),this.$menuInner=this.$menu.children(".inner"),this.$searchbox=this.$menu.find("input"),this.$element.removeClass("bs-select-hidden"),this.options.dropdownAlignRight===!0&&this.$menu.addClass("dropdown-menu-right"),"undefined"!=typeof c&&(this.$button.attr("data-id",c),a('label[for="'+c+'"]').click(function(a){a.preventDefault(),b.$button.focus()})),this.checkDisabled(),this.clickListener(),this.options.liveSearch&&this.liveSearchListener(),this.render(),this.setStyle(),this.setWidth(),this.options.container&&this.selectPosition(),this.$menu.data("this",this),this.$newElement.data("this",this),this.options.mobile&&this.mobile(),this.$newElement.on({"hide.bs.dropdown":function(a){b.$menuInner.attr("aria-expanded",!1),b.$element.trigger("hide.bs.select",a)},"hidden.bs.dropdown":function(a){b.$element.trigger("hidden.bs.select",a)},"show.bs.dropdown":function(a){b.$menuInner.attr("aria-expanded",!0),b.$element.trigger("show.bs.select",a)},"shown.bs.dropdown":function(a){b.$element.trigger("shown.bs.select",a)}}),b.$element[0].hasAttribute("required")&&this.$element.on("invalid",function(){b.$button.addClass("bs-invalid").focus(),b.$element.on({"focus.bs.select":function(){b.$button.focus(),b.$element.off("focus.bs.select")},"shown.bs.select":function(){b.$element.val(b.$element.val()).off("shown.bs.select")},"rendered.bs.select":function(){this.validity.valid&&b.$button.removeClass("bs-invalid"),b.$element.off("rendered.bs.select")}})}),setTimeout(function(){b.$element.trigger("loaded.bs.select")})},createDropdown:function(){var b=this.multiple||this.options.showTick?" show-tick":"",d=this.$element.parent().hasClass("input-group")?" input-group-btn":"",e=this.autofocus?" autofocus":"",f=this.options.header?'
    '+this.options.header+"
    ":"",g=this.options.liveSearch?'':"",h=this.multiple&&this.options.actionsBox?'
    ":"",i=this.multiple&&this.options.doneButton?'
    ":"",j='
    ";return a(j)},createView:function(){var a=this.createDropdown(),b=this.createLi();return a.find("ul")[0].innerHTML=b,a},reloadLi:function(){this.destroyLi();var a=this.createLi();this.$menuInner[0].innerHTML=a},destroyLi:function(){this.$menu.find("li").remove()},createLi:function(){var d=this,e=[],f=0,g=document.createElement("option"),h=-1,i=function(a,b,c,d){return""+a+""},j=function(a,e,f,g){return''+a+''};if(this.options.title&&!this.multiple&&(h--,!this.$element.find(".bs-title-option").length)){var k=this.$element[0];g.className="bs-title-option",g.appendChild(document.createTextNode(this.options.title)),g.value="",k.insertBefore(g,k.firstChild);var l=a(k.options[k.selectedIndex]);void 0===l.attr("selected")&&void 0===this.$element.data("selected")&&(g.selected=!0)}return this.$element.find("option").each(function(b){var c=a(this);if(h++,!c.hasClass("bs-title-option")){var g=this.className||"",k=this.style.cssText,l=c.data("content")?c.data("content"):c.html(),m=c.data("tokens")?c.data("tokens"):null,n="undefined"!=typeof c.data("subtext")?''+c.data("subtext")+"":"",o="undefined"!=typeof c.data("icon")?' ':"",p=c.parent(),q="OPTGROUP"===p[0].tagName,r=q&&p[0].disabled,s=this.disabled||r;if(""!==o&&s&&(o=""+o+""),d.options.hideDisabled&&(s&&!q||r))return void h--;if(c.data("content")||(l=o+''+l+n+""),q&&c.data("divider")!==!0){if(d.options.hideDisabled&&s){if(void 0===p.data("allOptionsDisabled")){var t=p.children();p.data("allOptionsDisabled",t.filter(":disabled").length===t.length)}if(p.data("allOptionsDisabled"))return void h--}var u=" "+p[0].className||"";if(0===c.index()){f+=1;var v=p[0].label,w="undefined"!=typeof p.data("subtext")?''+p.data("subtext")+"":"",x=p.data("icon")?' ':"";v=x+''+v+w+"",0!==b&&e.length>0&&(h++,e.push(i("",null,"divider",f+"div"))),h++,e.push(i(v,null,"dropdown-header"+u,f))}if(d.options.hideDisabled&&s)return void h--;e.push(i(j(l,"opt "+g+u,k,m),b,"",f))}else if(c.data("divider")===!0)e.push(i("",b,"divider"));else if(c.data("hidden")===!0)e.push(i(j(l,g,k,m),b,"hidden is-hidden"));else{var y=this.previousElementSibling&&"OPTGROUP"===this.previousElementSibling.tagName;if(!y&&d.options.hideDisabled)for(var z=a(this).prevAll(),A=0;AC;C++){var D=z[C];(D.disabled||a(D).data("hidden")===!0)&&B++}B===A&&(y=!0);break}y&&(h++,e.push(i("",null,"divider",f+"div"))),e.push(i(j(l,g,k,m),b))}d.liObj[b]=h}}),this.multiple||0!==this.$element.find("option:selected").length||this.options.title||this.$element.find("option").eq(0).prop("selected",!0).attr("selected","selected"),e.join("")},findLis:function(){return null==this.$lis&&(this.$lis=this.$menu.find("li")),this.$lis},render:function(b){var c,d=this;b!==!1&&this.$element.find("option").each(function(a){var b=d.findLis().eq(d.liObj[a]);d.setDisabled(a,this.disabled||"OPTGROUP"===this.parentNode.tagName&&this.parentNode.disabled,b),d.setSelected(a,this.selected,b)}),this.togglePlaceholder(),this.tabIndex();var e=this.$element.find("option").map(function(){if(this.selected){if(d.options.hideDisabled&&(this.disabled||"OPTGROUP"===this.parentNode.tagName&&this.parentNode.disabled))return;var b,c=a(this),e=c.data("icon")&&d.options.showIcon?' ':"";return b=d.options.showSubtext&&c.data("subtext")&&!d.multiple?' '+c.data("subtext")+"":"","undefined"!=typeof c.attr("title")?c.attr("title"):c.data("content")&&d.options.showContent?c.data("content"):e+c.html()+b}}).toArray(),f=this.multiple?e.join(this.options.multipleSeparator):e[0];if(this.multiple&&this.options.selectedTextFormat.indexOf("count")>-1){var g=this.options.selectedTextFormat.split(">");if(g.length>1&&e.length>g[1]||1==g.length&&e.length>=2){c=this.options.hideDisabled?", [disabled]":"";var h=this.$element.find("option").not('[data-divider="true"], [data-hidden="true"]'+c).length,i="function"==typeof this.options.countSelectedText?this.options.countSelectedText(e.length,h):this.options.countSelectedText;f=i.replace("{0}",e.length.toString()).replace("{1}",h.toString())}}void 0==this.options.title&&(this.options.title=this.$element.attr("title")),"static"==this.options.selectedTextFormat&&(f=this.options.title),f||(f="undefined"!=typeof this.options.title?this.options.title:this.options.noneSelectedText),this.$button.attr("title",a.trim(f.replace(/<[^>]*>?/g,""))),this.$button.children(".filter-option").html(f),this.$element.trigger("rendered.bs.select")},setStyle:function(a,b){this.$element.attr("class")&&this.$newElement.addClass(this.$element.attr("class").replace(/selectpicker|mobile-device|bs-select-hidden|validate\[.*\]/gi,""));var c=a?a:this.options.style;"add"==b?this.$button.addClass(c):"remove"==b?this.$button.removeClass(c):(this.$button.removeClass(this.options.style),this.$button.addClass(c))},liHeight:function(b){if(b||this.options.size!==!1&&!this.sizeInfo){var c=document.createElement("div"),d=document.createElement("div"),e=document.createElement("ul"),f=document.createElement("li"),g=document.createElement("li"),h=document.createElement("a"),i=document.createElement("span"),j=this.options.header&&this.$menu.find(".popover-title").length>0?this.$menu.find(".popover-title")[0].cloneNode(!0):null,k=this.options.liveSearch?document.createElement("div"):null,l=this.options.actionsBox&&this.multiple&&this.$menu.find(".bs-actionsbox").length>0?this.$menu.find(".bs-actionsbox")[0].cloneNode(!0):null,m=this.options.doneButton&&this.multiple&&this.$menu.find(".bs-donebutton").length>0?this.$menu.find(".bs-donebutton")[0].cloneNode(!0):null;if(i.className="text",c.className=this.$menu[0].parentNode.className+" open",d.className="dropdown-menu open",e.className="dropdown-menu inner",f.className="divider",i.appendChild(document.createTextNode("Inner text")),h.appendChild(i),g.appendChild(h),e.appendChild(g),e.appendChild(f),j&&d.appendChild(j),k){var n=document.createElement("span");k.className="bs-searchbox",n.className="form-control",k.appendChild(n),d.appendChild(k)}l&&d.appendChild(l),d.appendChild(e),m&&d.appendChild(m),c.appendChild(d),document.body.appendChild(c);var o=h.offsetHeight,p=j?j.offsetHeight:0,q=k?k.offsetHeight:0,r=l?l.offsetHeight:0,s=m?m.offsetHeight:0,t=a(f).outerHeight(!0),u="function"==typeof getComputedStyle?getComputedStyle(d):!1,v=u?null:a(d),w={vert:parseInt(u?u.paddingTop:v.css("paddingTop"))+parseInt(u?u.paddingBottom:v.css("paddingBottom"))+parseInt(u?u.borderTopWidth:v.css("borderTopWidth"))+parseInt(u?u.borderBottomWidth:v.css("borderBottomWidth")),horiz:parseInt(u?u.paddingLeft:v.css("paddingLeft"))+parseInt(u?u.paddingRight:v.css("paddingRight"))+parseInt(u?u.borderLeftWidth:v.css("borderLeftWidth"))+parseInt(u?u.borderRightWidth:v.css("borderRightWidth"))},x={vert:w.vert+parseInt(u?u.marginTop:v.css("marginTop"))+parseInt(u?u.marginBottom:v.css("marginBottom"))+2,horiz:w.horiz+parseInt(u?u.marginLeft:v.css("marginLeft"))+parseInt(u?u.marginRight:v.css("marginRight"))+2};document.body.removeChild(c),this.sizeInfo={liHeight:o,headerHeight:p,searchHeight:q,actionsHeight:r,doneButtonHeight:s,dividerHeight:t,menuPadding:w,menuExtras:x}}},setSize:function(){if(this.findLis(),this.liHeight(),this.options.header&&this.$menu.css("padding-top",0),this.options.size!==!1){var b,c,d,e,f,g,h,i,j=this,k=this.$menu,l=this.$menuInner,m=a(window),n=this.$newElement[0].offsetHeight,o=this.$newElement[0].offsetWidth,p=this.sizeInfo.liHeight,q=this.sizeInfo.headerHeight,r=this.sizeInfo.searchHeight,s=this.sizeInfo.actionsHeight,t=this.sizeInfo.doneButtonHeight,u=this.sizeInfo.dividerHeight,v=this.sizeInfo.menuPadding,w=this.sizeInfo.menuExtras,x=this.options.hideDisabled?".disabled":"",y=function(){var b,c=j.$newElement.offset(),d=a(j.options.container);j.options.container&&!d.is("body")?(b=d.offset(),b.top+=parseInt(d.css("borderTopWidth")),b.left+=parseInt(d.css("borderLeftWidth"))):b={top:0,left:0},f=c.top-b.top-m.scrollTop(),g=m.height()-f-n-b.top,h=c.left-b.left-m.scrollLeft(),i=m.width()-h-o-b.left};if(y(),"auto"===this.options.size){var z=function(){var m,n=function(b,c){return function(d){return c?d.classList?d.classList.contains(b):a(d).hasClass(b):!(d.classList?d.classList.contains(b):a(d).hasClass(b))}},u=j.$menuInner[0].getElementsByTagName("li"),x=Array.prototype.filter?Array.prototype.filter.call(u,n("hidden",!1)):j.$lis.not(".hidden"),z=Array.prototype.filter?Array.prototype.filter.call(x,n("dropdown-header",!0)):x.filter(".dropdown-header");y(),b=g-w.vert,c=i-w.horiz,j.options.container?(k.data("height")||k.data("height",k.height()),d=k.data("height"),k.data("width")||k.data("width",k.width()),e=k.data("width")):(d=k.height(),e=k.width()),j.options.dropupAuto&&j.$newElement.toggleClass("dropup",f>g&&b-w.verti&&c-w.horiz3?3*p+w.vert-2:0,k.css({"max-height":b+"px",overflow:"hidden","min-height":m+q+r+s+t+"px"}),l.css({"max-height":b-q-r-s-t-v.vert+"px","overflow-y":"auto","min-height":Math.max(m-v.vert,0)+"px"})};z(),this.$searchbox.off("input.getSize propertychange.getSize").on("input.getSize propertychange.getSize",z),m.off("resize.getSize scroll.getSize").on("resize.getSize scroll.getSize",z)}else if(this.options.size&&"auto"!=this.options.size&&this.$lis.not(x).length>this.options.size){var A=this.$lis.not(".divider").not(x).children().slice(0,this.options.size).last().parent().index(),B=this.$lis.slice(0,A+1).filter(".divider").length;b=p*this.options.size+B*u+v.vert,j.options.container?(k.data("height")||k.data("height",k.height()),d=k.data("height")):d=k.height(),j.options.dropupAuto&&this.$newElement.toggleClass("dropup",f>g&&b-w.vert');var b,c,d,e=this,f=a(this.options.container),g=function(a){e.$bsContainer.addClass(a.attr("class").replace(/form-control|fit-width/gi,"")).toggleClass("dropup",a.hasClass("dropup")),b=a.offset(),f.is("body")?c={top:0,left:0}:(c=f.offset(),c.top+=parseInt(f.css("borderTopWidth"))-f.scrollTop(),c.left+=parseInt(f.css("borderLeftWidth"))-f.scrollLeft()),d=a.hasClass("dropup")?0:a[0].offsetHeight,e.$bsContainer.css({top:b.top-c.top+d,left:b.left-c.left,width:a[0].offsetWidth})};this.$button.on("click",function(){var b=a(this);e.isDisabled()||(g(e.$newElement),e.$bsContainer.appendTo(e.options.container).toggleClass("open",!b.hasClass("open")).append(e.$menu))}),a(window).on("resize scroll",function(){g(e.$newElement)}),this.$element.on("hide.bs.select",function(){e.$menu.data("height",e.$menu.height()),e.$bsContainer.detach()})},setSelected:function(a,b,c){c||(this.togglePlaceholder(),c=this.findLis().eq(this.liObj[a])),c.toggleClass("selected",b).find("a").attr("aria-selected",b)},setDisabled:function(a,b,c){c||(c=this.findLis().eq(this.liObj[a])),b?c.addClass("disabled").children("a").attr("href","#").attr("tabindex",-1).attr("aria-disabled",!0):c.removeClass("disabled").children("a").removeAttr("href").attr("tabindex",0).attr("aria-disabled",!1)},isDisabled:function(){return this.$element[0].disabled},checkDisabled:function(){var a=this;this.isDisabled()?(this.$newElement.addClass("disabled"),this.$button.addClass("disabled").attr("tabindex",-1)):(this.$button.hasClass("disabled")&&(this.$newElement.removeClass("disabled"),this.$button.removeClass("disabled")),-1!=this.$button.attr("tabindex")||this.$element.data("tabindex")||this.$button.removeAttr("tabindex")),this.$button.click(function(){return!a.isDisabled()})},togglePlaceholder:function(){var a=this.$element.val();this.$button.toggleClass("bs-placeholder",null===a||""===a)},tabIndex:function(){this.$element.data("tabindex")!==this.$element.attr("tabindex")&&-98!==this.$element.attr("tabindex")&&"-98"!==this.$element.attr("tabindex")&&(this.$element.data("tabindex",this.$element.attr("tabindex")),this.$button.attr("tabindex",this.$element.data("tabindex"))),this.$element.attr("tabindex",-98)},clickListener:function(){var b=this,c=a(document);this.$newElement.on("touchstart.dropdown",".dropdown-menu",function(a){a.stopPropagation()}),c.data("spaceSelect",!1),this.$button.on("keyup",function(a){/(32)/.test(a.keyCode.toString(10))&&c.data("spaceSelect")&&(a.preventDefault(),c.data("spaceSelect",!1))}),this.$button.on("click",function(){b.setSize()}),this.$element.on("shown.bs.select",function(){if(b.options.liveSearch||b.multiple){if(!b.multiple){var a=b.liObj[b.$element[0].selectedIndex];if("number"!=typeof a||b.options.size===!1)return;var c=b.$lis.eq(a)[0].offsetTop-b.$menuInner[0].offsetTop;c=c-b.$menuInner[0].offsetHeight/2+b.sizeInfo.liHeight/2,b.$menuInner[0].scrollTop=c}}else b.$menuInner.find(".selected a").focus()}),this.$menuInner.on("click","li a",function(c){var d=a(this),e=d.parent().data("originalIndex"),g=b.$element.val(),h=b.$element.prop("selectedIndex"),i=!0;if(b.multiple&&1!==b.options.maxOptions&&c.stopPropagation(),c.preventDefault(),!b.isDisabled()&&!d.parent().hasClass("disabled")){var j=b.$element.find("option"),k=j.eq(e),l=k.prop("selected"),m=k.parent("optgroup"),n=b.options.maxOptions,o=m.data("maxOptions")||!1;if(b.multiple){if(k.prop("selected",!l),b.setSelected(e,!l),d.blur(),n!==!1||o!==!1){var p=n
    ');t[2]&&(u=u.replace("{var}",t[2][n>1?0:1]),v=v.replace("{var}",t[2][o>1?0:1])),k.prop("selected",!1),b.$menu.append(w),n&&p&&(w.append(a("
    "+u+"
    ")),i=!1,b.$element.trigger("maxReached.bs.select")),o&&q&&(w.append(a("
    "+v+"
    ")),i=!1,b.$element.trigger("maxReachedGrp.bs.select")),setTimeout(function(){b.setSelected(e,!1)},10),w.delay(750).fadeOut(300,function(){a(this).remove()})}}}else j.prop("selected",!1),k.prop("selected",!0),b.$menuInner.find(".selected").removeClass("selected").find("a").attr("aria-selected",!1),b.setSelected(e,!0);!b.multiple||b.multiple&&1===b.options.maxOptions?b.$button.focus():b.options.liveSearch&&b.$searchbox.focus(),i&&(g!=b.$element.val()&&b.multiple||h!=b.$element.prop("selectedIndex")&&!b.multiple)&&(f=[e,k.prop("selected"),l],b.$element.triggerNative("change"))}}),this.$menu.on("click","li.disabled a, .popover-title, .popover-title :not(.close)",function(c){c.currentTarget==this&&(c.preventDefault(),c.stopPropagation(),b.options.liveSearch&&!a(c.target).hasClass("close")?b.$searchbox.focus():b.$button.focus())}),this.$menuInner.on("click",".divider, .dropdown-header",function(a){a.preventDefault(),a.stopPropagation(),b.options.liveSearch?b.$searchbox.focus():b.$button.focus()}),this.$menu.on("click",".popover-title .close",function(){b.$button.click()}),this.$searchbox.on("click",function(a){a.stopPropagation()}),this.$menu.on("click",".actions-btn",function(c){b.options.liveSearch?b.$searchbox.focus():b.$button.focus(),c.preventDefault(),c.stopPropagation(),a(this).hasClass("bs-select-all")?b.selectAll():b.deselectAll()}),this.$element.change(function(){b.render(!1),b.$element.trigger("changed.bs.select",f),f=null})},liveSearchListener:function(){var d=this,e=a('
  • ');this.$button.on("click.dropdown.data-api touchstart.dropdown.data-api",function(){d.$menuInner.find(".active").removeClass("active"),d.$searchbox.val()&&(d.$searchbox.val(""),d.$lis.not(".is-hidden").removeClass("hidden"),e.parent().length&&e.remove()),d.multiple||d.$menuInner.find(".selected").addClass("active"),setTimeout(function(){d.$searchbox.focus()},10)}),this.$searchbox.on("click.dropdown.data-api focus.dropdown.data-api touchend.dropdown.data-api",function(a){a.stopPropagation()}),this.$searchbox.on("input propertychange",function(){if(d.$searchbox.val()){var f=d.$lis.not(".is-hidden").removeClass("hidden").children("a");f=d.options.liveSearchNormalize?f.not(":a"+d._searchStyle()+'("'+b(d.$searchbox.val())+'")'):f.not(":"+d._searchStyle()+'("'+d.$searchbox.val()+'")'),f.parent().addClass("hidden"),d.$lis.filter(".dropdown-header").each(function(){var b=a(this),c=b.data("optgroup");0===d.$lis.filter("[data-optgroup="+c+"]").not(b).not(".hidden").length&&(b.addClass("hidden"),d.$lis.filter("[data-optgroup="+c+"div]").addClass("hidden"))});var g=d.$lis.not(".hidden");g.each(function(b){var c=a(this);c.hasClass("divider")&&(c.index()===g.first().index()||c.index()===g.last().index()||g.eq(b+1).hasClass("divider"))&&c.addClass("hidden")}),d.$lis.not(".hidden, .no-results").length?e.parent().length&&e.remove():(e.parent().length&&e.remove(),e.html(d.options.noneResultsText.replace("{0}",'"'+c(d.$searchbox.val())+'"')).show(),d.$menuInner.append(e))}else d.$lis.not(".is-hidden").removeClass("hidden"),e.parent().length&&e.remove();d.$lis.filter(".active").removeClass("active"),d.$searchbox.val()&&d.$lis.not(".hidden, .divider, .dropdown-header").eq(0).addClass("active").children("a").focus(),a(this).focus()})},_searchStyle:function(){var a={begins:"ibegins",startsWith:"ibegins"};return a[this.options.liveSearchStyle]||"icontains"},val:function(a){return"undefined"!=typeof a?(this.$element.val(a),this.render(),this.$element):this.$element.val()},changeAll:function(b){if(this.multiple){"undefined"==typeof b&&(b=!0),this.findLis();var c=this.$element.find("option"),d=this.$lis.not(".divider, .dropdown-header, .disabled, .hidden"),e=d.length,f=[];if(b){if(d.filter(".selected").length===d.length)return}else if(0===d.filter(".selected").length)return;d.toggleClass("selected",b);for(var g=0;e>g;g++){var h=d[g].getAttribute("data-original-index");f[f.length]=c.eq(h)[0]}a(f).prop("selected",b),this.render(!1),this.togglePlaceholder(),this.$element.triggerNative("change")}},selectAll:function(){return this.changeAll(!0)},deselectAll:function(){return this.changeAll(!1)},toggle:function(a){a=a||window.event,a&&a.stopPropagation(),this.$button.trigger("click")},keydown:function(c){var d,e,f,g,h,i,j,k,l,m=a(this),n=m.is("input")?m.parent().parent():m.parent(),o=n.data("this"),p=":not(.disabled, .hidden, .dropdown-header, .divider)",q={32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",96:"0",97:"1",98:"2",99:"3",100:"4",101:"5",102:"6",103:"7",104:"8",105:"9"};if(o.options.liveSearch&&(n=m.parent().parent()),o.options.container&&(n=o.$menu),d=a('[role="listbox"] li',n),l=o.$newElement.hasClass("open"),!l&&(c.keyCode>=48&&c.keyCode<=57||c.keyCode>=96&&c.keyCode<=105||c.keyCode>=65&&c.keyCode<=90))return o.options.container?o.$button.trigger("click"):(o.setSize(),o.$menu.parent().addClass("open"),l=!0),void o.$searchbox.focus();if(o.options.liveSearch&&(/(^9$|27)/.test(c.keyCode.toString(10))&&l&&(c.preventDefault(),c.stopPropagation(),o.$button.click().focus()),d=a('[role="listbox"] li'+p,n),m.val()||/(38|40)/.test(c.keyCode.toString(10))||0===d.filter(".active").length&&(d=o.$menuInner.find("li"),d=o.options.liveSearchNormalize?d.filter(":a"+o._searchStyle()+"("+b(q[c.keyCode])+")"):d.filter(":"+o._searchStyle()+"("+q[c.keyCode]+")"))),d.length){if(/(38|40)/.test(c.keyCode.toString(10)))e=d.index(d.find("a").filter(":focus").parent()),g=d.filter(p).first().index(),h=d.filter(p).last().index(),f=d.eq(e).nextAll(p).eq(0).index(),i=d.eq(e).prevAll(p).eq(0).index(),j=d.eq(f).prevAll(p).eq(0).index(),o.options.liveSearch&&(d.each(function(b){a(this).hasClass("disabled")||a(this).data("index",b)}),e=d.index(d.filter(".active")),g=d.first().data("index"),h=d.last().data("index"),f=d.eq(e).nextAll().eq(0).data("index"),i=d.eq(e).prevAll().eq(0).data("index"),j=d.eq(f).prevAll().eq(0).data("index")),k=m.data("prevIndex"),38==c.keyCode?(o.options.liveSearch&&e--,e!=j&&e>i&&(e=i),g>e&&(e=g),e==k&&(e=h)):40==c.keyCode&&(o.options.liveSearch&&e++,-1==e&&(e=0),e!=j&&f>e&&(e=f),e>h&&(e=h),e==k&&(e=g)),m.data("prevIndex",e),o.options.liveSearch?(c.preventDefault(),m.hasClass("dropdown-toggle")||(d.removeClass("active").eq(e).addClass("active").children("a").focus(),m.focus())):d.eq(e).children("a").focus();else if(!m.is("input")){var r,s,t=[];d.each(function(){a(this).hasClass("disabled")||a.trim(a(this).children("a").text().toLowerCase()).substring(0,1)==q[c.keyCode]&&t.push(a(this).index())}),r=a(document).data("keycount"),r++,a(document).data("keycount",r),s=a.trim(a(":focus").text().toLowerCase()).substring(0,1),s!=q[c.keyCode]?(r=1,a(document).data("keycount",r)):r>=t.length&&(a(document).data("keycount",0),r>t.length&&(r=1)),d.eq(t[r-1]).children("a").focus()}if((/(13|32)/.test(c.keyCode.toString(10))||/(^9$)/.test(c.keyCode.toString(10))&&o.options.selectOnTab)&&l){ +if(/(32)/.test(c.keyCode.toString(10))||c.preventDefault(),o.options.liveSearch)/(32)/.test(c.keyCode.toString(10))||(o.$menuInner.find(".active a").click(),m.focus());else{var u=a(":focus");u.click(),u.focus(),c.preventDefault(),a(document).data("spaceSelect",!0)}a(document).data("keycount",0)}(/(^9$|27)/.test(c.keyCode.toString(10))&&l&&(o.multiple||o.options.liveSearch)||/(27)/.test(c.keyCode.toString(10))&&!l)&&(o.$menu.parent().removeClass("open"),o.options.container&&o.$newElement.removeClass("open"),o.$button.focus())}},mobile:function(){this.$element.addClass("mobile-device")},refresh:function(){this.$lis=null,this.liObj={},this.reloadLi(),this.render(),this.checkDisabled(),this.liHeight(!0),this.setStyle(),this.setWidth(),this.$lis&&this.$searchbox.trigger("propertychange"),this.$element.trigger("refreshed.bs.select")},hide:function(){this.$newElement.hide()},show:function(){this.$newElement.show()},remove:function(){this.$newElement.remove(),this.$element.remove()},destroy:function(){this.$newElement.before(this.$element).remove(),this.$bsContainer?this.$bsContainer.remove():this.$menu.remove(),this.$element.off(".bs.select").removeData("selectpicker").removeClass("bs-select-hidden selectpicker")}};var h=a.fn.selectpicker;a.fn.selectpicker=d,a.fn.selectpicker.Constructor=g,a.fn.selectpicker.noConflict=function(){return a.fn.selectpicker=h,this},a(document).data("keycount",0).on("keydown.bs.select",'.bootstrap-select [data-toggle=dropdown], .bootstrap-select [role="listbox"], .bs-searchbox input',g.prototype.keydown).on("focusin.modal",'.bootstrap-select [data-toggle=dropdown], .bootstrap-select [role="listbox"], .bs-searchbox input',function(a){a.stopPropagation()}),a(window).on("load.bs.select.data-api",function(){a(".selectpicker").each(function(){var b=a(this);d.call(b,b.data())})})}(a)}); \ No newline at end of file diff --git a/js/bootstrap.min.js b/js/bootstrap.min.js new file mode 100644 index 0000000..9bcd2fc --- /dev/null +++ b/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under the MIT license + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
    ',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file diff --git a/js/clipboard.js b/js/clipboard.js new file mode 100644 index 0000000..3548cc2 --- /dev/null +++ b/js/clipboard.js @@ -0,0 +1,12 @@ +/* + * zClip :: jQuery ZeroClipboard v1.1.1 + * http://steamdev.com/zclip + * + * Copyright 2011, SteamDev + * Released under the MIT license. + * http://www.opensource.org/licenses/mit-license.php + * + * Date: Wed Jun 01, 2011 + */ + +(function(a){a.fn.zclip=function(c){if(typeof c=="object"&&!c.length){var b=a.extend({path:"ZeroClipboard.swf",copy:null,beforeCopy:null,afterCopy:null,clickAfter:true,setHandCursor:true,setCSSEffects:true},c);return this.each(function(){var e=a(this);if(e.is(":visible")&&(typeof b.copy=="string"||a.isFunction(b.copy))){ZeroClipboard.setMoviePath(b.path);var d=new ZeroClipboard.Client();if(a.isFunction(b.copy)){e.bind("zClip_copy",b.copy)}if(a.isFunction(b.beforeCopy)){e.bind("zClip_beforeCopy",b.beforeCopy)}if(a.isFunction(b.afterCopy)){e.bind("zClip_afterCopy",b.afterCopy)}d.setHandCursor(b.setHandCursor);d.setCSSEffects(b.setCSSEffects);d.addEventListener("mouseOver",function(f){e.trigger("mouseenter")});d.addEventListener("mouseOut",function(f){e.trigger("mouseleave")});d.addEventListener("mouseDown",function(f){e.trigger("mousedown");if(!a.isFunction(b.copy)){d.setText(b.copy)}else{d.setText(e.triggerHandler("zClip_copy"))}if(a.isFunction(b.beforeCopy)){e.trigger("zClip_beforeCopy")}});d.addEventListener("complete",function(f,g){if(a.isFunction(b.afterCopy)){e.trigger("zClip_afterCopy")}else{if(g.length>500){g=g.substr(0,500)+"...\n\n("+(g.length-500)+" characters not shown)"}e.removeClass("hover");alert("Copied text to clipboard:\n\n "+g)}if(b.clickAfter){e.trigger("click")}});d.glue(e[0],e.parent()[0]);a(window).bind("load resize",function(){d.reposition()})}})}else{if(typeof c=="string"){return this.each(function(){var f=a(this);c=c.toLowerCase();var e=f.data("zclipId");var d=a("#"+e+".zclip");if(c=="remove"){d.remove();f.removeClass("active hover")}else{if(c=="hide"){d.hide();f.removeClass("active hover")}else{if(c=="show"){d.show()}}}})}}}})(jQuery);var ZeroClipboard={version:"1.0.7",clients:{},moviePath:"ZeroClipboard.swf",nextId:1,$:function(a){if(typeof(a)=="string"){a=document.getElementById(a)}if(!a.addClass){a.hide=function(){this.style.display="none"};a.show=function(){this.style.display=""};a.addClass=function(b){this.removeClass(b);this.className+=" "+b};a.removeClass=function(d){var e=this.className.split(/\s+/);var b=-1;for(var c=0;c-1){e.splice(b,1);this.className=e.join(" ")}return this};a.hasClass=function(b){return !!this.className.match(new RegExp("\\s*"+b+"\\s*"))}}return a},setMoviePath:function(a){this.moviePath=a},dispatch:function(d,b,c){var a=this.clients[d];if(a){a.receiveEvent(b,c)}},register:function(b,a){this.clients[b]=a},getDOMObjectPosition:function(c,a){var b={left:0,top:0,width:c.width?c.width:c.offsetWidth,height:c.height?c.height:c.offsetHeight};if(c&&(c!=a)){b.left+=c.offsetLeft;b.top+=c.offsetTop}return b},Client:function(a){this.handlers={};this.id=ZeroClipboard.nextId++;this.movieId="ZeroClipboardMovie_"+this.id;ZeroClipboard.register(this.id,this);if(a){this.glue(a)}}};ZeroClipboard.Client.prototype={id:0,ready:false,movie:null,clipText:"",handCursorEnabled:true,cssEffects:true,handlers:null,glue:function(d,b,e){this.domElement=ZeroClipboard.$(d);var f=99;if(this.domElement.style.zIndex){f=parseInt(this.domElement.style.zIndex,10)+1}if(typeof(b)=="string"){b=ZeroClipboard.$(b)}else{if(typeof(b)=="undefined"){b=document.getElementsByTagName("body")[0]}}var c=ZeroClipboard.getDOMObjectPosition(this.domElement,b);this.div=document.createElement("div");this.div.className="zclip";this.div.id="zclip-"+this.movieId;$(this.domElement).data("zclipId","zclip-"+this.movieId);var a=this.div.style;a.position="absolute";a.left=""+c.left+"px";a.top=""+c.top+"px";a.width=""+c.width+"px";a.height=""+c.height+"px";a.zIndex=f;if(typeof(e)=="object"){for(addedStyle in e){a[addedStyle]=e[addedStyle]}}b.appendChild(this.div);this.div.innerHTML=this.getHTML(c.width,c.height)},getHTML:function(d,a){var c="";var b="id="+this.id+"&width="+d+"&height="+a;if(navigator.userAgent.match(/MSIE/)){var e=location.href.match(/^https/i)?"https://":"http://";c+=''}else{c+=''}return c},hide:function(){if(this.div){this.div.style.left="-2000px"}},show:function(){this.reposition()},destroy:function(){if(this.domElement&&this.div){this.hide();this.div.innerHTML="";var a=document.getElementsByTagName("body")[0];try{a.removeChild(this.div)}catch(b){}this.domElement=null;this.div=null}},reposition:function(c){if(c){this.domElement=ZeroClipboard.$(c);if(!this.domElement){this.hide()}}if(this.domElement&&this.div){var b=ZeroClipboard.getDOMObjectPosition(this.domElement);var a=this.div.style;a.left=""+b.left+"px";a.top=""+b.top+"px"}},setText:function(a){this.clipText=a;if(this.ready){this.movie.setText(a)}},addEventListener:function(a,b){a=a.toString().toLowerCase().replace(/^on/,"");if(!this.handlers[a]){this.handlers[a]=[]}this.handlers[a].push(b)},setHandCursor:function(a){this.handCursorEnabled=a;if(this.ready){this.movie.setHandCursor(a)}},setCSSEffects:function(a){this.cssEffects=!!a},receiveEvent:function(d,f){d=d.toString().toLowerCase().replace(/^on/,"");switch(d){case"load":this.movie=document.getElementById(this.movieId);if(!this.movie){var c=this;setTimeout(function(){c.receiveEvent("load",null)},1);return}if(!this.ready&&navigator.userAgent.match(/Firefox/)&&navigator.userAgent.match(/Windows/)){var c=this;setTimeout(function(){c.receiveEvent("load",null)},100);this.ready=true;return}this.ready=true;try{this.movie.setText(this.clipText)}catch(h){}try{this.movie.setHandCursor(this.handCursorEnabled)}catch(h){}break;case"mouseover":if(this.domElement&&this.cssEffects){this.domElement.addClass("hover");if(this.recoverActive){this.domElement.addClass("active")}}break;case"mouseout":if(this.domElement&&this.cssEffects){this.recoverActive=false;if(this.domElement.hasClass("active")){this.domElement.removeClass("active");this.recoverActive=true}this.domElement.removeClass("hover")}break;case"mousedown":if(this.domElement&&this.cssEffects){this.domElement.addClass("active")}break;case"mouseup":if(this.domElement&&this.cssEffects){this.domElement.removeClass("active");this.recoverActive=false}break}if(this.handlers[d]){for(var b=0,a=this.handlers[d].length;b0&&void 0!==arguments[0]?arguments[0]:{};this.action=e.action,this.container=e.container,this.emitter=e.emitter,this.target=e.target,this.text=e.text,this.trigger=e.trigger,this.selectedText=""}},{key:"initSelection",value:function t(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function t(){var e=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return e.removeFake()},this.fakeHandler=this.container.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[n?"right":"left"]="-9999px";var o=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=o+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.container.appendChild(this.fakeElem),this.selectedText=(0,i.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function t(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function t(){this.selectedText=(0,i.default)(this.target),this.copyText()}},{key:"copyText",value:function t(){var e=void 0;try{e=document.execCommand(this.action)}catch(t){e=!1}this.handleResult(e)}},{key:"handleResult",value:function t(e){this.emitter.emit(e?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function t(){this.trigger&&this.trigger.focus(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function t(){this.removeFake()}},{key:"action",set:function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=e,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function t(){return this._action}},{key:"target",set:function t(e){if(void 0!==e){if(!e||"object"!==(void 0===e?"undefined":r(e))||1!==e.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&e.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(e.hasAttribute("readonly")||e.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=e}},get:function t(){return this._target}}]),t}();t.exports=c})},{select:5}],8:[function(e,n,o){!function(i,r){if("function"==typeof t&&t.amd)t(["module","./clipboard-action","tiny-emitter","good-listener"],r);else if(void 0!==o)r(n,e("./clipboard-action"),e("tiny-emitter"),e("good-listener"));else{var a={exports:{}};r(a,i.clipboardAction,i.tinyEmitter,i.goodListener),i.clipboard=a.exports}}(this,function(t,e,n,o){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function c(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function l(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}var s=i(e),u=i(n),f=i(o),d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},h=function(){function t(t,e){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof e.action?e.action:this.defaultAction,this.target="function"==typeof e.target?e.target:this.defaultTarget,this.text="function"==typeof e.text?e.text:this.defaultText,this.container="object"===d(e.container)?e.container:document.body}},{key:"listenClick",value:function t(e){var n=this;this.listener=(0,f.default)(e,"click",function(t){return n.onClick(t)})}},{key:"onClick",value:function t(e){var n=e.delegateTarget||e.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new s.default({action:this.action(n),target:this.target(n),text:this.text(n),container:this.container,trigger:n,emitter:this})}},{key:"defaultAction",value:function t(e){return l("action",e)}},{key:"defaultTarget",value:function t(e){var n=l("target",e);if(n)return document.querySelector(n)}},{key:"defaultText",value:function t(e){return l("text",e)}},{key:"destroy",value:function t(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],n="string"==typeof e?[e]:e,o=!!document.queryCommandSupported;return n.forEach(function(t){o=o&&!!document.queryCommandSupported(t)}),o}}]),e}(u.default);t.exports=p})},{"./clipboard-action":7,"good-listener":4,"tiny-emitter":6}]},{},[8])(8)}); diff --git a/js/countdown/countdown.js b/js/countdown/countdown.js new file mode 100644 index 0000000..5a2051b --- /dev/null +++ b/js/countdown/countdown.js @@ -0,0 +1,298 @@ +// AMD support (Thanks to @FagnerMartinsBrack) +;(function(factory) { + 'use strict'; + + if (typeof define === 'function' && define.amd) { + define(['jquery'], factory); + } else { + factory(jQuery); + } +})(function($){ + 'use strict'; + + var instances = [], + matchers = [], + defaultOptions = { + precision: 100, // 0.1 seconds, used to update the DOM + elapse: false, + defer: false + }; + // Miliseconds + matchers.push(/^[0-9]*$/.source); + // Month/Day/Year [hours:minutes:seconds] + matchers.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/ + .source); + // Year/Day/Month [hours:minutes:seconds] and + // Year-Day-Month [hours:minutes:seconds] + matchers.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/ + .source); + // Cast the matchers to a regular expression object + matchers = new RegExp(matchers.join('|')); + // Parse a Date formatted has String to a native object + function parseDateString(dateString) { + // Pass through when a native object is sent + if(dateString instanceof Date) { + return dateString; + } + // Caste string to date object + if(String(dateString).match(matchers)) { + // If looks like a milisecond value cast to number before + // final casting (Thanks to @msigley) + if(String(dateString).match(/^[0-9]*$/)) { + dateString = Number(dateString); + } + // Replace dashes to slashes + if(String(dateString).match(/\-/)) { + dateString = String(dateString).replace(/\-/g, '/'); + } + return new Date(dateString); + } else { + throw new Error('Couldn\'t cast `' + dateString + + '` to a date object.'); + } + } + // Map to convert from a directive to offset object property + var DIRECTIVE_KEY_MAP = { + 'Y': 'years', + 'm': 'months', + 'n': 'daysToMonth', + 'd': 'daysToWeek', + 'w': 'weeks', + 'W': 'weeksToMonth', + 'H': 'hours', + 'M': 'minutes', + 'S': 'seconds', + 'D': 'totalDays', + 'I': 'totalHours', + 'N': 'totalMinutes', + 'T': 'totalSeconds' + }; + // Returns an escaped regexp from the string + function escapedRegExp(str) { + var sanitize = str.toString().replace(/([.?*+^$[\]\\(){}|-])/g, '\\$1'); + return new RegExp(sanitize); + } + // Time string formatter + function strftime(offsetObject) { + return function(format) { + var directives = format.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi); + if(directives) { + for(var i = 0, len = directives.length; i < len; ++i) { + var directive = directives[i] + .match(/%(-|!)?([a-zA-Z]{1})(:[^;]+;)?/), + regexp = escapedRegExp(directive[0]), + modifier = directive[1] || '', + plural = directive[3] || '', + value = null; + // Get the key + directive = directive[2]; + // Swap shot-versions directives + if(DIRECTIVE_KEY_MAP.hasOwnProperty(directive)) { + value = DIRECTIVE_KEY_MAP[directive]; + value = Number(offsetObject[value]); + } + if(value !== null) { + // Pluralize + if(modifier === '!') { + value = pluralize(plural, value); + } + // Add zero-padding + if(modifier === '') { + if(value < 10) { + value = '0' + value.toString(); + } + } + // Replace the directive + format = format.replace(regexp, value.toString()); + } + } + } + format = format.replace(/%%/, '%'); + return format; + }; + } + // Pluralize + function pluralize(format, count) { + var plural = 's', singular = ''; + if(format) { + format = format.replace(/(:|;|\s)/gi, '').split(/\,/); + if(format.length === 1) { + plural = format[0]; + } else { + singular = format[0]; + plural = format[1]; + } + } + // Fix #187 + if(Math.abs(count) > 1) { + return plural; + } else { + return singular; + } + } + // The Final Countdown + var Countdown = function(el, finalDate, options) { + this.el = el; + this.$el = $(el); + this.interval = null; + this.offset = {}; + this.options = $.extend({}, defaultOptions); + // console.log(this.options); + // This helper variable is necessary to mimick the previous check for an + // event listener on this.$el. Because of the event loop there might not + // be a registered event listener during the first tick. In order to work + // as expected a second tick is necessary, so that the events can be fired + // and handled properly. + this.firstTick = true; + // Register this instance + this.instanceNumber = instances.length; + instances.push(this); + // Save the reference + this.$el.data('countdown-instance', this.instanceNumber); + // Handle options or callback + if (options) { + // Register the callbacks when supplied + if(typeof options === 'function') { + this.$el.on('update.countdown', options); + this.$el.on('stoped.countdown', options); + this.$el.on('finish.countdown', options); + } else { + this.options = $.extend({}, defaultOptions, options); + } + } + // Set the final date and start + this.setFinalDate(finalDate); + // Starts the countdown automatically unless it's defered, + // Issue #198 + if (this.options.defer === false) { + this.start(); + } + }; + $.extend(Countdown.prototype, { + start: function() { + if(this.interval !== null) { + clearInterval(this.interval); + } + var self = this; + this.update(); + this.interval = setInterval(function() { + self.update.call(self); + }, this.options.precision); + }, + stop: function() { + clearInterval(this.interval); + this.interval = null; + this.dispatchEvent('stoped'); + }, + toggle: function() { + if (this.interval) { + this.stop(); + } else { + this.start(); + } + }, + pause: function() { + this.stop(); + }, + resume: function() { + this.start(); + }, + remove: function() { + this.stop.call(this); + instances[this.instanceNumber] = null; + // Reset the countdown instance under data attr (Thanks to @assiotis) + delete this.$el.data().countdownInstance; + }, + setFinalDate: function(value) { + this.finalDate = parseDateString(value); // Cast the given date + }, + update: function() { + // Stop if dom is not in the html (Thanks to @dleavitt) + if(this.$el.closest('html').length === 0) { + this.remove(); + return; + } + var now = new Date(), + newTotalSecsLeft; + // Create an offset date object + newTotalSecsLeft = this.finalDate.getTime() - now.getTime(); // Millisecs + // Calculate the remaining time + newTotalSecsLeft = Math.ceil(newTotalSecsLeft / 1000); // Secs + // If is not have to elapse set the finish + newTotalSecsLeft = !this.options.elapse && newTotalSecsLeft < 0 ? 0 : + Math.abs(newTotalSecsLeft); + // Do not proceed to calculation if the seconds have not changed or + // during the first tick + if (this.totalSecsLeft === newTotalSecsLeft || this.firstTick) { + this.firstTick = false; + return; + } else { + this.totalSecsLeft = newTotalSecsLeft; + } + // Check if the countdown has elapsed + this.elapsed = (now >= this.finalDate); + // Calculate the offsets + this.offset = { + seconds : this.totalSecsLeft % 60, + minutes : Math.floor(this.totalSecsLeft / 60) % 60, + hours : Math.floor(this.totalSecsLeft / 60 / 60) % 24, + days : Math.floor(this.totalSecsLeft / 60 / 60 / 24) % 7, + daysToWeek : Math.floor(this.totalSecsLeft / 60 / 60 / 24) % 7, + daysToMonth : Math.floor(this.totalSecsLeft / 60 / 60 / 24 % 30.4368), + weeks : Math.floor(this.totalSecsLeft / 60 / 60 / 24 / 7), + weeksToMonth: Math.floor(this.totalSecsLeft / 60 / 60 / 24 / 7) % 4, + months : Math.floor(this.totalSecsLeft / 60 / 60 / 24 / 30.4368), + years : Math.abs(this.finalDate.getFullYear()-now.getFullYear()), + totalDays : Math.floor(this.totalSecsLeft / 60 / 60 / 24), + totalHours : Math.floor(this.totalSecsLeft / 60 / 60), + totalMinutes: Math.floor(this.totalSecsLeft / 60), + totalSeconds: this.totalSecsLeft + }; + // Dispatch an event + if(!this.options.elapse && this.totalSecsLeft === 0) { + this.stop(); + this.dispatchEvent('finish'); + } else { + this.dispatchEvent('update'); + } + }, + dispatchEvent: function(eventName) { + var event = $.Event(eventName + '.countdown'); + event.finalDate = this.finalDate; + event.elapsed = this.elapsed; + event.offset = $.extend({}, this.offset); + event.strftime = strftime(this.offset); + this.$el.trigger(event); + } + }); + // Register the jQuery selector actions + $.fn.countdown = function() { + var argumentsArray = Array.prototype.slice.call(arguments, 0); + return this.each(function() { + // If no data was set, jQuery.data returns undefined + var instanceNumber = $(this).data('countdown-instance'); + // Verify if we already have a countdown for this node ... + // Fix issue #22 (Thanks to @romanbsd) + if (instanceNumber !== undefined) { + var instance = instances[instanceNumber], + method = argumentsArray[0]; + // If method exists in the prototype execute + if(Countdown.prototype.hasOwnProperty(method)) { + instance[method].apply(instance, argumentsArray.slice(1)); + // If method look like a date try to set a new final date + } else if(String(method).match(/^[$A-Z_][0-9A-Z_$]*$/i) === null) { + instance.setFinalDate.call(instance, method); + // Allow plugin to restart after finished + // Fix issue #38 (thanks to @yaoazhen) + instance.start(); + } else { + $.error('Method %s does not exist on jQuery.countdown' + .replace(/\%s/gi, method)); + } + } else { + // ... if not we create an instance + new Countdown(this, argumentsArray[0], argumentsArray[1]); + } + }); + }; +}); \ No newline at end of file diff --git a/js/countdown/index.htm b/js/countdown/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/js/countdown/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/js/countdown/moment-timezone-with-data.js b/js/countdown/moment-timezone-with-data.js new file mode 100644 index 0000000..09c259b --- /dev/null +++ b/js/countdown/moment-timezone-with-data.js @@ -0,0 +1,1204 @@ +//! moment-timezone.js +//! version : 0.5.14 +//! Copyright (c) JS Foundation and other contributors +//! license : MIT +//! github.com/moment/moment-timezone + +(function (root, factory) { + "use strict"; + + /*global define*/ + if (typeof define === 'function' && define.amd) { + define(['moment'], factory); // AMD + } else if (typeof module === 'object' && module.exports) { + module.exports = factory(require('moment')); // Node + } else { + factory(root.moment); // Browser + } +}(this, function (moment) { + "use strict"; + + // Do not load moment-timezone a second time. + // if (moment.tz !== undefined) { + // logError('Moment Timezone ' + moment.tz.version + ' was already loaded ' + (moment.tz.dataVersion ? 'with data from ' : 'without any data') + moment.tz.dataVersion); + // return moment; + // } + + var VERSION = "0.5.14", + zones = {}, + links = {}, + names = {}, + guesses = {}, + cachedGuess, + + momentVersion = moment.version.split('.'), + major = +momentVersion[0], + minor = +momentVersion[1]; + + // Moment.js version check + if (major < 2 || (major === 2 && minor < 6)) { + logError('Moment Timezone requires Moment.js >= 2.6.0. You are using Moment.js ' + moment.version + '. See momentjs.com'); + } + + /************************************ + Unpacking + ************************************/ + + function charCodeToInt(charCode) { + if (charCode > 96) { + return charCode - 87; + } else if (charCode > 64) { + return charCode - 29; + } + return charCode - 48; + } + + function unpackBase60(string) { + var i = 0, + parts = string.split('.'), + whole = parts[0], + fractional = parts[1] || '', + multiplier = 1, + num, + out = 0, + sign = 1; + + // handle negative numbers + if (string.charCodeAt(0) === 45) { + i = 1; + sign = -1; + } + + // handle digits before the decimal + for (i; i < whole.length; i++) { + num = charCodeToInt(whole.charCodeAt(i)); + out = 60 * out + num; + } + + // handle digits after the decimal + for (i = 0; i < fractional.length; i++) { + multiplier = multiplier / 60; + num = charCodeToInt(fractional.charCodeAt(i)); + out += num * multiplier; + } + + return out * sign; + } + + function arrayToInt (array) { + for (var i = 0; i < array.length; i++) { + array[i] = unpackBase60(array[i]); + } + } + + function intToUntil (array, length) { + for (var i = 0; i < length; i++) { + array[i] = Math.round((array[i - 1] || 0) + (array[i] * 60000)); // minutes to milliseconds + } + + array[length - 1] = Infinity; + } + + function mapIndices (source, indices) { + var out = [], i; + + for (i = 0; i < indices.length; i++) { + out[i] = source[indices[i]]; + } + + return out; + } + + function unpack (string) { + var data = string.split('|'), + offsets = data[2].split(' '), + indices = data[3].split(''), + untils = data[4].split(' '); + + arrayToInt(offsets); + arrayToInt(indices); + arrayToInt(untils); + + intToUntil(untils, indices.length); + + return { + name : data[0], + abbrs : mapIndices(data[1].split(' '), indices), + offsets : mapIndices(offsets, indices), + untils : untils, + population : data[5] | 0 + }; + } + + /************************************ + Zone object + ************************************/ + + function Zone (packedString) { + if (packedString) { + this._set(unpack(packedString)); + } + } + + Zone.prototype = { + _set : function (unpacked) { + this.name = unpacked.name; + this.abbrs = unpacked.abbrs; + this.untils = unpacked.untils; + this.offsets = unpacked.offsets; + this.population = unpacked.population; + }, + + _index : function (timestamp) { + var target = +timestamp, + untils = this.untils, + i; + + for (i = 0; i < untils.length; i++) { + if (target < untils[i]) { + return i; + } + } + }, + + parse : function (timestamp) { + var target = +timestamp, + offsets = this.offsets, + untils = this.untils, + max = untils.length - 1, + offset, offsetNext, offsetPrev, i; + + for (i = 0; i < max; i++) { + offset = offsets[i]; + offsetNext = offsets[i + 1]; + offsetPrev = offsets[i ? i - 1 : i]; + + if (offset < offsetNext && tz.moveAmbiguousForward) { + offset = offsetNext; + } else if (offset > offsetPrev && tz.moveInvalidForward) { + offset = offsetPrev; + } + + if (target < untils[i] - (offset * 60000)) { + return offsets[i]; + } + } + + return offsets[max]; + }, + + abbr : function (mom) { + return this.abbrs[this._index(mom)]; + }, + + offset : function (mom) { + logError("zone.offset has been deprecated in favor of zone.utcOffset"); + return this.offsets[this._index(mom)]; + }, + + utcOffset : function (mom) { + return this.offsets[this._index(mom)]; + } + }; + + /************************************ + Current Timezone + ************************************/ + + function OffsetAt(at) { + var timeString = at.toTimeString(); + var abbr = timeString.match(/\([a-z ]+\)/i); + if (abbr && abbr[0]) { + // 17:56:31 GMT-0600 (CST) + // 17:56:31 GMT-0600 (Central Standard Time) + abbr = abbr[0].match(/[A-Z]/g); + abbr = abbr ? abbr.join('') : undefined; + } else { + // 17:56:31 CST + // 17:56:31 GMT+0800 (å°åŒ—標準時間) + abbr = timeString.match(/[A-Z]{3,5}/g); + abbr = abbr ? abbr[0] : undefined; + } + + if (abbr === 'GMT') { + abbr = undefined; + } + + this.at = +at; + this.abbr = abbr; + this.offset = at.getTimezoneOffset(); + } + + function ZoneScore(zone) { + this.zone = zone; + this.offsetScore = 0; + this.abbrScore = 0; + } + + ZoneScore.prototype.scoreOffsetAt = function (offsetAt) { + this.offsetScore += Math.abs(this.zone.utcOffset(offsetAt.at) - offsetAt.offset); + if (this.zone.abbr(offsetAt.at).replace(/[^A-Z]/g, '') !== offsetAt.abbr) { + this.abbrScore++; + } + }; + + function findChange(low, high) { + var mid, diff; + + while ((diff = ((high.at - low.at) / 12e4 | 0) * 6e4)) { + mid = new OffsetAt(new Date(low.at + diff)); + if (mid.offset === low.offset) { + low = mid; + } else { + high = mid; + } + } + + return low; + } + + function userOffsets() { + var startYear = new Date().getFullYear() - 2, + last = new OffsetAt(new Date(startYear, 0, 1)), + offsets = [last], + change, next, i; + + for (i = 1; i < 48; i++) { + next = new OffsetAt(new Date(startYear, i, 1)); + if (next.offset !== last.offset) { + change = findChange(last, next); + offsets.push(change); + offsets.push(new OffsetAt(new Date(change.at + 6e4))); + } + last = next; + } + + for (i = 0; i < 4; i++) { + offsets.push(new OffsetAt(new Date(startYear + i, 0, 1))); + offsets.push(new OffsetAt(new Date(startYear + i, 6, 1))); + } + + return offsets; + } + + function sortZoneScores (a, b) { + if (a.offsetScore !== b.offsetScore) { + return a.offsetScore - b.offsetScore; + } + if (a.abbrScore !== b.abbrScore) { + return a.abbrScore - b.abbrScore; + } + return b.zone.population - a.zone.population; + } + + function addToGuesses (name, offsets) { + var i, offset; + arrayToInt(offsets); + for (i = 0; i < offsets.length; i++) { + offset = offsets[i]; + guesses[offset] = guesses[offset] || {}; + guesses[offset][name] = true; + } + } + + function guessesForUserOffsets (offsets) { + var offsetsLength = offsets.length, + filteredGuesses = {}, + out = [], + i, j, guessesOffset; + + for (i = 0; i < offsetsLength; i++) { + guessesOffset = guesses[offsets[i].offset] || {}; + for (j in guessesOffset) { + if (guessesOffset.hasOwnProperty(j)) { + filteredGuesses[j] = true; + } + } + } + + for (i in filteredGuesses) { + if (filteredGuesses.hasOwnProperty(i)) { + out.push(names[i]); + } + } + + return out; + } + + function rebuildGuess () { + + // use Intl API when available and returning valid time zone + try { + var intlName = Intl.DateTimeFormat().resolvedOptions().timeZone; + if (intlName && intlName.length > 3) { + var name = names[normalizeName(intlName)]; + if (name) { + return name; + } + logError("Moment Timezone found " + intlName + " from the Intl api, but did not have that data loaded."); + } + } catch (e) { + // Intl unavailable, fall back to manual guessing. + } + + var offsets = userOffsets(), + offsetsLength = offsets.length, + guesses = guessesForUserOffsets(offsets), + zoneScores = [], + zoneScore, i, j; + + for (i = 0; i < guesses.length; i++) { + zoneScore = new ZoneScore(getZone(guesses[i]), offsetsLength); + for (j = 0; j < offsetsLength; j++) { + zoneScore.scoreOffsetAt(offsets[j]); + } + zoneScores.push(zoneScore); + } + + zoneScores.sort(sortZoneScores); + + return zoneScores.length > 0 ? zoneScores[0].zone.name : undefined; + } + + function guess (ignoreCache) { + if (!cachedGuess || ignoreCache) { + cachedGuess = rebuildGuess(); + } + return cachedGuess; + } + + /************************************ + Global Methods + ************************************/ + + function normalizeName (name) { + return (name || '').toLowerCase().replace(/\//g, '_'); + } + + function addZone (packed) { + var i, name, split, normalized; + + if (typeof packed === "string") { + packed = [packed]; + } + + for (i = 0; i < packed.length; i++) { + split = packed[i].split('|'); + name = split[0]; + normalized = normalizeName(name); + zones[normalized] = packed[i]; + names[normalized] = name; + addToGuesses(normalized, split[2].split(' ')); + } + } + + function getZone (name, caller) { + name = normalizeName(name); + + var zone = zones[name]; + var link; + + if (zone instanceof Zone) { + return zone; + } + + if (typeof zone === 'string') { + zone = new Zone(zone); + zones[name] = zone; + return zone; + } + + // Pass getZone to prevent recursion more than 1 level deep + if (links[name] && caller !== getZone && (link = getZone(links[name], getZone))) { + zone = zones[name] = new Zone(); + zone._set(link); + zone.name = names[name]; + return zone; + } + + return null; + } + + function getNames () { + var i, out = []; + + for (i in names) { + if (names.hasOwnProperty(i) && (zones[i] || zones[links[i]]) && names[i]) { + out.push(names[i]); + } + } + + return out.sort(); + } + + function addLink (aliases) { + var i, alias, normal0, normal1; + + if (typeof aliases === "string") { + aliases = [aliases]; + } + + for (i = 0; i < aliases.length; i++) { + alias = aliases[i].split('|'); + + normal0 = normalizeName(alias[0]); + normal1 = normalizeName(alias[1]); + + links[normal0] = normal1; + names[normal0] = alias[0]; + + links[normal1] = normal0; + names[normal1] = alias[1]; + } + } + + function loadData (data) { + addZone(data.zones); + addLink(data.links); + tz.dataVersion = data.version; + } + + function zoneExists (name) { + if (!zoneExists.didShowError) { + zoneExists.didShowError = true; + logError("moment.tz.zoneExists('" + name + "') has been deprecated in favor of !moment.tz.zone('" + name + "')"); + } + return !!getZone(name); + } + + function needsOffset (m) { + var isUnixTimestamp = (m._f === 'X' || m._f === 'x'); + return !!(m._a && (m._tzm === undefined) && !isUnixTimestamp); + } + + function logError (message) { + if (typeof console !== 'undefined' && typeof console.error === 'function') { + console.error(message); + } + } + + /************************************ + moment.tz namespace + ************************************/ + + function tz (input) { + var args = Array.prototype.slice.call(arguments, 0, -1), + name = arguments[arguments.length - 1], + zone = getZone(name), + out = moment.utc.apply(null, args); + + if (zone && !moment.isMoment(input) && needsOffset(out)) { + out.add(zone.parse(out), 'minutes'); + } + + out.tz(name); + + return out; + } + + tz.version = VERSION; + tz.dataVersion = ''; + tz._zones = zones; + tz._links = links; + tz._names = names; + tz.add = addZone; + tz.link = addLink; + tz.load = loadData; + tz.zone = getZone; + tz.zoneExists = zoneExists; // deprecated in 0.1.0 + tz.guess = guess; + tz.names = getNames; + tz.Zone = Zone; + tz.unpack = unpack; + tz.unpackBase60 = unpackBase60; + tz.needsOffset = needsOffset; + tz.moveInvalidForward = true; + tz.moveAmbiguousForward = false; + + /************************************ + Interface with Moment.js + ************************************/ + + var fn = moment.fn; + + moment.tz = tz; + + moment.defaultZone = null; + + moment.updateOffset = function (mom, keepTime) { + var zone = moment.defaultZone, + offset; + + if (mom._z === undefined) { + if (zone && needsOffset(mom) && !mom._isUTC) { + mom._d = moment.utc(mom._a)._d; + mom.utc().add(zone.parse(mom), 'minutes'); + } + mom._z = zone; + } + if (mom._z) { + offset = mom._z.utcOffset(mom); + if (Math.abs(offset) < 16) { + offset = offset / 60; + } + if (mom.utcOffset !== undefined) { + mom.utcOffset(-offset, keepTime); + } else { + mom.zone(offset, keepTime); + } + } + }; + + fn.tz = function (name, keepTime) { + if (name) { + this._z = getZone(name); + if (this._z) { + moment.updateOffset(this, keepTime); + } else { + logError("Moment Timezone has no data for " + name + ". See http://momentjs.com/timezone/docs/#/data-loading/."); + } + return this; + } + if (this._z) { return this._z.name; } + }; + + function abbrWrap (old) { + return function () { + if (this._z) { return this._z.abbr(this); } + return old.call(this); + }; + } + + function resetZoneWrap (old) { + return function () { + this._z = null; + return old.apply(this, arguments); + }; + } + + fn.zoneName = abbrWrap(fn.zoneName); + fn.zoneAbbr = abbrWrap(fn.zoneAbbr); + fn.utc = resetZoneWrap(fn.utc); + + moment.tz.setDefault = function(name) { + if (major < 2 || (major === 2 && minor < 9)) { + logError('Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js ' + moment.version + '.'); + } + moment.defaultZone = name ? getZone(name) : null; + return moment; + }; + + // Cloning a moment should include the _z property. + var momentProperties = moment.momentProperties; + if (Object.prototype.toString.call(momentProperties) === '[object Array]') { + // moment 2.8.1+ + momentProperties.push('_z'); + momentProperties.push('_a'); + } else if (momentProperties) { + // moment 2.7.0 + momentProperties._z = null; + } + + loadData({ + "version": "2017c", + "zones": [ + "Africa/Abidjan|LMT GMT|g.8 0|01|-2ldXH.Q|48e5", + "Africa/Accra|LMT GMT +0020|.Q 0 -k|012121212121212121212121212121212121212121212121|-26BbX.8 6tzX.8 MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE|41e5", + "Africa/Nairobi|LMT EAT +0230 +0245|-2r.g -30 -2u -2J|01231|-1F3Cr.g 3Dzr.g okMu MFXJ|47e5", + "Africa/Algiers|PMT WET WEST CET CEST|-9.l 0 -10 -10 -20|0121212121212121343431312123431213|-2nco9.l cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 DA0 Imo0 rd0 De0 9Xz0 1fb0 1ap0 16K0 2yo0 mEp0 hwL0 jxA0 11A0 dDd0 17b0 11B0 1cN0 2Dy0 1cN0 1fB0 1cL0|26e5", + "Africa/Lagos|LMT WAT|-d.A -10|01|-22y0d.A|17e6", + "Africa/Bissau|LMT -01 GMT|12.k 10 0|012|-2ldWV.E 2xonV.E|39e4", + "Africa/Maputo|LMT CAT|-2a.k -20|01|-2GJea.k|26e5", + "Africa/Cairo|EET EEST|-20 -30|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1bIO0 vb0 1ip0 11z0 1iN0 1nz0 12p0 1pz0 10N0 1pz0 16p0 1jz0 s3d0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1WL0 rd0 1Rz0 wp0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1qL0 Xd0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1ny0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 WL0 1qN0 Rb0 1wp0 On0 1zd0 Lz0 1EN0 Fb0 c10 8n0 8Nd0 gL0 e10 mn0|15e6", + "Africa/Casablanca|LMT WET WEST CET|u.k 0 -10 -10|0121212121212121213121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2gMnt.E 130Lt.E rb0 Dd0 dVb0 b6p0 TX0 EoB0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4mn0 SyN0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 Rc0 11A0 e00 e00 U00 11A0 8o0 e00 11A0 11A0 5A0 e00 17c0 1fA0 1a00 1a00 1fA0 17c0 1io0 14o0 1lc0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1lc0 14o0 1fA0|32e5", + "Africa/Ceuta|WET WEST CET CEST|0 -10 -10 -20|010101010101010101010232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-25KN0 11z0 drd0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1y7o0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4VB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|85e3", + "Africa/El_Aaiun|LMT -01 WET WEST|Q.M 10 0 -10|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1rDz7.c 1GVA7.c 6L0 AL0 1Nd0 XX0 1Cp0 pz0 1cBB0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 Rc0 11A0 e00 e00 U00 11A0 8o0 e00 11A0 11A0 5A0 e00 17c0 1fA0 1a00 1a00 1fA0 17c0 1io0 14o0 1lc0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1lc0 14o0 1fA0|20e4", + "Africa/Johannesburg|SAST SAST SAST|-1u -20 -30|012121|-2GJdu 1Ajdu 1cL0 1cN0 1cL0|84e5", + "Africa/Juba|LMT CAT CAST EAT|-26.s -20 -30 -30|01212121212121212121212121212121213|-1yW26.s 1zK06.s 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0", + "Africa/Khartoum|LMT CAT CAST EAT|-2a.8 -20 -30 -30|012121212121212121212121212121212131|-1yW2a.8 1zK0a.8 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 HjL0|51e5", + "Africa/Monrovia|MMT MMT GMT|H.8 I.u 0|012|-23Lzg.Q 28G01.m|11e5", + "Africa/Ndjamena|LMT WAT WAST|-10.c -10 -20|0121|-2le10.c 2J3c0.c Wn0|13e5", + "Africa/Tripoli|LMT CET CEST EET|-Q.I -10 -20 -20|012121213121212121212121213123123|-21JcQ.I 1hnBQ.I vx0 4iP0 xx0 4eN0 Bb0 7ip0 U0n0 A10 1db0 1cN0 1db0 1dd0 1db0 1eN0 1bb0 1e10 1cL0 1c10 1db0 1dd0 1db0 1cN0 1db0 1q10 fAn0 1ep0 1db0 AKq0 TA0 1o00|11e5", + "Africa/Tunis|PMT CET CEST|-9.l -10 -20|0121212121212121212121212121212121|-2nco9.l 18pa9.l 1qM0 DA0 3Tc0 11B0 1ze0 WM0 7z0 3d0 14L0 1cN0 1f90 1ar0 16J0 1gXB0 WM0 1rA0 11c0 nwo0 Ko0 1cM0 1cM0 1rA0 10M0 zuM0 10N0 1aN0 1qM0 WM0 1qM0 11A0 1o00|20e5", + "Africa/Windhoek|+0130 SAST SAST CAT WAT WAST|-1u -20 -30 -20 -10 -20|01213454545454545454545454545454545454545454545454543|-2GJdu 1Ajdu 1cL0 1SqL0 9Io0 16P0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0|32e4", + "America/Adak|NST NWT NPT BST BDT AHST HST HDT|b0 a0 a0 b0 a0 a0 a0 90|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17SX0 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|326", + "America/Anchorage|AST AWT APT AHST AHDT YST AKST AKDT|a0 90 90 a0 90 90 90 80|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17T00 8wX0 iA0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|30e4", + "America/Port_of_Spain|LMT AST|46.4 40|01|-2kNvR.U|43e3", + "America/Araguaina|LMT -03 -02|3c.M 30 20|0121212121212121212121212121212121212121212121212121|-2glwL.c HdKL.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 ny10 Lz0|14e4", + "America/Argentina/Buenos_Aires|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 A4p0 uL0 1qN0 WL0", + "America/Argentina/Catamarca|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323132321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 7B0 8zb0 uL0", + "America/Argentina/Cordoba|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323132323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0 1qN0 WL0", + "America/Argentina/Jujuy|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323121323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1ze0 TX0 1ld0 WK0 1wp0 TX0 A4p0 uL0", + "America/Argentina/La_Rioja|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0", + "America/Argentina/Mendoza|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232312121321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1u20 SL0 1vd0 Tb0 1wp0 TW0 ri10 Op0 7TX0 uL0", + "America/Argentina/Rio_Gallegos|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0", + "America/Argentina/Salta|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0", + "America/Argentina/San_Juan|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rld0 m10 8lb0 uL0", + "America/Argentina/San_Luis|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323121212321212|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 XX0 1q20 SL0 AN0 vDb0 m10 8lb0 8L0 jd0 1qN0 WL0 1qN0", + "America/Argentina/Tucuman|CMT -04 -03 -02|4g.M 40 30 20|0121212121212121212121212121212121212121212323232313232123232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 4N0 8BX0 uL0 1qN0 WL0", + "America/Argentina/Ushuaia|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rkN0 8p0 8zb0 uL0", + "America/Curacao|LMT -0430 AST|4z.L 4u 40|012|-2kV7o.d 28KLS.d|15e4", + "America/Asuncion|AMT -04 -03|3O.E 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-1x589.k 1DKM9.k 3CL0 3Dd0 10L0 1pB0 10n0 1pB0 10n0 1pB0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1lB0 14n0 1dd0 1cL0 1fd0 WL0 1rd0 1aL0 1dB0 Xz0 1qp0 Xb0 1qN0 10L0 1rB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 WN0 1qL0 11B0 1nX0 1ip0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 TX0 1tB0 19X0 1a10 1fz0 1a10 1fz0 1cN0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0|28e5", + "America/Atikokan|CST CDT CWT CPT EST|60 50 50 50 50|0101234|-25TQ0 1in0 Rnb0 3je0 8x30 iw0|28e2", + "America/Bahia|LMT -03 -02|2y.4 30 20|01212121212121212121212121212121212121212121212121212121212121|-2glxp.U HdLp.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 l5B0 Rb0|27e5", + "America/Bahia_Banderas|LMT MST CST PST MDT CDT|71 70 60 80 60 50|0121212131414141414141414141414141414152525252525252525252525252525252525252525252525252525252|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nW0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|84e3", + "America/Barbados|LMT BMT AST ADT|3W.t 3W.t 40 30|01232323232|-1Q0I1.v jsM0 1ODC1.v IL0 1ip0 17b0 1ip0 17b0 1ld0 13b0|28e4", + "America/Belem|LMT -03 -02|3d.U 30 20|012121212121212121212121212121|-2glwK.4 HdKK.4 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|20e5", + "America/Belize|LMT CST -0530 CDT|5Q.M 60 5u 50|01212121212121212121212121212121212121212121212121213131|-2kBu7.c fPA7.c Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1f0Mu qn0 lxB0 mn0|57e3", + "America/Blanc-Sablon|AST ADT AWT APT|40 30 30 30|010230|-25TS0 1in0 UGp0 8x50 iu0|11e2", + "America/Boa_Vista|LMT -04 -03|42.E 40 30|0121212121212121212121212121212121|-2glvV.k HdKV.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 smp0 WL0 1tB0 2L0|62e2", + "America/Bogota|BMT -05 -04|4U.g 50 40|0121|-2eb73.I 38yo3.I 2en0|90e5", + "America/Boise|PST PDT MST MWT MPT MDT|80 70 70 60 60 60|0101023425252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-261q0 1nX0 11B0 1nX0 8C10 JCL0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 Dd0 1Kn0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e4", + "America/Cambridge_Bay|-00 MST MWT MPT MDDT MDT CST CDT EST|0 70 60 60 50 60 60 50 50|0123141515151515151515151515151515151515151515678651515151515151515151515151515151515151515151515151515151515151515151515151|-21Jc0 RO90 8x20 ix0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11A0 1nX0 2K0 WQ0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e2", + "America/Campo_Grande|LMT -04 -03|3C.s 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2glwl.w HdLl.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0|77e4", + "America/Cancun|LMT CST EST EDT CDT|5L.4 60 50 40 50|0123232341414141414141414141414141414141412|-1UQG0 2q2o0 yLB0 1lb0 14p0 1lb0 14p0 Lz0 xB0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 Dd0|63e4", + "America/Caracas|CMT -0430 -04|4r.E 4u 40|01212|-2kV7w.k 28KM2.k 1IwOu kqo0|29e5", + "America/Cayenne|LMT -04 -03|3t.k 40 30|012|-2mrwu.E 2gWou.E|58e3", + "America/Panama|CMT EST|5j.A 50|01|-2uduE.o|15e5", + "America/Chicago|CST CDT EST CWT CPT|60 50 50 50 50|01010101010101010101010101010101010102010101010103401010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 1wp0 TX0 WN0 1qL0 1cN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 11B0 1Hz0 14p0 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|92e5", + "America/Chihuahua|LMT MST CST CDT MDT|74.k 70 60 50 60|0121212323241414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|81e4", + "America/Costa_Rica|SJMT CST CDT|5A.d 60 50|0121212121|-1Xd6n.L 2lu0n.L Db0 1Kp0 Db0 pRB0 15b0 1kp0 mL0|12e5", + "America/Creston|MST PST|70 80|010|-29DR0 43B0|53e2", + "America/Cuiaba|LMT -04 -03|3I.k 40 30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2glwf.E HdLf.E 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 4a10 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0|54e4", + "America/Danmarkshavn|LMT -03 -02 GMT|1e.E 30 20 0|01212121212121212121212121212121213|-2a5WJ.k 2z5fJ.k 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 DC0|8", + "America/Dawson|YST YDT YWT YPT YDDT PST PDT|90 80 80 80 70 80 70|0101023040565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-25TN0 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 jrA0 fNd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|13e2", + "America/Dawson_Creek|PST PDT PWT PPT MST|80 70 70 70 70|0102301010101010101010101010101010101010101010101010101014|-25TO0 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 ML0|12e3", + "America/Denver|MST MDT MWT MPT|70 60 60 60|01010101023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261r0 1nX0 11B0 1nX0 11B0 1qL0 WN0 mn0 Ord0 8x20 ix0 LCN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e5", + "America/Detroit|LMT CST EST EWT EPT EDT|5w.b 60 50 40 40 40|012342525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2Cgir.N peqr.N 156L0 8x40 iv0 6fd0 11z0 XQp0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e5", + "America/Edmonton|LMT MST MDT MWT MPT|7x.Q 70 60 60 60|01212121212121341212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2yd4q.8 shdq.8 1in0 17d0 hz0 2dB0 1fz0 1a10 11z0 1qN0 WL0 1qN0 11z0 IGN0 8x20 ix0 3NB0 11z0 LFB0 1cL0 3Cp0 1cL0 66N0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|10e5", + "America/Eirunepe|LMT -05 -04|4D.s 50 40|0121212121212121212121212121212121|-2glvk.w HdLk.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0 yTd0 d5X0|31e3", + "America/El_Salvador|LMT CST CDT|5U.M 60 50|012121|-1XiG3.c 2Fvc3.c WL0 1qN0 WL0|11e5", + "America/Tijuana|LMT MST PST PDT PWT PPT|7M.4 70 80 70 70 70|012123245232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQE0 4PX0 8mM0 8lc0 SN0 1cL0 pHB0 83r0 zI0 5O10 1Rz0 cOO0 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 BUp0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|20e5", + "America/Fort_Nelson|PST PDT PWT PPT MST|80 70 70 70 70|01023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010104|-25TO0 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0|39e2", + "America/Fort_Wayne|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|010101023010101010101010101040454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 QI10 Db0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 5Tz0 1o10 qLb0 1cL0 1cN0 1cL0 1qhd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/Fortaleza|LMT -03 -02|2y 30 20|0121212121212121212121212121212121212121|-2glxq HdLq 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 5z0 2mN0 On0|34e5", + "America/Glace_Bay|LMT AST ADT AWT APT|3X.M 40 30 30 30|012134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsI0.c CwO0.c 1in0 UGp0 8x50 iu0 iq10 11z0 Jg10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3", + "America/Godthab|LMT -03 -02|3q.U 30 20|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5Ux.4 2z5dx.4 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e3", + "America/Goose_Bay|NST NDT NST NDT NWT NPT AST ADT ADDT|3u.Q 2u.Q 3u 2u 2u 2u 40 30 20|010232323232323245232323232323232323232323232323232323232326767676767676767676767676767676767676767676768676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-25TSt.8 1in0 DXb0 2HbX.8 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 S10 g0u 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|76e2", + "America/Grand_Turk|KMT EST EDT AST|57.b 50 40 40|01212121212121212121212121212121212121212121212121212121212121212121212121232121212121212121212121212121212121212121|-2l1uQ.N 2HHBQ.N 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 5Ip0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e2", + "America/Guatemala|LMT CST CDT|62.4 60 50|0121212121|-24KhV.U 2efXV.U An0 mtd0 Nz0 ifB0 17b0 zDB0 11z0|13e5", + "America/Guayaquil|QMT -05 -04|5e 50 40|0121|-1yVSK 2uILK rz0|27e5", + "America/Guyana|LMT -0345 -03 -04|3Q.E 3J 30 40|0123|-2dvU7.k 2r6LQ.k Bxbf|80e4", + "America/Halifax|LMT AST ADT AWT APT|4e.o 40 30 30 30|0121212121212121212121212121212121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsHJ.A xzzJ.A 1db0 3I30 1in0 3HX0 IL0 1E10 ML0 1yN0 Pb0 1Bd0 Mn0 1Bd0 Rz0 1w10 Xb0 1w10 LX0 1w10 Xb0 1w10 Lz0 1C10 Jz0 1E10 OL0 1yN0 Un0 1qp0 Xb0 1qp0 11X0 1w10 Lz0 1HB0 LX0 1C10 FX0 1w10 Xb0 1qp0 Xb0 1BB0 LX0 1td0 Xb0 1qp0 Xb0 Rf0 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 6i10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|39e4", + "America/Havana|HMT CST CDT|5t.A 50 40|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Meuu.o 72zu.o ML0 sld0 An0 1Nd0 Db0 1Nd0 An0 6Ep0 An0 1Nd0 An0 JDd0 Mn0 1Ap0 On0 1fd0 11X0 1qN0 WL0 1wp0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 14n0 1ld0 14L0 1kN0 15b0 1kp0 1cL0 1cN0 1fz0 1a10 1fz0 1fB0 11z0 14p0 1nX0 11B0 1nX0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 1a10 1in0 1a10 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 17c0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 11A0 6i00 Rc0 1wo0 U00 1tA0 Rc0 1wo0 U00 1wo0 U00 1zc0 U00 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0|21e5", + "America/Hermosillo|LMT MST CST PST MDT|7n.Q 70 60 80 60|0121212131414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0|64e4", + "America/Indiana/Knox|CST CDT CWT CPT EST|60 50 50 50 50|0101023010101010101010101010101010101040101010101010101010101010101010101010101010101010141010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 3Cn0 8wp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 z8o0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/Indiana/Marengo|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101023010101010101010104545454545414545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 dyN0 11z0 6fd0 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1e6p0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/Indiana/Petersburg|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010104010101010101010101010141014545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 3Fb0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 19co0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/Indiana/Tell_City|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010101010454541010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 g0p0 11z0 1o10 11z0 1qL0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 caL0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/Indiana/Vevay|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|010102304545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 kPB0 Awn0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1lnd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/Indiana/Vincennes|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010101010454541014545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 g0p0 11z0 1o10 11z0 1qL0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 caL0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/Indiana/Winamac|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010101010101010454541054545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1za0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/Inuvik|-00 PST PDDT MST MDT|0 80 60 70 60|0121343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-FnA0 tWU0 1fA0 wPe0 2pz0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|35e2", + "America/Iqaluit|-00 EWT EPT EST EDDT EDT CST CDT|0 40 40 50 30 40 60 50|01234353535353535353535353535353535353535353567353535353535353535353535353535353535353535353535353535353535353535353535353|-16K00 7nX0 iv0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|67e2", + "America/Jamaica|KMT EST EDT|57.b 50 40|0121212121212121212121|-2l1uQ.N 2uM1Q.N 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0|94e4", + "America/Juneau|PST PWT PPT PDT YDT YST AKST AKDT|80 70 70 70 80 90 90 80|01203030303030303030303030403030356767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cM0 1cM0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|33e3", + "America/Kentucky/Louisville|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101010102301010101010101010101010101454545454545414545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 3Fd0 Nb0 LPd0 11z0 RB0 8x30 iw0 Bb0 10N0 2bB0 8in0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 xz0 gso0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/Kentucky/Monticello|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101023010101010101010101010101010101010101010101010101010101010101010101454545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 SWp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/La_Paz|CMT BOST -04|4w.A 3w.A 40|012|-1x37r.o 13b0|19e5", + "America/Lima|LMT -05 -04|58.A 50 40|0121212121212121|-2tyGP.o 1bDzP.o zX0 1aN0 1cL0 1cN0 1cL0 1PrB0 zX0 1O10 zX0 6Gp0 zX0 98p0 zX0|11e6", + "America/Los_Angeles|PST PDT PWT PPT|80 70 70 70|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261q0 1nX0 11B0 1nX0 SgN0 8x10 iy0 5Wp1 1VaX 3dA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e6", + "America/Maceio|LMT -03 -02|2m.Q 30 20|012121212121212121212121212121212121212121|-2glxB.8 HdLB.8 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 8Q10 WL0 1tB0 5z0 2mN0 On0|93e4", + "America/Managua|MMT CST EST CDT|5J.c 60 50 50|0121313121213131|-1quie.M 1yAMe.M 4mn0 9Up0 Dz0 1K10 Dz0 s3F0 1KH0 DB0 9In0 k8p0 19X0 1o30 11y0|22e5", + "America/Manaus|LMT -04 -03|40.4 40 30|01212121212121212121212121212121|-2glvX.U HdKX.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0|19e5", + "America/Martinique|FFMT AST ADT|44.k 40 30|0121|-2mPTT.E 2LPbT.E 19X0|39e4", + "America/Matamoros|LMT CST CDT|6E 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|45e4", + "America/Mazatlan|LMT MST CST PST MDT|75.E 70 60 80 60|0121212131414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|44e4", + "America/Menominee|CST CDT CWT CPT EST|60 50 50 50 50|01010230101041010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 LCN0 1fz0 6410 9Jb0 1cM0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|85e2", + "America/Merida|LMT CST EST CDT|5W.s 60 50 50|0121313131313131313131313131313131313131313131313131313131313131313131313131313131313131|-1UQG0 2q2o0 2hz0 wu30 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|11e5", + "America/Metlakatla|PST PWT PPT PDT AKST AKDT|80 70 70 70 90 80|0120303030303030303030303030303030454545454545454545454545454545454545454545454|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1hU10 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2", + "America/Mexico_City|LMT MST CST CDT CWT|6A.A 70 60 50 50|012121232324232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 gEn0 TX0 3xd0 Jb0 6zB0 SL0 e5d0 17b0 1Pff0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|20e6", + "America/Miquelon|LMT AST -03 -02|3I.E 40 30 20|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2mKkf.k 2LTAf.k gQ10 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|61e2", + "America/Moncton|EST AST ADT AWT APT|50 40 30 30 30|012121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsH0 CwN0 1in0 zAo0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1K10 Lz0 1zB0 NX0 1u10 Wn0 S20 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14n1 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 ReX 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|64e3", + "America/Monterrey|LMT CST CDT|6F.g 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|41e5", + "America/Montevideo|MMT -0330 -03 -02 -0230|3I.I 3u 30 20 2u|012121212121212121212121213232323232324242423243232323232323232323232323232323232323232|-20UIf.g 8jzJ.g 1cLu 1dcu 1cLu 1dcu 1cLu ircu 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu WLu 1qMu WLu 1qMu 11zu 1o0u 11zu NAu 11bu 2iMu zWu Dq10 19X0 pd0 jz0 cm10 19X0 1fB0 1on0 11d0 1oL0 1nB0 1fzu 1aou 1fzu 1aou 1fzu 3nAu Jb0 3MN0 1SLu 4jzu 2PB0 Lb0 3Dd0 1pb0 ixd0 An0 1MN0 An0 1wp0 On0 1wp0 Rb0 1zd0 On0 1wp0 Rb0 s8p0 1fB0 1ip0 11z0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 11z0|17e5", + "America/Toronto|EST EDT EWT EPT|50 40 40 40|01010101010101010101010101010101010101010101012301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TR0 1in0 11Wu 1nzu 1fD0 WJ0 1wr0 Nb0 1Ap0 On0 1zd0 On0 1wp0 TX0 1tB0 TX0 1tB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 4kM0 8x40 iv0 1o10 11z0 1nX0 11z0 1o10 11z0 1o10 1qL0 11D0 1nX0 11B0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e5", + "America/Nassau|LMT EST EDT|59.u 50 40|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2kNuO.u 26XdO.u 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|24e4", + "America/New_York|EST EDT EWT EPT|50 40 40 40|01010101010101010101010101010101010101010101010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261t0 1nX0 11B0 1nX0 11B0 1qL0 1a10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x40 iv0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e6", + "America/Nipigon|EST EDT EWT EPT|50 40 40 40|010123010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TR0 1in0 Rnb0 3je0 8x40 iv0 19yN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|16e2", + "America/Nome|NST NWT NPT BST BDT YST AKST AKDT|b0 a0 a0 b0 a0 90 90 80|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17SX0 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cl0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|38e2", + "America/Noronha|LMT -02 -01|29.E 20 10|0121212121212121212121212121212121212121|-2glxO.k HdKO.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|30e2", + "America/North_Dakota/Beulah|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101014545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/North_Dakota/Center|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101014545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/North_Dakota/New_Salem|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101454545454545454545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "America/Ojinaga|LMT MST CST CDT MDT|6V.E 70 60 50 60|0121212323241414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e3", + "America/Pangnirtung|-00 AST AWT APT ADDT ADT EDT EST CST CDT|0 40 30 30 20 30 40 50 60 50|012314151515151515151515151515151515167676767689767676767676767676767676767676767676767676767676767676767676767676767676767|-1XiM0 PnG0 8x50 iu0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1o00 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2", + "America/Paramaribo|LMT PMT PMT -0330 -03|3E.E 3E.Q 3E.A 3u 30|01234|-2nDUj.k Wqo0.c qanX.I 1yVXN.o|24e4", + "America/Phoenix|MST MDT MWT|70 60 60|01010202010|-261r0 1nX0 11B0 1nX0 SgN0 4Al1 Ap0 1db0 SWqX 1cL0|42e5", + "America/Port-au-Prince|PPMT EST EDT|4N 50 40|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-28RHb 2FnMb 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14q0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 i6n0 1nX0 11B0 1nX0 d430 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 3iN0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5", + "America/Rio_Branco|LMT -05 -04|4v.c 50 40|01212121212121212121212121212121|-2glvs.M HdLs.M 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0 d5X0|31e4", + "America/Porto_Velho|LMT -04 -03|4f.A 40 30|012121212121212121212121212121|-2glvI.o HdKI.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|37e4", + "America/Puerto_Rico|AST AWT APT|40 30 30|0120|-17lU0 7XT0 iu0|24e5", + "America/Punta_Arenas|SMT -05 -04 -03|4G.K 50 40 30|0102021212121212121232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-2q2jh.e fJAh.e 5knG.K 1Vzh.e jRAG.K 1pbh.e 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 blz0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0", + "America/Rainy_River|CST CDT CWT CPT|60 50 50 50|010123010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TQ0 1in0 Rnb0 3je0 8x30 iw0 19yN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|842", + "America/Rankin_Inlet|-00 CST CDDT CDT EST|0 60 40 50 50|012131313131313131313131313131313131313131313431313131313131313131313131313131313131313131313131313131313131313131313131|-vDc0 keu0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e2", + "America/Recife|LMT -03 -02|2j.A 30 20|0121212121212121212121212121212121212121|-2glxE.o HdLE.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|33e5", + "America/Regina|LMT MST MDT MWT MPT CST|6W.A 70 60 60 60 60|012121212121212121212121341212121212121212121212121215|-2AD51.o uHe1.o 1in0 s2L0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 66N0 1cL0 1cN0 19X0 1fB0 1cL0 1fB0 1cL0 1cN0 1cL0 M30 8x20 ix0 1ip0 1cL0 1ip0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 3NB0 1cL0 1cN0|19e4", + "America/Resolute|-00 CST CDDT CDT EST|0 60 40 50 50|012131313131313131313131313131313131313131313431313131313431313131313131313131313131313131313131313131313131313131313131|-SnA0 GWS0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|229", + "America/Santarem|LMT -04 -03|3C.M 40 30|0121212121212121212121212121212|-2glwl.c HdLl.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0|21e4", + "America/Santiago|SMT -05 -04 -03|4G.K 50 40 30|010202121212121212321232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-2q2jh.e fJAh.e 5knG.K 1Vzh.e jRAG.K 1pbh.e 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 9Bz0 jb0 1oN0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0|62e5", + "America/Santo_Domingo|SDMT EST EDT -0430 AST|4E 50 40 4u 40|01213131313131414|-1ttjk 1lJMk Mn0 6sp0 Lbu 1Cou yLu 1RAu wLu 1QMu xzu 1Q0u xXu 1PAu 13jB0 e00|29e5", + "America/Sao_Paulo|LMT -03 -02|36.s 30 20|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2glwR.w HdKR.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 pTd0 PX0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0|20e6", + "America/Scoresbysund|LMT -02 -01 +00|1r.Q 20 10 0|0121323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2a5Ww.8 2z5ew.8 1a00 1cK0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|452", + "America/Sitka|PST PWT PPT PDT YST AKST AKDT|80 70 70 70 90 90 80|01203030303030303030303030303030345656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|90e2", + "America/St_Johns|NST NDT NST NDT NWT NPT NDDT|3u.Q 2u.Q 3u 2u 2u 2u 1u|01010101010101010101010101010101010102323232323232324523232323232323232323232323232323232323232323232323232323232323232323232323232323232326232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-28oit.8 14L0 1nB0 1in0 1gm0 Dz0 1JB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1fB0 19X0 1fB0 19X0 10O0 eKX.8 19X0 1iq0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4", + "America/Swift_Current|LMT MST MDT MWT MPT CST|7b.k 70 60 60 60 60|012134121212121212121215|-2AD4M.E uHdM.E 1in0 UGp0 8x20 ix0 1o10 17b0 1ip0 11z0 1o10 11z0 1o10 11z0 isN0 1cL0 3Cp0 1cL0 1cN0 11z0 1qN0 WL0 pMp0|16e3", + "America/Tegucigalpa|LMT CST CDT|5M.Q 60 50|01212121|-1WGGb.8 2ETcb.8 WL0 1qN0 WL0 GRd0 AL0|11e5", + "America/Thule|LMT AST ADT|4z.8 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5To.Q 31NBo.Q 1cL0 1cN0 1cL0 1fB0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|656", + "America/Thunder_Bay|CST EST EWT EPT EDT|60 50 40 40 40|0123141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-2q5S0 1iaN0 8x40 iv0 XNB0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4", + "America/Vancouver|PST PDT PWT PPT|80 70 70 70|0102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TO0 1in0 UGp0 8x10 iy0 1o10 17b0 1ip0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5", + "America/Whitehorse|YST YDT YWT YPT YDDT PST PDT|90 80 80 80 70 80 70|0101023040565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-25TN0 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 3NA0 vrd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e3", + "America/Winnipeg|CST CDT CWT CPT|60 50 50 50|010101023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aIi0 WL0 3ND0 1in0 Jap0 Rb0 aCN0 8x30 iw0 1tB0 11z0 1ip0 11z0 1o10 11z0 1o10 11z0 1rd0 10L0 1op0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 1cL0 1cN0 11z0 6i10 WL0 6i10 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|66e4", + "America/Yakutat|YST YWT YPT YDT AKST AKDT|90 80 80 80 90 80|01203030303030303030303030303030304545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-17T10 8x00 iz0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cn0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|642", + "America/Yellowknife|-00 MST MWT MPT MDDT MDT|0 70 60 60 50 60|012314151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151|-1pdA0 hix0 8x20 ix0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3", + "Antarctica/Casey|-00 +08 +11|0 -80 -b0|0121212|-2q00 1DjS0 T90 40P0 KL0 blz0|10", + "Antarctica/Davis|-00 +07 +05|0 -70 -50|01012121|-vyo0 iXt0 alj0 1D7v0 VB0 3Wn0 KN0|70", + "Antarctica/DumontDUrville|-00 +10|0 -a0|0101|-U0o0 cfq0 bFm0|80", + "Antarctica/Macquarie|AEST AEDT -00 +11|-a0 -b0 0 -b0|0102010101010101010101010101010101010101010101010101010101010101010101010101010101010101013|-29E80 19X0 4SL0 1ayy0 Lvs0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0|1", + "Antarctica/Mawson|-00 +06 +05|0 -60 -50|012|-CEo0 2fyk0|60", + "Pacific/Auckland|NZMT NZST NZST NZDT|-bu -cu -c0 -d0|01020202020202020202020202023232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1GCVu Lz0 1tB0 11zu 1o0u 11zu 1o0u 11zu 1o0u 14nu 1lcu 14nu 1lcu 1lbu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1qLu WMu 1qLu 11Au 1n1bu IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|14e5", + "Antarctica/Palmer|-00 -03 -04 -02|0 30 40 20|0121212121213121212121212121212121212121212121212121212121212121212121212121212121|-cao0 nD0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 jsN0 14N0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|40", + "Antarctica/Rothera|-00 -03|0 30|01|gOo0|130", + "Antarctica/Syowa|-00 +03|0 -30|01|-vs00|20", + "Antarctica/Troll|-00 +00 +02|0 0 -20|01212121212121212121212121212121212121212121212121212121212121212121|1puo0 hd0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|40", + "Antarctica/Vostok|-00 +06|0 -60|01|-tjA0|25", + "Europe/Oslo|CET CEST|-10 -20|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2awM0 Qm0 W6o0 5pf0 WM0 1fA0 1cM0 1cM0 1cM0 1cM0 wJc0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1qM0 WM0 zpc0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|62e4", + "Asia/Riyadh|LMT +03|-36.Q -30|01|-TvD6.Q|57e5", + "Asia/Almaty|LMT +05 +06 +07|-57.M -50 -60 -70|012323232323232323232321232323232323232323232323232|-1Pc57.M eUo7.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|15e5", + "Asia/Amman|LMT EET EEST|-2n.I -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1yW2n.I 1HiMn.I KL0 1oN0 11b0 1oN0 11b0 1pd0 1dz0 1cp0 11b0 1op0 11b0 fO10 1db0 1e10 1cL0 1cN0 1cL0 1cN0 1fz0 1pd0 10n0 1ld0 14n0 1hB0 15b0 1ip0 19X0 1cN0 1cL0 1cN0 17b0 1ld0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1So0 y00 1fc0 1dc0 1co0 1dc0 1cM0 1cM0 1cM0 1o00 11A0 1lc0 17c0 1cM0 1cM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 4bX0 Dd0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|25e5", + "Asia/Anadyr|LMT +12 +13 +14 +11|-bN.U -c0 -d0 -e0 -b0|01232121212121212121214121212121212121212121212121212121212141|-1PcbN.U eUnN.U 23CL0 1db0 2q10 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|13e3", + "Asia/Aqtau|LMT +04 +05 +06|-3l.4 -40 -50 -60|012323232323232323232123232312121212121212121212|-1Pc3l.4 eUnl.4 24PX0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|15e4", + "Asia/Aqtobe|LMT +04 +05 +06|-3M.E -40 -50 -60|0123232323232323232321232323232323232323232323232|-1Pc3M.E eUnM.E 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|27e4", + "Asia/Ashgabat|LMT +04 +05 +06|-3R.w -40 -50 -60|0123232323232323232323212|-1Pc3R.w eUnR.w 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0|41e4", + "Asia/Atyrau|LMT +03 +05 +06 +04|-3r.I -30 -50 -60 -40|01232323232323232323242323232323232324242424242|-1Pc3r.I eUor.I 24PW0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 2sp0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0", + "Asia/Baghdad|BMT +03 +04|-2V.A -30 -40|012121212121212121212121212121212121212121212121212121|-26BeV.A 2ACnV.A 11b0 1cp0 1dz0 1dd0 1db0 1cN0 1cp0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1de0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0|66e5", + "Asia/Qatar|LMT +04 +03|-3q.8 -40 -30|012|-21Jfq.8 27BXq.8|96e4", + "Asia/Baku|LMT +03 +04 +05|-3j.o -30 -40 -50|01232323232323232323232123232323232323232323232323232323232323232|-1Pc3j.o 1jUoj.o WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 9Je0 1o00 11z0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5", + "Asia/Bangkok|BMT +07|-6G.4 -70|01|-218SG.4|15e6", + "Asia/Barnaul|LMT +06 +07 +08|-5z -60 -70 -80|0123232323232323232323212323232321212121212121212121212121212121212|-21S5z pCnz 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 p90 LE0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0", + "Asia/Beirut|EET EEST|-20 -30|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-21aq0 1on0 1410 1db0 19B0 1in0 1ip0 WL0 1lQp0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 q6N0 En0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1op0 11b0 dA10 17b0 1iN0 17b0 1iN0 17b0 1iN0 17b0 1vB0 SL0 1mp0 13z0 1iN0 17b0 1iN0 17b0 1jd0 12n0 1a10 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0|22e5", + "Asia/Bishkek|LMT +05 +06 +07|-4W.o -50 -60 -70|012323232323232323232321212121212121212121212121212|-1Pc4W.o eUnW.o 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2e00 1tX0 17b0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1cPu 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0|87e4", + "Asia/Brunei|LMT +0730 +08|-7D.E -7u -80|012|-1KITD.E gDc9.E|42e4", + "Asia/Kolkata|MMT IST +0630|-5l.a -5u -6u|012121|-2zOtl.a 1r2LP.a 1un0 HB0 7zX0|15e6", + "Asia/Chita|LMT +08 +09 +10|-7x.Q -80 -90 -a0|012323232323232323232321232323232323232323232323232323232323232312|-21Q7x.Q pAnx.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3re0|33e4", + "Asia/Choibalsan|LMT +07 +08 +10 +09|-7C -70 -80 -a0 -90|0123434343434343434343434343434343434343434343424242|-2APHC 2UkoC cKn0 1da0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 3Db0 h1f0 1cJ0 1cP0 1cJ0|38e3", + "Asia/Shanghai|CST CDT|-80 -90|01010101010101010|-1c1I0 LX0 16p0 1jz0 1Myp0 Rb0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0|23e6", + "Asia/Colombo|MMT +0530 +06 +0630|-5j.w -5u -60 -6u|01231321|-2zOtj.w 1rFbN.w 1zzu 7Apu 23dz0 11zu n3cu|22e5", + "Asia/Dhaka|HMT +0630 +0530 +06 +07|-5R.k -6u -5u -60 -70|0121343|-18LFR.k 1unn.k HB0 m6n0 2kxbu 1i00|16e6", + "Asia/Damascus|LMT EET EEST|-2p.c -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-21Jep.c Hep.c 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1xRB0 11X0 1oN0 10L0 1pB0 11b0 1oN0 10L0 1mp0 13X0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 Nb0 1AN0 Nb0 bcp0 19X0 1gp0 19X0 3ld0 1xX0 Vd0 1Bz0 Sp0 1vX0 10p0 1dz0 1cN0 1cL0 1db0 1db0 1g10 1an0 1ap0 1db0 1fd0 1db0 1cN0 1db0 1dd0 1db0 1cp0 1dz0 1c10 1dX0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 19z0 1fB0 1qL0 11B0 1on0 Wp0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0|26e5", + "Asia/Dili|LMT +08 +09|-8m.k -80 -90|01212|-2le8m.k 1dnXm.k 1nfA0 Xld0|19e4", + "Asia/Dubai|LMT +04|-3F.c -40|01|-21JfF.c|39e5", + "Asia/Dushanbe|LMT +05 +06 +07|-4z.c -50 -60 -70|012323232323232323232321|-1Pc4z.c eUnz.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2hB0|76e4", + "Asia/Famagusta|LMT EET EEST +03|-2f.M -20 -30 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212312121212121212121212121212121212121212121|-1Vc2f.M 2a3cf.M 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 15U0 2Ks0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00", + "Asia/Gaza|EET EEST IST IDT|-20 -30 -20 -30|010101010101010101010101010101012323232323232323232323232320101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1c2q0 5Rb0 10r0 1px0 10N0 1pz0 16p0 1jB0 16p0 1jx0 pBd0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 npB0 11z0 1C10 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 11z0 1o10 14o0 1lA1 SKX 1xd1 MKX 1AN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nz0 1220 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0|18e5", + "Asia/Hebron|EET EEST IST IDT|-20 -30 -20 -30|01010101010101010101010101010101232323232323232323232323232010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1c2q0 5Rb0 10r0 1px0 10N0 1pz0 16p0 1jB0 16p0 1jx0 pBd0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 npB0 11z0 1C10 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 12L0 1mN0 14o0 1lc0 Tb0 1xd1 MKX bB0 cn0 1cN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nz0 1220 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0|25e4", + "Asia/Ho_Chi_Minh|LMT PLMT +07 +08 +09|-76.E -76.u -70 -80 -90|0123423232|-2yC76.E bK00.a 1h7b6.u 5lz0 18o0 3Oq0 k5b0 aW00 BAM0|90e5", + "Asia/Hong_Kong|LMT HKT HKST JST|-7A.G -80 -90 -90|0121312121212121212121212121212121212121212121212121212121212121212121|-2CFHA.G 1sEP6.G 1cL0 ylu 93X0 1qQu 1tX0 Rd0 1In0 NB0 1cL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1kL0 14N0 1nX0 U10 1tz0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|73e5", + "Asia/Hovd|LMT +06 +07 +08|-66.A -60 -70 -80|012323232323232323232323232323232323232323232323232|-2APG6.A 2Uko6.A cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|81e3", + "Asia/Irkutsk|IMT +07 +08 +09|-6V.5 -70 -80 -90|01232323232323232323232123232323232323232323232323232323232323232|-21zGV.5 pjXV.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4", + "Europe/Istanbul|IMT EET EEST +04 +03|-1U.U -20 -30 -40 -30|012121212121212121212121212121212121212121212121212121234343434342121212121212121212121212121212121212121212121212121212121212124|-2ogNU.U dzzU.U 11b0 8tB0 1on0 1410 1db0 19B0 1in0 3Rd0 Un0 1oN0 11b0 zSp0 CL0 mN0 1Vz0 1gN0 1pz0 5Rd0 1fz0 1yp0 ML0 1kp0 17b0 1ip0 17b0 1fB0 19X0 1jB0 18L0 1ip0 17z0 qdd0 xX0 3S10 Tz0 dA10 11z0 1o10 11z0 1qN0 11z0 1ze0 11B0 WM0 1qO0 WI0 1nX0 1rB0 10L0 11B0 1in0 17d0 1in0 2pX0 19E0 1fU0 16Q0 1iI0 16Q0 1iI0 1Vd0 pb0 3Kp0 14o0 1de0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1a00 1fA0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WO0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 Xc0 1qo0 WM0 1qM0 11A0 1o00 1200 1nA0 11A0 1tA0 U00 15w0|13e6", + "Asia/Jakarta|BMT +0720 +0730 +09 +08 WIB|-77.c -7k -7u -90 -80 -70|01232425|-1Q0Tk luM0 mPzO 8vWu 6kpu 4PXu xhcu|31e6", + "Asia/Jayapura|LMT +09 +0930 WIT|-9m.M -90 -9u -90|0123|-1uu9m.M sMMm.M L4nu|26e4", + "Asia/Jerusalem|JMT IST IDT IDDT|-2k.E -20 -30 -40|01212121212132121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-26Bek.E SyMk.E 5Rb0 10r0 1px0 10N0 1pz0 16p0 1jB0 16p0 1jx0 3LB0 Em0 or0 1cn0 1dB0 16n0 10O0 1ja0 1tC0 14o0 1cM0 1a00 11A0 1Na0 An0 1MP0 AJ0 1Kp0 LC0 1oo0 Wl0 EQN0 Db0 1fB0 Rb0 npB0 11z0 1C10 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 1hB0 1dX0 1ep0 1aL0 1eN0 17X0 1nf0 11z0 1tB0 19W0 1e10 17b0 1ep0 1gL0 18N0 1fz0 1eN0 17b0 1gq0 1gn0 19d0 1dz0 1c10 17X0 1hB0 1gn0 19d0 1dz0 1c10 17X0 1kp0 1dz0 1c10 1aL0 1eN0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0|81e4", + "Asia/Kabul|+04 +0430|-40 -4u|01|-10Qs0|46e5", + "Asia/Kamchatka|LMT +11 +12 +13|-ay.A -b0 -c0 -d0|012323232323232323232321232323232323232323232323232323232323212|-1SLKy.A ivXy.A 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|18e4", + "Asia/Karachi|LMT +0530 +0630 +05 PKT PKST|-4s.c -5u -6u -50 -50 -60|012134545454|-2xoss.c 1qOKW.c 7zX0 eup0 LqMu 1fy00 1cL0 dK10 11b0 1610 1jX0|24e6", + "Asia/Urumqi|LMT +06|-5O.k -60|01|-1GgtO.k|32e5", + "Asia/Kathmandu|LMT +0530 +0545|-5F.g -5u -5J|012|-21JhF.g 2EGMb.g|12e5", + "Asia/Khandyga|LMT +08 +09 +10 +11|-92.d -80 -90 -a0 -b0|0123232323232323232323212323232323232323232323232343434343434343432|-21Q92.d pAp2.d 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 qK0 yN0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|66e2", + "Asia/Krasnoyarsk|LMT +06 +07 +08|-6b.q -60 -70 -80|01232323232323232323232123232323232323232323232323232323232323232|-21Hib.q prAb.q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|10e5", + "Asia/Kuala_Lumpur|SMT +07 +0720 +0730 +09 +08|-6T.p -70 -7k -7u -90 -80|0123435|-2Bg6T.p 17anT.p l5XE 17bO 8Fyu 1so1u|71e5", + "Asia/Kuching|LMT +0730 +08 +0820 +09|-7l.k -7u -80 -8k -90|0123232323232323242|-1KITl.k gDbP.k 6ynu AnE 1O0k AnE 1NAk AnE 1NAk AnE 1NAk AnE 1O0k AnE 1NAk AnE pAk 8Fz0|13e4", + "Asia/Macau|LMT CST CDT|-7y.k -80 -90|012121212121212121212121212121212121212121|-2le7y.k 1XO34.k 1wn0 Rd0 1wn0 R9u 1wqu U10 1tz0 TVu 1tz0 17gu 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cJu 1cL0 1cN0 1fz0 1cN0 1cOu 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cJu 1cL0 1cN0 1fz0 1cN0 1cL0|57e4", + "Asia/Magadan|LMT +10 +11 +12|-a3.c -a0 -b0 -c0|012323232323232323232321232323232323232323232323232323232323232312|-1Pca3.c eUo3.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Cq0|95e3", + "Asia/Makassar|LMT MMT +08 +09 WITA|-7V.A -7V.A -80 -90 -80|01234|-21JjV.A vfc0 myLV.A 8ML0|15e5", + "Asia/Manila|+08 +09|-80 -90|010101010|-1kJI0 AL0 cK10 65X0 mXB0 vX0 VK10 1db0|24e6", + "Asia/Nicosia|LMT EET EEST|-2d.s -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Vc2d.s 2a3cd.s 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|32e4", + "Asia/Novokuznetsk|LMT +06 +07 +08|-5M.M -60 -70 -80|012323232323232323232321232323232323232323232323232323232323212|-1PctM.M eULM.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|55e4", + "Asia/Novosibirsk|LMT +06 +07 +08|-5v.E -60 -70 -80|0123232323232323232323212323212121212121212121212121212121212121212|-21Qnv.E pAFv.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 ml0 Os0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 4eN0|15e5", + "Asia/Omsk|LMT +05 +06 +07|-4R.u -50 -60 -70|01232323232323232323232123232323232323232323232323232323232323232|-224sR.u pMLR.u 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|12e5", + "Asia/Oral|LMT +03 +05 +06 +04|-3p.o -30 -50 -60 -40|01232323232323232424242424242424242424242424242|-1Pc3p.o eUop.o 23CK0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 1cM0 IM0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|27e4", + "Asia/Pontianak|LMT PMT +0730 +09 +08 WITA WIB|-7h.k -7h.k -7u -90 -80 -80 -70|012324256|-2ua7h.k XE00 munL.k 8Rau 6kpu 4PXu xhcu Wqnu|23e4", + "Asia/Pyongyang|LMT KST JST KST|-8n -8u -90 -90|01231|-2um8n 97XR 1lTzu 2Onc0|29e5", + "Asia/Qyzylorda|LMT +04 +05 +06|-4l.Q -40 -50 -60|0123232323232323232323232323232323232323232323|-1Pc4l.Q eUol.Q 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 3ao0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|73e4", + "Asia/Rangoon|RMT +0630 +09|-6o.L -6u -90|0121|-21Jio.L SmnS.L 7j9u|48e5", + "Asia/Sakhalin|LMT +09 +11 +12 +10|-9u.M -90 -b0 -c0 -a0|01232323232323232323232423232323232424242424242424242424242424242|-2AGVu.M 1BoMu.M 1qFa0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 2pB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|58e4", + "Asia/Samarkand|LMT +04 +05 +06|-4r.R -40 -50 -60|01232323232323232323232|-1Pc4r.R eUor.R 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0|36e4", + "Asia/Seoul|LMT KST JST KST KDT KDT|-8r.Q -8u -90 -90 -9u -a0|0123141414141414135353|-2um8r.Q 97XV.Q 1m1zu kKo0 2I0u OL0 1FB0 Rb0 1qN0 TX0 1tB0 TX0 1tB0 TX0 1tB0 TX0 2ap0 12FBu 11A0 1o00 11A0|23e6", + "Asia/Srednekolymsk|LMT +10 +11 +12|-ae.Q -a0 -b0 -c0|01232323232323232323232123232323232323232323232323232323232323232|-1Pcae.Q eUoe.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|35e2", + "Asia/Taipei|CST JST CDT|-80 -90 -90|01020202020202020202020202020202020202020|-1iw80 joM0 1yo0 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 10N0 1BX0 10p0 1pz0 10p0 1pz0 10p0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1BB0 ML0 1Bd0 ML0 uq10 1db0 1cN0 1db0 97B0 AL0|74e5", + "Asia/Tashkent|LMT +05 +06 +07|-4B.b -50 -60 -70|012323232323232323232321|-1Pc4B.b eUnB.b 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0|23e5", + "Asia/Tbilisi|TBMT +03 +04 +05|-2X.b -30 -40 -50|0123232323232323232323212121232323232323232323212|-1Pc2X.b 1jUnX.b WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cK0 1cL0 1cN0 1cL0 1cN0 2pz0 1cL0 1fB0 3Nz0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 An0 Os0 WM0|11e5", + "Asia/Tehran|LMT TMT +0330 +04 +05 +0430|-3p.I -3p.I -3u -40 -50 -4u|01234325252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2btDp.I 1d3c0 1huLT.I TXu 1pz0 sN0 vAu 1cL0 1dB0 1en0 pNB0 UL0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 64p0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0|14e6", + "Asia/Thimphu|LMT +0530 +06|-5W.A -5u -60|012|-Su5W.A 1BGMs.A|79e3", + "Asia/Tokyo|JST JDT|-90 -a0|010101010|-QJH0 QL0 1lB0 13X0 1zB0 NX0 1zB0 NX0|38e6", + "Asia/Tomsk|LMT +06 +07 +08|-5D.P -60 -70 -80|0123232323232323232323212323232323232323232323212121212121212121212|-21NhD.P pxzD.P 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 co0 1bB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Qp0|10e5", + "Asia/Ulaanbaatar|LMT +07 +08 +09|-77.w -70 -80 -90|012323232323232323232323232323232323232323232323232|-2APH7.w 2Uko7.w cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|12e5", + "Asia/Ust-Nera|LMT +08 +09 +12 +11 +10|-9w.S -80 -90 -c0 -b0 -a0|012343434343434343434345434343434343434343434343434343434343434345|-21Q9w.S pApw.S 23CL0 1d90 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|65e2", + "Asia/Vladivostok|LMT +09 +10 +11|-8L.v -90 -a0 -b0|01232323232323232323232123232323232323232323232323232323232323232|-1SJIL.v itXL.v 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4", + "Asia/Yakutsk|LMT +08 +09 +10|-8C.W -80 -90 -a0|01232323232323232323232123232323232323232323232323232323232323232|-21Q8C.W pAoC.W 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|28e4", + "Asia/Yekaterinburg|LMT PMT +04 +05 +06|-42.x -3J.5 -40 -50 -60|012343434343434343434343234343434343434343434343434343434343434343|-2ag42.x 7mQh.s qBvJ.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|14e5", + "Asia/Yerevan|LMT +03 +04 +05|-2W -30 -40 -50|0123232323232323232323212121212323232323232323232323232323232|-1Pc2W 1jUnW WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 4RX0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|13e5", + "Atlantic/Azores|HMT -02 -01 +00 WET|1S.w 20 10 0 0|01212121212121212121212121212121212121212121232123212321232121212121212121212121212121212121212121232323232323232323232323232323234323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2ldW5.s aPX5.s Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 qIl0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|25e4", + "Atlantic/Bermuda|LMT AST ADT|4j.i 40 30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1BnRE.G 1LTbE.G 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e3", + "Atlantic/Canary|LMT -01 WET WEST|11.A 10 0 -10|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UtaW.o XPAW.o 1lAK0 1a10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4", + "Atlantic/Cape_Verde|LMT -02 -01|1y.4 20 10|01212|-2xomp.U 1qOMp.U 7zX0 1djf0|50e4", + "Atlantic/Faroe|LMT WET WEST|r.4 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2uSnw.U 2Wgow.U 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|49e3", + "Atlantic/Madeira|FMT -01 +00 +01 WET WEST|17.A 10 0 -10 0 -10|01212121212121212121212121212121212121212121232123212321232121212121212121212121212121212121212121454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2ldWQ.o aPWQ.o Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 qIl0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|27e4", + "Atlantic/Reykjavik|LMT -01 +00 GMT|1s 10 0 0|012121212121212121212121212121212121212121212121212121212121212121213|-2uWmw mfaw 1Bd0 ML0 1LB0 Cn0 1LB0 3fX0 C10 HrX0 1cO0 LB0 1EL0 LA0 1C00 Oo0 1wo0 Rc0 1wo0 Rc0 1wo0 Rc0 1zc0 Oo0 1zc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0|12e4", + "Atlantic/South_Georgia|-02|20|0||30", + "Atlantic/Stanley|SMT -04 -03 -02|3P.o 40 30 20|012121212121212323212121212121212121212121212121212121212121212121212|-2kJw8.A 12bA8.A 19X0 1fB0 19X0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 Cn0 1Cc10 WL0 1qL0 U10 1tz0 2mN0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 U10 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qN0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 U10 1tz0 U10 1tz0 U10|21e2", + "Australia/Sydney|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293lX xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|40e5", + "Australia/Adelaide|ACST ACDT|-9u -au|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293lt xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 WM0 1qM0 Rc0 1zc0 U00 1tA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|11e5", + "Australia/Brisbane|AEST AEDT|-a0 -b0|01010101010101010|-293lX xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0|20e5", + "Australia/Broken_Hill|ACST ACDT|-9u -au|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293lt xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|18e3", + "Australia/Currie|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-29E80 19X0 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|746", + "Australia/Darwin|ACST ACDT|-9u -au|010101010|-293lt xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0|12e4", + "Australia/Eucla|+0845 +0945|-8J -9J|0101010101010101010|-293kI xcX 10jd0 yL0 1cN0 1cL0 1gSp0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|368", + "Australia/Hobart|AEST AEDT|-a0 -b0|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-29E80 19X0 10jd0 yL0 1cN0 1cL0 1fB0 19X0 VfB0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|21e4", + "Australia/Lord_Howe|AEST +1030 +1130 +11|-a0 -au -bu -b0|0121212121313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313|raC0 1zdu Rb0 1zd0 On0 1zd0 On0 1zd0 On0 1zd0 TXu 1qMu WLu 1tAu WLu 1tAu TXu 1tAu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 11Au 1nXu 1qMu 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu 11zu 1o0u WLu 1qMu 14nu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu|347", + "Australia/Lindeman|AEST AEDT|-a0 -b0|010101010101010101010|-293lX xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0|10", + "Australia/Melbourne|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293lX xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1qM0 11A0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|39e5", + "Australia/Perth|AWST AWDT|-80 -90|0101010101010101010|-293jX xcX 10jd0 yL0 1cN0 1cL0 1gSp0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|18e5", + "CET|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00", + "CST6CDT|CST CDT CWT CPT|60 50 50 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "Pacific/Easter|EMT -07 -06 -05|7h.s 70 60 50|012121212121212121212121212123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1uSgG.w 1s4IG.w WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 2pA0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0|30e2", + "EET|EET EEST|-20 -30|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00", + "EST|EST|50|0|", + "EST5EDT|EST EDT EWT EPT|50 40 40 40|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261t0 1nX0 11B0 1nX0 SgN0 8x40 iv0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "Europe/Dublin|DMT IST GMT BST IST|p.l -y.D 0 -10 -10|01232323232324242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242|-2ax9y.D Rc0 1fzy.D 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 g600 14o0 1wo0 17c0 1io0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5", + "Etc/GMT+0|GMT|0|0|", + "Etc/GMT+1|-01|10|0|", + "Etc/GMT+10|-10|a0|0|", + "Etc/GMT+11|-11|b0|0|", + "Etc/GMT+12|-12|c0|0|", + "Etc/GMT+3|-03|30|0|", + "Etc/GMT+4|-04|40|0|", + "Etc/GMT+5|-05|50|0|", + "Etc/GMT+6|-06|60|0|", + "Etc/GMT+7|-07|70|0|", + "Etc/GMT+8|-08|80|0|", + "Etc/GMT+9|-09|90|0|", + "Etc/GMT-1|+01|-10|0|", + "Pacific/Port_Moresby|+10|-a0|0||25e4", + "Pacific/Pohnpei|+11|-b0|0||34e3", + "Pacific/Tarawa|+12|-c0|0||29e3", + "Etc/GMT-13|+13|-d0|0|", + "Etc/GMT-14|+14|-e0|0|", + "Etc/GMT-2|+02|-20|0|", + "Etc/GMT-3|+03|-30|0|", + "Etc/GMT-4|+04|-40|0|", + "Etc/GMT-5|+05|-50|0|", + "Etc/GMT-6|+06|-60|0|", + "Indian/Christmas|+07|-70|0||21e2", + "Etc/GMT-8|+08|-80|0|", + "Pacific/Palau|+09|-90|0||21e3", + "Etc/UCT|UCT|0|0|", + "Etc/UTC|UTC|0|0|", + "Europe/Amsterdam|AMT NST +0120 +0020 CEST CET|-j.w -1j.w -1k -k -20 -10|010101010101010101010101010101010101010101012323234545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-2aFcj.w 11b0 1iP0 11A0 1io0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1co0 1io0 1yo0 Pc0 1a00 1fA0 1Bc0 Mo0 1tc0 Uo0 1tA0 U00 1uo0 W00 1s00 VA0 1so0 Vc0 1sM0 UM0 1wo0 Rc0 1u00 Wo0 1rA0 W00 1s00 VA0 1sM0 UM0 1w00 fV0 BCX.w 1tA0 U00 1u00 Wo0 1sm0 601k WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|16e5", + "Europe/Andorra|WET CET CEST|0 -10 -20|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-UBA0 1xIN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|79e3", + "Europe/Astrakhan|LMT +03 +04 +05|-3c.c -30 -40 -50|012323232323232323212121212121212121212121212121212121212121212|-1Pcrc.c eUMc.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0", + "Europe/Athens|AMT EET EEST CEST CET|-1y.Q -20 -30 -20 -10|012123434121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a61x.Q CNbx.Q mn0 kU10 9b0 3Es0 Xa0 1fb0 1dd0 k3X0 Nz0 SCp0 1vc0 SO0 1cM0 1a00 1ao0 1fc0 1a10 1fG0 1cg0 1dX0 1bX0 1cQ0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|35e5", + "Europe/London|GMT BST BDST|0 -10 -20|0101010101010101010101010101010101010101010101010121212121210101210101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2axa0 Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|10e6", + "Europe/Belgrade|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-19RC0 3IP0 WM0 1fA0 1cM0 1cM0 1rc0 Qo0 1vmo0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5", + "Europe/Berlin|CET CEST CEMT|-10 -20 -30|01010101010101210101210101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 kL0 Nc0 m10 WM0 1ao0 1cp0 dX0 jz0 Dd0 1io0 17c0 1fA0 1a00 1ehA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|41e5", + "Europe/Prague|CET CEST|-10 -20|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 16M0 1lc0 1tA0 17A0 11c0 1io0 17c0 1io0 17c0 1fc0 1ao0 1bNc0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|13e5", + "Europe/Brussels|WET CET CEST WEST|0 -10 -20 -10|0121212103030303030303030303030303030303030303030303212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2ehc0 3zX0 11c0 1iO0 11A0 1o00 11A0 my0 Ic0 1qM0 Rc0 1EM0 UM0 1u00 10o0 1io0 1io0 17c0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a30 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 y00 5Wn0 WM0 1fA0 1cM0 16M0 1iM0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|21e5", + "Europe/Bucharest|BMT EET EEST|-1I.o -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1xApI.o 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Axc0 On0 1fA0 1a10 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|19e5", + "Europe/Budapest|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1ip0 17b0 1op0 1tb0 Q2m0 3Ne0 WM0 1fA0 1cM0 1cM0 1oJ0 1dc0 1030 1fA0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1iM0 1fA0 8Ha0 Rb0 1wN0 Rb0 1BB0 Lz0 1C20 LB0 SNX0 1a10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e5", + "Europe/Zurich|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-19Lc0 11A0 1o00 11A0 1xG10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|38e4", + "Europe/Chisinau|CMT BMT EET EEST CEST CET MSK MSD|-1T -1I.o -20 -30 -20 -10 -30 -40|012323232323232323234545467676767676767676767323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-26jdT wGMa.A 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 27A0 2en0 39g0 WM0 1fA0 1cM0 V90 1t7z0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 gL0 WO0 1cM0 1cM0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11D0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|67e4", + "Europe/Copenhagen|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2azC0 Tz0 VuO0 60q0 WM0 1fA0 1cM0 1cM0 1cM0 S00 1HA0 Nc0 1C00 Dc0 1Nc0 Ao0 1h5A0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5", + "Europe/Gibraltar|GMT BST BDST CET CEST|0 -10 -20 -10 -20|010101010101010101010101010101010101010101010101012121212121010121010101010101010101034343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-2axa0 Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 10Jz0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|30e3", + "Europe/Helsinki|HMT EET EEST|-1D.N -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1WuND.N OULD.N 1dA0 1xGq0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5", + "Europe/Kaliningrad|CET CEST CET CEST MSK MSD EEST EET +03|-10 -20 -20 -30 -30 -40 -30 -20 -30|0101010101010232454545454545454546767676767676767676767676767676767676767676787|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 Am0 Lb0 1en0 op0 1pNz0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|44e4", + "Europe/Kiev|KMT EET MSK CEST CET MSD EEST|-22.4 -20 -30 -20 -10 -40 -30|0123434252525252525252525256161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161|-1Pc22.4 eUo2.4 rnz0 2Hg0 WM0 1fA0 da0 1v4m0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 Db0 3220 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|34e5", + "Europe/Kirov|LMT +03 +04 +05|-3i.M -30 -40 -50|01232323232323232321212121212121212121212121212121212121212121|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|48e4", + "Europe/Lisbon|LMT WET WEST WEMT CET CEST|A.J 0 -10 -20 -10 -20|012121212121212121212121212121212121212121212321232123212321212121212121212121212121212121212121214121212121212121212121212121212124545454212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2ldXn.f aPWn.f Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 pvy0 1cM0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|27e5", + "Europe/Luxembourg|LMT CET CEST WET WEST WEST WET|-o.A -10 -20 0 -10 -20 -10|0121212134343434343434343434343434343434343434343434565651212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2DG0o.A t6mo.A TB0 1nX0 Up0 1o20 11A0 rW0 CM0 1qP0 R90 1EO0 UK0 1u20 10m0 1ip0 1in0 17e0 19W0 1fB0 1db0 1cp0 1in0 17d0 1fz0 1a10 1in0 1a10 1in0 17f0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 vA0 60L0 WM0 1fA0 1cM0 17c0 1io0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4", + "Europe/Madrid|WET WEST WEMT CET CEST|0 -10 -20 -10 -20|010101010101010101210343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-25Td0 19B0 1cL0 1dd0 b1z0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1in0 17d0 iIn0 Hd0 1cL0 bb0 1200 2s20 14n0 5aL0 Mp0 1vz0 17d0 1in0 17d0 1in0 17d0 1in0 17d0 6hX0 11B0 XHX0 1a10 1fz0 1a10 19X0 1cN0 1fz0 1a10 1fC0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|62e5", + "Europe/Malta|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2arB0 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1co0 17c0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1co0 1cM0 1lA0 Xc0 1qq0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1iN0 19z0 1fB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|42e4", + "Europe/Minsk|MMT EET MSK CEST CET MSD EEST +03|-1O -20 -30 -20 -10 -40 -30 -30|01234343252525252525252525261616161616161616161616161616161616161617|-1Pc1O eUnO qNX0 3gQ0 WM0 1fA0 1cM0 Al0 1tsn0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 3Fc0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0|19e5", + "Europe/Monaco|PMT WET WEST WEMT CET CEST|-9.l 0 -10 -20 -10 -20|01212121212121212121212121212121212121212121212121232323232345454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2nco9.l cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 2RV0 11z0 11B0 1ze0 WM0 1fA0 1cM0 1fa0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|38e3", + "Europe/Moscow|MMT MMT MST MDST MSD MSK +05 EET EEST MSK|-2u.h -2v.j -3v.j -4v.j -40 -30 -50 -20 -30 -40|012132345464575454545454545454545458754545454545454545454545454545454545454595|-2ag2u.h 2pyW.W 1bA0 11X0 GN0 1Hb0 c4v.j ik0 3DA0 dz0 15A0 c10 2q10 iM10 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|16e6", + "Europe/Paris|PMT WET WEST CEST CET WEMT|-9.l 0 -10 -20 -10 -20|0121212121212121212121212121212121212121212121212123434352543434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-2nco8.l cNb8.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 Ik0 5M30 WM0 1fA0 1cM0 Vx0 hB0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|11e6", + "Europe/Riga|RMT LST EET MSK CEST CET MSD EEST|-1A.y -2A.y -20 -30 -20 -10 -40 -30|010102345454536363636363636363727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272|-25TzA.y 11A0 1iM0 ko0 gWm0 yDXA.y 2bX0 3fE0 WM0 1fA0 1cM0 1cM0 4m0 1sLy0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 1o00 11A0 1o00 11A0 1qM0 3oo0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|64e4", + "Europe/Rome|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2arB0 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1cM0 16M0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1C00 LA0 1zc0 Oo0 1C00 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1zc0 Oo0 1fC0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|39e5", + "Europe/Samara|LMT +03 +04 +05|-3k.k -30 -40 -50|0123232323232323232121232323232323232323232323232323232323212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2y10 14m0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|12e5", + "Europe/Saratov|LMT +03 +04 +05|-34.i -30 -40 -50|012323232323232321212121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 5810", + "Europe/Simferopol|SMT EET MSK CEST CET MSD EEST MSK|-2g -20 -30 -20 -10 -40 -30 -40|012343432525252525252525252161616525252616161616161616161616161616161616172|-1Pc2g eUog rEn0 2qs0 WM0 1fA0 1cM0 3V0 1u0L0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 4eL0 1cL0 1cN0 1cL0 1cN0 dX0 WL0 1cN0 1cL0 1fB0 1o30 11B0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11z0 1nW0|33e4", + "Europe/Sofia|EET CET CEST EEST|-20 -10 -20 -30|01212103030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030|-168L0 WM0 1fA0 1cM0 1cM0 1cN0 1mKH0 1dd0 1fb0 1ap0 1fb0 1a20 1fy0 1a30 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5", + "Europe/Stockholm|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2azC0 TB0 2yDe0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|15e5", + "Europe/Tallinn|TMT CET CEST EET MSK MSD EEST|-1D -10 -20 -20 -30 -40 -30|012103421212454545454545454546363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363|-26oND teD 11A0 1Ta0 4rXl KSLD 2FX0 2Jg0 WM0 1fA0 1cM0 18J0 1sTX0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o10 11A0 1qM0 5QM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|41e4", + "Europe/Tirane|LMT CET CEST|-1j.k -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glBj.k 14pcj.k 5LC0 WM0 4M0 1fCK0 10n0 1op0 11z0 1pd0 11z0 1qN0 WL0 1qp0 Xb0 1qp0 Xb0 1qp0 11z0 1lB0 11z0 1qN0 11z0 1iN0 16n0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|42e4", + "Europe/Ulyanovsk|LMT +03 +04 +05 +02|-3d.A -30 -40 -50 -20|01232323232323232321214121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0", + "Europe/Uzhgorod|CET CEST MSK MSD EET EEST|-10 -20 -30 -40 -20 -30|010101023232323232323232320454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-1cqL0 6i00 WM0 1fA0 1cM0 1ml0 1Cp0 1r3W0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 1Nf0 2pw0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|11e4", + "Europe/Vienna|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 3KM0 14o0 LA00 6i00 WM0 1fA0 1cM0 1cM0 1cM0 400 2qM0 1a00 1cM0 1cM0 1io0 17c0 1gHa0 19X0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|18e5", + "Europe/Vilnius|WMT KMT CET EET MSK CEST MSD EEST|-1o -1z.A -10 -20 -30 -20 -40 -30|012324525254646464646464646473737373737373737352537373737373737373737373737373737373737373737373737373737373737373737373|-293do 6ILM.o 1Ooz.A zz0 Mfd0 29W0 3is0 WM0 1fA0 1cM0 LV0 1tgL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11B0 1o00 11A0 1qM0 8io0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4", + "Europe/Volgograd|LMT +03 +04 +05|-2V.E -30 -40 -50|01232323232323232121212121212121212121212121212121212121212121|-21IqV.E psLV.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|10e5", + "Europe/Warsaw|WMT CET CEST EET EEST|-1o -10 -20 -20 -30|012121234312121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2ctdo 1LXo 11d0 1iO0 11A0 1o00 11A0 1on0 11A0 6zy0 HWP0 5IM0 WM0 1fA0 1cM0 1dz0 1mL0 1en0 15B0 1aq0 1nA0 11A0 1io0 17c0 1fA0 1a00 iDX0 LA0 1cM0 1cM0 1C00 Oo0 1cM0 1cM0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1C00 LA0 uso0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e5", + "Europe/Zaporozhye|+0220 EET MSK CEST CET MSD EEST|-2k -20 -30 -20 -10 -40 -30|01234342525252525252525252526161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161|-1Pc2k eUok rdb0 2RE0 WM0 1fA0 8m0 1v9a0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cK0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|77e4", + "HST|HST|a0|0|", + "Indian/Chagos|LMT +05 +06|-4N.E -50 -60|012|-2xosN.E 3AGLN.E|30e2", + "Indian/Cocos|+0630|-6u|0||596", + "Indian/Kerguelen|-00 +05|0 -50|01|-MG00|130", + "Indian/Mahe|LMT +04|-3F.M -40|01|-2yO3F.M|79e3", + "Indian/Maldives|MMT +05|-4S -50|01|-olgS|35e4", + "Indian/Mauritius|LMT +04 +05|-3O -40 -50|012121|-2xorO 34unO 14L0 12kr0 11z0|15e4", + "Indian/Reunion|LMT +04|-3F.Q -40|01|-2mDDF.Q|84e4", + "Pacific/Kwajalein|+11 -12 +12|-b0 c0 -c0|012|-AX0 W9X0|14e3", + "MET|MET MEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00", + "MST|MST|70|0|", + "MST7MDT|MST MDT MWT MPT|70 60 60 60|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "Pacific/Chatham|+1215 +1245 +1345|-cf -cJ -dJ|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-WqAf 1adef IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|600", + "PST8PDT|PST PDT PWT PPT|80 70 70 70|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261q0 1nX0 11B0 1nX0 SgN0 8x10 iy0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0", + "Pacific/Apia|LMT -1130 -11 -10 +14 +13|bq.U bu b0 a0 -e0 -d0|01232345454545454545454545454545454545454545454545454545454|-2nDMx.4 1yW03.4 2rRbu 1ff0 1a00 CI0 AQ0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|37e3", + "Pacific/Bougainville|+10 +09 +11|-a0 -90 -b0|0102|-16Wy0 7CN0 2MQp0|18e4", + "Pacific/Efate|LMT +11 +12|-bd.g -b0 -c0|0121212121212121212121|-2l9nd.g 2Szcd.g 1cL0 1oN0 10L0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 Lz0 1Nd0 An0|66e3", + "Pacific/Enderbury|-12 -11 +13|c0 b0 -d0|012|nIc0 B8n0|1", + "Pacific/Fakaofo|-11 +13|b0 -d0|01|1Gfn0|483", + "Pacific/Fiji|LMT +12 +13|-bT.I -c0 -d0|0121212121212121212121212121212121212121212121212121212121212121|-2bUzT.I 3m8NT.I LA0 1EM0 IM0 nJc0 LA0 1o00 Rc0 1wo0 Ao0 1Nc0 Ao0 1Q00 xz0 1SN0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0|88e4", + "Pacific/Galapagos|LMT -05 -06|5W.o 50 60|01212|-1yVS1.A 2dTz1.A gNd0 rz0|25e3", + "Pacific/Gambier|LMT -09|8X.M 90|01|-2jof0.c|125", + "Pacific/Guadalcanal|LMT +11|-aD.M -b0|01|-2joyD.M|11e4", + "Pacific/Guam|GST ChST|-a0 -a0|01|1fpq0|17e4", + "Pacific/Honolulu|HST HDT HST|au 9u a0|010102|-1thLu 8x0 lef0 8Pz0 46p0|37e4", + "Pacific/Kiritimati|-1040 -10 +14|aE a0 -e0|012|nIaE B8nk|51e2", + "Pacific/Kosrae|+11 +12|-b0 -c0|010|-AX0 1bdz0|66e2", + "Pacific/Majuro|+11 +12|-b0 -c0|01|-AX0|28e3", + "Pacific/Marquesas|LMT -0930|9i 9u|01|-2joeG|86e2", + "Pacific/Pago_Pago|LMT SST|bm.M b0|01|-2nDMB.c|37e2", + "Pacific/Nauru|LMT +1130 +09 +12|-b7.E -bu -90 -c0|01213|-1Xdn7.E PvzB.E 5RCu 1ouJu|10e3", + "Pacific/Niue|-1120 -1130 -11|bk bu b0|012|-KfME 17y0a|12e2", + "Pacific/Norfolk|+1112 +1130 +1230 +11|-bc -bu -cu -b0|01213|-Kgbc W01G On0 1COp0|25e4", + "Pacific/Noumea|LMT +11 +12|-b5.M -b0 -c0|01212121|-2l9n5.M 2EqM5.M xX0 1PB0 yn0 HeP0 Ao0|98e3", + "Pacific/Pitcairn|-0830 -08|8u 80|01|18Vku|56", + "Pacific/Rarotonga|-1030 -0930 -10|au 9u a0|012121212121212121212121212|lyWu IL0 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu|13e3", + "Pacific/Tahiti|LMT -10|9W.g a0|01|-2joe1.I|18e4", + "Pacific/Tongatapu|+1220 +13 +14|-ck -d0 -e0|0121212121|-1aB0k 2n5dk 15A0 1wo0 xz0 1Q10 xz0 zWN0 s00|75e3", + "WET|WET WEST|0 -10|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00" + ], + "links": [ + "Africa/Abidjan|Africa/Bamako", + "Africa/Abidjan|Africa/Banjul", + "Africa/Abidjan|Africa/Conakry", + "Africa/Abidjan|Africa/Dakar", + "Africa/Abidjan|Africa/Freetown", + "Africa/Abidjan|Africa/Lome", + "Africa/Abidjan|Africa/Nouakchott", + "Africa/Abidjan|Africa/Ouagadougou", + "Africa/Abidjan|Africa/Sao_Tome", + "Africa/Abidjan|Africa/Timbuktu", + "Africa/Abidjan|Atlantic/St_Helena", + "Africa/Cairo|Egypt", + "Africa/Johannesburg|Africa/Maseru", + "Africa/Johannesburg|Africa/Mbabane", + "Africa/Lagos|Africa/Bangui", + "Africa/Lagos|Africa/Brazzaville", + "Africa/Lagos|Africa/Douala", + "Africa/Lagos|Africa/Kinshasa", + "Africa/Lagos|Africa/Libreville", + "Africa/Lagos|Africa/Luanda", + "Africa/Lagos|Africa/Malabo", + "Africa/Lagos|Africa/Niamey", + "Africa/Lagos|Africa/Porto-Novo", + "Africa/Maputo|Africa/Blantyre", + "Africa/Maputo|Africa/Bujumbura", + "Africa/Maputo|Africa/Gaborone", + "Africa/Maputo|Africa/Harare", + "Africa/Maputo|Africa/Kigali", + "Africa/Maputo|Africa/Lubumbashi", + "Africa/Maputo|Africa/Lusaka", + "Africa/Nairobi|Africa/Addis_Ababa", + "Africa/Nairobi|Africa/Asmara", + "Africa/Nairobi|Africa/Asmera", + "Africa/Nairobi|Africa/Dar_es_Salaam", + "Africa/Nairobi|Africa/Djibouti", + "Africa/Nairobi|Africa/Kampala", + "Africa/Nairobi|Africa/Mogadishu", + "Africa/Nairobi|Indian/Antananarivo", + "Africa/Nairobi|Indian/Comoro", + "Africa/Nairobi|Indian/Mayotte", + "Africa/Tripoli|Libya", + "America/Adak|America/Atka", + "America/Adak|US/Aleutian", + "America/Anchorage|US/Alaska", + "America/Argentina/Buenos_Aires|America/Buenos_Aires", + "America/Argentina/Catamarca|America/Argentina/ComodRivadavia", + "America/Argentina/Catamarca|America/Catamarca", + "America/Argentina/Cordoba|America/Cordoba", + "America/Argentina/Cordoba|America/Rosario", + "America/Argentina/Jujuy|America/Jujuy", + "America/Argentina/Mendoza|America/Mendoza", + "America/Atikokan|America/Coral_Harbour", + "America/Chicago|US/Central", + "America/Curacao|America/Aruba", + "America/Curacao|America/Kralendijk", + "America/Curacao|America/Lower_Princes", + "America/Denver|America/Shiprock", + "America/Denver|Navajo", + "America/Denver|US/Mountain", + "America/Detroit|US/Michigan", + "America/Edmonton|Canada/Mountain", + "America/Fort_Wayne|America/Indiana/Indianapolis", + "America/Fort_Wayne|America/Indianapolis", + "America/Fort_Wayne|US/East-Indiana", + "America/Halifax|Canada/Atlantic", + "America/Havana|Cuba", + "America/Indiana/Knox|America/Knox_IN", + "America/Indiana/Knox|US/Indiana-Starke", + "America/Jamaica|Jamaica", + "America/Kentucky/Louisville|America/Louisville", + "America/Los_Angeles|US/Pacific", + "America/Los_Angeles|US/Pacific-New", + "America/Manaus|Brazil/West", + "America/Mazatlan|Mexico/BajaSur", + "America/Mexico_City|Mexico/General", + "America/New_York|US/Eastern", + "America/Noronha|Brazil/DeNoronha", + "America/Panama|America/Cayman", + "America/Phoenix|US/Arizona", + "America/Port_of_Spain|America/Anguilla", + "America/Port_of_Spain|America/Antigua", + "America/Port_of_Spain|America/Dominica", + "America/Port_of_Spain|America/Grenada", + "America/Port_of_Spain|America/Guadeloupe", + "America/Port_of_Spain|America/Marigot", + "America/Port_of_Spain|America/Montserrat", + "America/Port_of_Spain|America/St_Barthelemy", + "America/Port_of_Spain|America/St_Kitts", + "America/Port_of_Spain|America/St_Lucia", + "America/Port_of_Spain|America/St_Thomas", + "America/Port_of_Spain|America/St_Vincent", + "America/Port_of_Spain|America/Tortola", + "America/Port_of_Spain|America/Virgin", + "America/Regina|Canada/Saskatchewan", + "America/Rio_Branco|America/Porto_Acre", + "America/Rio_Branco|Brazil/Acre", + "America/Santiago|Chile/Continental", + "America/Sao_Paulo|Brazil/East", + "America/St_Johns|Canada/Newfoundland", + "America/Tijuana|America/Ensenada", + "America/Tijuana|America/Santa_Isabel", + "America/Tijuana|Mexico/BajaNorte", + "America/Toronto|America/Montreal", + "America/Toronto|Canada/Eastern", + "America/Vancouver|Canada/Pacific", + "America/Whitehorse|Canada/Yukon", + "America/Winnipeg|Canada/Central", + "Asia/Ashgabat|Asia/Ashkhabad", + "Asia/Bangkok|Asia/Phnom_Penh", + "Asia/Bangkok|Asia/Vientiane", + "Asia/Dhaka|Asia/Dacca", + "Asia/Dubai|Asia/Muscat", + "Asia/Ho_Chi_Minh|Asia/Saigon", + "Asia/Hong_Kong|Hongkong", + "Asia/Jerusalem|Asia/Tel_Aviv", + "Asia/Jerusalem|Israel", + "Asia/Kathmandu|Asia/Katmandu", + "Asia/Kolkata|Asia/Calcutta", + "Asia/Kuala_Lumpur|Asia/Singapore", + "Asia/Kuala_Lumpur|Singapore", + "Asia/Macau|Asia/Macao", + "Asia/Makassar|Asia/Ujung_Pandang", + "Asia/Nicosia|Europe/Nicosia", + "Asia/Qatar|Asia/Bahrain", + "Asia/Rangoon|Asia/Yangon", + "Asia/Riyadh|Asia/Aden", + "Asia/Riyadh|Asia/Kuwait", + "Asia/Seoul|ROK", + "Asia/Shanghai|Asia/Chongqing", + "Asia/Shanghai|Asia/Chungking", + "Asia/Shanghai|Asia/Harbin", + "Asia/Shanghai|PRC", + "Asia/Taipei|ROC", + "Asia/Tehran|Iran", + "Asia/Thimphu|Asia/Thimbu", + "Asia/Tokyo|Japan", + "Asia/Ulaanbaatar|Asia/Ulan_Bator", + "Asia/Urumqi|Asia/Kashgar", + "Atlantic/Faroe|Atlantic/Faeroe", + "Atlantic/Reykjavik|Iceland", + "Atlantic/South_Georgia|Etc/GMT+2", + "Australia/Adelaide|Australia/South", + "Australia/Brisbane|Australia/Queensland", + "Australia/Broken_Hill|Australia/Yancowinna", + "Australia/Darwin|Australia/North", + "Australia/Hobart|Australia/Tasmania", + "Australia/Lord_Howe|Australia/LHI", + "Australia/Melbourne|Australia/Victoria", + "Australia/Perth|Australia/West", + "Australia/Sydney|Australia/ACT", + "Australia/Sydney|Australia/Canberra", + "Australia/Sydney|Australia/NSW", + "Etc/GMT+0|Etc/GMT", + "Etc/GMT+0|Etc/GMT-0", + "Etc/GMT+0|Etc/GMT0", + "Etc/GMT+0|Etc/Greenwich", + "Etc/GMT+0|GMT", + "Etc/GMT+0|GMT+0", + "Etc/GMT+0|GMT-0", + "Etc/GMT+0|GMT0", + "Etc/GMT+0|Greenwich", + "Etc/UCT|UCT", + "Etc/UTC|Etc/Universal", + "Etc/UTC|Etc/Zulu", + "Etc/UTC|UTC", + "Etc/UTC|Universal", + "Etc/UTC|Zulu", + "Europe/Belgrade|Europe/Ljubljana", + "Europe/Belgrade|Europe/Podgorica", + "Europe/Belgrade|Europe/Sarajevo", + "Europe/Belgrade|Europe/Skopje", + "Europe/Belgrade|Europe/Zagreb", + "Europe/Chisinau|Europe/Tiraspol", + "Europe/Dublin|Eire", + "Europe/Helsinki|Europe/Mariehamn", + "Europe/Istanbul|Asia/Istanbul", + "Europe/Istanbul|Turkey", + "Europe/Lisbon|Portugal", + "Europe/London|Europe/Belfast", + "Europe/London|Europe/Guernsey", + "Europe/London|Europe/Isle_of_Man", + "Europe/London|Europe/Jersey", + "Europe/London|GB", + "Europe/London|GB-Eire", + "Europe/Moscow|W-SU", + "Europe/Oslo|Arctic/Longyearbyen", + "Europe/Oslo|Atlantic/Jan_Mayen", + "Europe/Prague|Europe/Bratislava", + "Europe/Rome|Europe/San_Marino", + "Europe/Rome|Europe/Vatican", + "Europe/Warsaw|Poland", + "Europe/Zurich|Europe/Busingen", + "Europe/Zurich|Europe/Vaduz", + "Indian/Christmas|Etc/GMT-7", + "Pacific/Auckland|Antarctica/McMurdo", + "Pacific/Auckland|Antarctica/South_Pole", + "Pacific/Auckland|NZ", + "Pacific/Chatham|NZ-CHAT", + "Pacific/Easter|Chile/EasterIsland", + "Pacific/Guam|Pacific/Saipan", + "Pacific/Honolulu|Pacific/Johnston", + "Pacific/Honolulu|US/Hawaii", + "Pacific/Kwajalein|Kwajalein", + "Pacific/Pago_Pago|Pacific/Midway", + "Pacific/Pago_Pago|Pacific/Samoa", + "Pacific/Pago_Pago|US/Samoa", + "Pacific/Palau|Etc/GMT-9", + "Pacific/Pohnpei|Etc/GMT-11", + "Pacific/Pohnpei|Pacific/Ponape", + "Pacific/Port_Moresby|Etc/GMT-10", + "Pacific/Port_Moresby|Pacific/Chuuk", + "Pacific/Port_Moresby|Pacific/Truk", + "Pacific/Port_Moresby|Pacific/Yap", + "Pacific/Tarawa|Etc/GMT-12", + "Pacific/Tarawa|Pacific/Funafuti", + "Pacific/Tarawa|Pacific/Wake", + "Pacific/Tarawa|Pacific/Wallis" + ] + }); + + + return moment; +})); diff --git a/js/countdown/moment.js b/js/countdown/moment.js new file mode 100644 index 0000000..ba40245 --- /dev/null +++ b/js/countdown/moment.js @@ -0,0 +1,4506 @@ +//! moment.js + +;(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + global.moment = factory() +}(this, (function () { 'use strict'; + +var hookCallback; + +function hooks () { + return hookCallback.apply(null, arguments); +} + +// This is done to register the method called with moment() +// without creating circular dependencies. +function setHookCallback (callback) { + hookCallback = callback; +} + +function isArray(input) { + return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]'; +} + +function isObject(input) { + // IE8 will treat undefined and null as object if it wasn't for + // input != null + return input != null && Object.prototype.toString.call(input) === '[object Object]'; +} + +function isObjectEmpty(obj) { + if (Object.getOwnPropertyNames) { + return (Object.getOwnPropertyNames(obj).length === 0); + } else { + var k; + for (k in obj) { + if (obj.hasOwnProperty(k)) { + return false; + } + } + return true; + } +} + +function isUndefined(input) { + return input === void 0; +} + +function isNumber(input) { + return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]'; +} + +function isDate(input) { + return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]'; +} + +function map(arr, fn) { + var res = [], i; + for (i = 0; i < arr.length; ++i) { + res.push(fn(arr[i], i)); + } + return res; +} + +function hasOwnProp(a, b) { + return Object.prototype.hasOwnProperty.call(a, b); +} + +function extend(a, b) { + for (var i in b) { + if (hasOwnProp(b, i)) { + a[i] = b[i]; + } + } + + if (hasOwnProp(b, 'toString')) { + a.toString = b.toString; + } + + if (hasOwnProp(b, 'valueOf')) { + a.valueOf = b.valueOf; + } + + return a; +} + +function createUTC (input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, true).utc(); +} + +function defaultParsingFlags() { + // We need to deep clone this object. + return { + empty : false, + unusedTokens : [], + unusedInput : [], + overflow : -2, + charsLeftOver : 0, + nullInput : false, + invalidMonth : null, + invalidFormat : false, + userInvalidated : false, + iso : false, + parsedDateParts : [], + meridiem : null, + rfc2822 : false, + weekdayMismatch : false + }; +} + +function getParsingFlags(m) { + if (m._pf == null) { + m._pf = defaultParsingFlags(); + } + return m._pf; +} + +var some; +if (Array.prototype.some) { + some = Array.prototype.some; +} else { + some = function (fun) { + var t = Object(this); + var len = t.length >>> 0; + + for (var i = 0; i < len; i++) { + if (i in t && fun.call(this, t[i], i, t)) { + return true; + } + } + + return false; + }; +} + +function isValid(m) { + if (m._isValid == null) { + var flags = getParsingFlags(m); + var parsedParts = some.call(flags.parsedDateParts, function (i) { + return i != null; + }); + var isNowValid = !isNaN(m._d.getTime()) && + flags.overflow < 0 && + !flags.empty && + !flags.invalidMonth && + !flags.invalidWeekday && + !flags.weekdayMismatch && + !flags.nullInput && + !flags.invalidFormat && + !flags.userInvalidated && + (!flags.meridiem || (flags.meridiem && parsedParts)); + + if (m._strict) { + isNowValid = isNowValid && + flags.charsLeftOver === 0 && + flags.unusedTokens.length === 0 && + flags.bigHour === undefined; + } + + if (Object.isFrozen == null || !Object.isFrozen(m)) { + m._isValid = isNowValid; + } + else { + return isNowValid; + } + } + return m._isValid; +} + +function createInvalid (flags) { + var m = createUTC(NaN); + if (flags != null) { + extend(getParsingFlags(m), flags); + } + else { + getParsingFlags(m).userInvalidated = true; + } + + return m; +} + +// Plugins that add properties should also add the key here (null value), +// so we can properly clone ourselves. +var momentProperties = hooks.momentProperties = []; + +function copyConfig(to, from) { + var i, prop, val; + + if (!isUndefined(from._isAMomentObject)) { + to._isAMomentObject = from._isAMomentObject; + } + if (!isUndefined(from._i)) { + to._i = from._i; + } + if (!isUndefined(from._f)) { + to._f = from._f; + } + if (!isUndefined(from._l)) { + to._l = from._l; + } + if (!isUndefined(from._strict)) { + to._strict = from._strict; + } + if (!isUndefined(from._tzm)) { + to._tzm = from._tzm; + } + if (!isUndefined(from._isUTC)) { + to._isUTC = from._isUTC; + } + if (!isUndefined(from._offset)) { + to._offset = from._offset; + } + if (!isUndefined(from._pf)) { + to._pf = getParsingFlags(from); + } + if (!isUndefined(from._locale)) { + to._locale = from._locale; + } + + if (momentProperties.length > 0) { + for (i = 0; i < momentProperties.length; i++) { + prop = momentProperties[i]; + val = from[prop]; + if (!isUndefined(val)) { + to[prop] = val; + } + } + } + + return to; +} + +var updateInProgress = false; + +// Moment prototype object +function Moment(config) { + copyConfig(this, config); + this._d = new Date(config._d != null ? config._d.getTime() : NaN); + if (!this.isValid()) { + this._d = new Date(NaN); + } + // Prevent infinite loop in case updateOffset creates new moment + // objects. + if (updateInProgress === false) { + updateInProgress = true; + hooks.updateOffset(this); + updateInProgress = false; + } +} + +function isMoment (obj) { + return obj instanceof Moment || (obj != null && obj._isAMomentObject != null); +} + +function absFloor (number) { + if (number < 0) { + // -0 -> 0 + return Math.ceil(number) || 0; + } else { + return Math.floor(number); + } +} + +function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; + + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + value = absFloor(coercedNumber); + } + + return value; +} + +// compare two arrays, return the number of differences +function compareArrays(array1, array2, dontConvert) { + var len = Math.min(array1.length, array2.length), + lengthDiff = Math.abs(array1.length - array2.length), + diffs = 0, + i; + for (i = 0; i < len; i++) { + if ((dontConvert && array1[i] !== array2[i]) || + (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) { + diffs++; + } + } + return diffs + lengthDiff; +} + +function warn(msg) { + if (hooks.suppressDeprecationWarnings === false && + (typeof console !== 'undefined') && console.warn) { + console.warn('Deprecation warning: ' + msg); + } +} + +function deprecate(msg, fn) { + var firstTime = true; + + return extend(function () { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(null, msg); + } + if (firstTime) { + var args = []; + var arg; + for (var i = 0; i < arguments.length; i++) { + arg = ''; + if (typeof arguments[i] === 'object') { + arg += '\n[' + i + '] '; + for (var key in arguments[0]) { + arg += key + ': ' + arguments[0][key] + ', '; + } + arg = arg.slice(0, -2); // Remove trailing comma and space + } else { + arg = arguments[i]; + } + args.push(arg); + } + warn(msg + '\nArguments: ' + Array.prototype.slice.call(args).join('') + '\n' + (new Error()).stack); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); +} + +var deprecations = {}; + +function deprecateSimple(name, msg) { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(name, msg); + } + if (!deprecations[name]) { + warn(msg); + deprecations[name] = true; + } +} + +hooks.suppressDeprecationWarnings = false; +hooks.deprecationHandler = null; + +function isFunction(input) { + return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]'; +} + +function set (config) { + var prop, i; + for (i in config) { + prop = config[i]; + if (isFunction(prop)) { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + this._config = config; + // Lenient ordinal parsing accepts just a number in addition to + // number + (possibly) stuff coming from _dayOfMonthOrdinalParse. + // TODO: Remove "ordinalParse" fallback in next major release. + this._dayOfMonthOrdinalParseLenient = new RegExp( + (this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) + + '|' + (/\d{1,2}/).source); +} + +function mergeConfigs(parentConfig, childConfig) { + var res = extend({}, parentConfig), prop; + for (prop in childConfig) { + if (hasOwnProp(childConfig, prop)) { + if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) { + res[prop] = {}; + extend(res[prop], parentConfig[prop]); + extend(res[prop], childConfig[prop]); + } else if (childConfig[prop] != null) { + res[prop] = childConfig[prop]; + } else { + delete res[prop]; + } + } + } + for (prop in parentConfig) { + if (hasOwnProp(parentConfig, prop) && + !hasOwnProp(childConfig, prop) && + isObject(parentConfig[prop])) { + // make sure changes to properties don't modify parent config + res[prop] = extend({}, res[prop]); + } + } + return res; +} + +function Locale(config) { + if (config != null) { + this.set(config); + } +} + +var keys; + +if (Object.keys) { + keys = Object.keys; +} else { + keys = function (obj) { + var i, res = []; + for (i in obj) { + if (hasOwnProp(obj, i)) { + res.push(i); + } + } + return res; + }; +} + +var defaultCalendar = { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' +}; + +function calendar (key, mom, now) { + var output = this._calendar[key] || this._calendar['sameElse']; + return isFunction(output) ? output.call(mom, now) : output; +} + +var defaultLongDateFormat = { + LTS : 'h:mm:ss A', + LT : 'h:mm A', + L : 'MM/DD/YYYY', + LL : 'MMMM D, YYYY', + LLL : 'MMMM D, YYYY h:mm A', + LLLL : 'dddd, MMMM D, YYYY h:mm A' +}; + +function longDateFormat (key) { + var format = this._longDateFormat[key], + formatUpper = this._longDateFormat[key.toUpperCase()]; + + if (format || !formatUpper) { + return format; + } + + this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) { + return val.slice(1); + }); + + return this._longDateFormat[key]; +} + +var defaultInvalidDate = 'Invalid date'; + +function invalidDate () { + return this._invalidDate; +} + +var defaultOrdinal = '%d'; +var defaultDayOfMonthOrdinalParse = /\d{1,2}/; + +function ordinal (number) { + return this._ordinal.replace('%d', number); +} + +var defaultRelativeTime = { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + ss : '%d seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' +}; + +function relativeTime (number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return (isFunction(output)) ? + output(number, withoutSuffix, string, isFuture) : + output.replace(/%d/i, number); +} + +function pastFuture (diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return isFunction(format) ? format(output) : format.replace(/%s/i, output); +} + +var aliases = {}; + +function addUnitAlias (unit, shorthand) { + var lowerCase = unit.toLowerCase(); + aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit; +} + +function normalizeUnits(units) { + return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined; +} + +function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; + + for (prop in inputObject) { + if (hasOwnProp(inputObject, prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } + + return normalizedInput; +} + +var priorities = {}; + +function addUnitPriority(unit, priority) { + priorities[unit] = priority; +} + +function getPrioritizedUnits(unitsObj) { + var units = []; + for (var u in unitsObj) { + units.push({unit: u, priority: priorities[u]}); + } + units.sort(function (a, b) { + return a.priority - b.priority; + }); + return units; +} + +function zeroFill(number, targetLength, forceSign) { + var absNumber = '' + Math.abs(number), + zerosToFill = targetLength - absNumber.length, + sign = number >= 0; + return (sign ? (forceSign ? '+' : '') : '-') + + Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber; +} + +var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g; + +var localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g; + +var formatFunctions = {}; + +var formatTokenFunctions = {}; + +// token: 'M' +// padded: ['MM', 2] +// ordinal: 'Mo' +// callback: function () { this.month() + 1 } +function addFormatToken (token, padded, ordinal, callback) { + var func = callback; + if (typeof callback === 'string') { + func = function () { + return this[callback](); + }; + } + if (token) { + formatTokenFunctions[token] = func; + } + if (padded) { + formatTokenFunctions[padded[0]] = function () { + return zeroFill(func.apply(this, arguments), padded[1], padded[2]); + }; + } + if (ordinal) { + formatTokenFunctions[ordinal] = function () { + return this.localeData().ordinal(func.apply(this, arguments), token); + }; + } +} + +function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + return input.replace(/\\/g, ''); +} + +function makeFormatFunction(format) { + var array = format.match(formattingTokens), i, length; + + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } + + return function (mom) { + var output = '', i; + for (i = 0; i < length; i++) { + output += isFunction(array[i]) ? array[i].call(mom, format) : array[i]; + } + return output; + }; +} + +// format date using native date object +function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } + + format = expandFormat(format, m.localeData()); + formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format); + + return formatFunctions[format](m); +} + +function expandFormat(format, locale) { + var i = 5; + + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } + + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } + + return format; +} + +var match1 = /\d/; // 0 - 9 +var match2 = /\d\d/; // 00 - 99 +var match3 = /\d{3}/; // 000 - 999 +var match4 = /\d{4}/; // 0000 - 9999 +var match6 = /[+-]?\d{6}/; // -999999 - 999999 +var match1to2 = /\d\d?/; // 0 - 99 +var match3to4 = /\d\d\d\d?/; // 999 - 9999 +var match5to6 = /\d\d\d\d\d\d?/; // 99999 - 999999 +var match1to3 = /\d{1,3}/; // 0 - 999 +var match1to4 = /\d{1,4}/; // 0 - 9999 +var match1to6 = /[+-]?\d{1,6}/; // -999999 - 999999 + +var matchUnsigned = /\d+/; // 0 - inf +var matchSigned = /[+-]?\d+/; // -inf - inf + +var matchOffset = /Z|[+-]\d\d:?\d\d/gi; // +00:00 -00:00 +0000 -0000 or Z +var matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z + +var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123 + +// any word (or two) characters or numbers including two/three word month in arabic. +// includes scottish gaelic two word and hyphenated months +var matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i; + +var regexes = {}; + +function addRegexToken (token, regex, strictRegex) { + regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) { + return (isStrict && strictRegex) ? strictRegex : regex; + }; +} + +function getParseRegexForToken (token, config) { + if (!hasOwnProp(regexes, token)) { + return new RegExp(unescapeFormat(token)); + } + + return regexes[token](config._strict, config._locale); +} + +// Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript +function unescapeFormat(s) { + return regexEscape(s.replace('\\', '').replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + })); +} + +function regexEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); +} + +var tokens = {}; + +function addParseToken (token, callback) { + var i, func = callback; + if (typeof token === 'string') { + token = [token]; + } + if (isNumber(callback)) { + func = function (input, array) { + array[callback] = toInt(input); + }; + } + for (i = 0; i < token.length; i++) { + tokens[token[i]] = func; + } +} + +function addWeekParseToken (token, callback) { + addParseToken(token, function (input, array, config, token) { + config._w = config._w || {}; + callback(input, config._w, config, token); + }); +} + +function addTimeToArrayFromToken(token, input, config) { + if (input != null && hasOwnProp(tokens, token)) { + tokens[token](input, config._a, config, token); + } +} + +var YEAR = 0; +var MONTH = 1; +var DATE = 2; +var HOUR = 3; +var MINUTE = 4; +var SECOND = 5; +var MILLISECOND = 6; +var WEEK = 7; +var WEEKDAY = 8; + +// FORMATTING + +addFormatToken('Y', 0, 0, function () { + var y = this.year(); + return y <= 9999 ? '' + y : '+' + y; +}); + +addFormatToken(0, ['YY', 2], 0, function () { + return this.year() % 100; +}); + +addFormatToken(0, ['YYYY', 4], 0, 'year'); +addFormatToken(0, ['YYYYY', 5], 0, 'year'); +addFormatToken(0, ['YYYYYY', 6, true], 0, 'year'); + +// ALIASES + +addUnitAlias('year', 'y'); + +// PRIORITIES + +addUnitPriority('year', 1); + +// PARSING + +addRegexToken('Y', matchSigned); +addRegexToken('YY', match1to2, match2); +addRegexToken('YYYY', match1to4, match4); +addRegexToken('YYYYY', match1to6, match6); +addRegexToken('YYYYYY', match1to6, match6); + +addParseToken(['YYYYY', 'YYYYYY'], YEAR); +addParseToken('YYYY', function (input, array) { + array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input); +}); +addParseToken('YY', function (input, array) { + array[YEAR] = hooks.parseTwoDigitYear(input); +}); +addParseToken('Y', function (input, array) { + array[YEAR] = parseInt(input, 10); +}); + +// HELPERS + +function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; +} + +function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; +} + +// HOOKS + +hooks.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); +}; + +// MOMENTS + +var getSetYear = makeGetSet('FullYear', true); + +function getIsLeapYear () { + return isLeapYear(this.year()); +} + +function makeGetSet (unit, keepTime) { + return function (value) { + if (value != null) { + set$1(this, unit, value); + hooks.updateOffset(this, keepTime); + return this; + } else { + return get(this, unit); + } + }; +} + +function get (mom, unit) { + return mom.isValid() ? + mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN; +} + +function set$1 (mom, unit, value) { + if (mom.isValid() && !isNaN(value)) { + if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) { + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month())); + } + else { + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } + } +} + +// MOMENTS + +function stringGet (units) { + units = normalizeUnits(units); + if (isFunction(this[units])) { + return this[units](); + } + return this; +} + + +function stringSet (units, value) { + if (typeof units === 'object') { + units = normalizeObjectUnits(units); + var prioritized = getPrioritizedUnits(units); + for (var i = 0; i < prioritized.length; i++) { + this[prioritized[i].unit](units[prioritized[i].unit]); + } + } else { + units = normalizeUnits(units); + if (isFunction(this[units])) { + return this[units](value); + } + } + return this; +} + +function mod(n, x) { + return ((n % x) + x) % x; +} + +var indexOf; + +if (Array.prototype.indexOf) { + indexOf = Array.prototype.indexOf; +} else { + indexOf = function (o) { + // I know + var i; + for (i = 0; i < this.length; ++i) { + if (this[i] === o) { + return i; + } + } + return -1; + }; +} + +function daysInMonth(year, month) { + if (isNaN(year) || isNaN(month)) { + return NaN; + } + var modMonth = mod(month, 12); + year += (month - modMonth) / 12; + return modMonth === 1 ? (isLeapYear(year) ? 29 : 28) : (31 - modMonth % 7 % 2); +} + +// FORMATTING + +addFormatToken('M', ['MM', 2], 'Mo', function () { + return this.month() + 1; +}); + +addFormatToken('MMM', 0, 0, function (format) { + return this.localeData().monthsShort(this, format); +}); + +addFormatToken('MMMM', 0, 0, function (format) { + return this.localeData().months(this, format); +}); + +// ALIASES + +addUnitAlias('month', 'M'); + +// PRIORITY + +addUnitPriority('month', 8); + +// PARSING + +addRegexToken('M', match1to2); +addRegexToken('MM', match1to2, match2); +addRegexToken('MMM', function (isStrict, locale) { + return locale.monthsShortRegex(isStrict); +}); +addRegexToken('MMMM', function (isStrict, locale) { + return locale.monthsRegex(isStrict); +}); + +addParseToken(['M', 'MM'], function (input, array) { + array[MONTH] = toInt(input) - 1; +}); + +addParseToken(['MMM', 'MMMM'], function (input, array, config, token) { + var month = config._locale.monthsParse(input, token, config._strict); + // if we didn't find a month name, mark the date as invalid. + if (month != null) { + array[MONTH] = month; + } else { + getParsingFlags(config).invalidMonth = input; + } +}); + +// LOCALES + +var MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/; +var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'); +function localeMonths (m, format) { + if (!m) { + return isArray(this._months) ? this._months : + this._months['standalone']; + } + return isArray(this._months) ? this._months[m.month()] : + this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()]; +} + +var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'); +function localeMonthsShort (m, format) { + if (!m) { + return isArray(this._monthsShort) ? this._monthsShort : + this._monthsShort['standalone']; + } + return isArray(this._monthsShort) ? this._monthsShort[m.month()] : + this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()]; +} + +function handleStrictParse(monthName, format, strict) { + var i, ii, mom, llc = monthName.toLocaleLowerCase(); + if (!this._monthsParse) { + // this is not used + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + for (i = 0; i < 12; ++i) { + mom = createUTC([2000, i]); + this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase(); + this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'MMM') { + ii = indexOf.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'MMM') { + ii = indexOf.call(this._shortMonthsParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._longMonthsParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } +} + +function localeMonthsParse (monthName, format, strict) { + var i, mom, regex; + + if (this._monthsParseExact) { + return handleStrictParse.call(this, monthName, format, strict); + } + + if (!this._monthsParse) { + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + } + + // TODO: add sorting + // Sorting makes sure if one month (or abbr) is a prefix of another + // see sorting in computeMonthsParse + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + if (strict && !this._longMonthsParse[i]) { + this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i'); + this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i'); + } + if (!strict && !this._monthsParse[i]) { + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) { + return i; + } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) { + return i; + } else if (!strict && this._monthsParse[i].test(monthName)) { + return i; + } + } +} + +// MOMENTS + +function setMonth (mom, value) { + var dayOfMonth; + + if (!mom.isValid()) { + // No op + return mom; + } + + if (typeof value === 'string') { + if (/^\d+$/.test(value)) { + value = toInt(value); + } else { + value = mom.localeData().monthsParse(value); + // TODO: Another silent failure? + if (!isNumber(value)) { + return mom; + } + } + } + + dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value)); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + return mom; +} + +function getSetMonth (value) { + if (value != null) { + setMonth(this, value); + hooks.updateOffset(this, true); + return this; + } else { + return get(this, 'Month'); + } +} + +function getDaysInMonth () { + return daysInMonth(this.year(), this.month()); +} + +var defaultMonthsShortRegex = matchWord; +function monthsShortRegex (isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + if (isStrict) { + return this._monthsShortStrictRegex; + } else { + return this._monthsShortRegex; + } + } else { + if (!hasOwnProp(this, '_monthsShortRegex')) { + this._monthsShortRegex = defaultMonthsShortRegex; + } + return this._monthsShortStrictRegex && isStrict ? + this._monthsShortStrictRegex : this._monthsShortRegex; + } +} + +var defaultMonthsRegex = matchWord; +function monthsRegex (isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + if (isStrict) { + return this._monthsStrictRegex; + } else { + return this._monthsRegex; + } + } else { + if (!hasOwnProp(this, '_monthsRegex')) { + this._monthsRegex = defaultMonthsRegex; + } + return this._monthsStrictRegex && isStrict ? + this._monthsStrictRegex : this._monthsRegex; + } +} + +function computeMonthsParse () { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var shortPieces = [], longPieces = [], mixedPieces = [], + i, mom; + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + shortPieces.push(this.monthsShort(mom, '')); + longPieces.push(this.months(mom, '')); + mixedPieces.push(this.months(mom, '')); + mixedPieces.push(this.monthsShort(mom, '')); + } + // Sorting makes sure if one month (or abbr) is a prefix of another it + // will match the longer piece. + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + for (i = 0; i < 12; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + } + for (i = 0; i < 24; i++) { + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._monthsShortRegex = this._monthsRegex; + this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i'); + this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i'); +} + +function createDate (y, m, d, h, M, s, ms) { + // can't just apply() to create a date: + // https://stackoverflow.com/q/181348 + var date = new Date(y, m, d, h, M, s, ms); + + // the date constructor remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0 && isFinite(date.getFullYear())) { + date.setFullYear(y); + } + return date; +} + +function createUTCDate (y) { + var date = new Date(Date.UTC.apply(null, arguments)); + + // the Date.UTC function remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0 && isFinite(date.getUTCFullYear())) { + date.setUTCFullYear(y); + } + return date; +} + +// start-of-first-week - start-of-year +function firstWeekOffset(year, dow, doy) { + var // first-week day -- which january is always in the first week (4 for iso, 1 for other) + fwd = 7 + dow - doy, + // first-week day local weekday -- which local weekday is fwd + fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7; + + return -fwdlw + fwd - 1; +} + +// https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday +function dayOfYearFromWeeks(year, week, weekday, dow, doy) { + var localWeekday = (7 + weekday - dow) % 7, + weekOffset = firstWeekOffset(year, dow, doy), + dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset, + resYear, resDayOfYear; + + if (dayOfYear <= 0) { + resYear = year - 1; + resDayOfYear = daysInYear(resYear) + dayOfYear; + } else if (dayOfYear > daysInYear(year)) { + resYear = year + 1; + resDayOfYear = dayOfYear - daysInYear(year); + } else { + resYear = year; + resDayOfYear = dayOfYear; + } + + return { + year: resYear, + dayOfYear: resDayOfYear + }; +} + +function weekOfYear(mom, dow, doy) { + var weekOffset = firstWeekOffset(mom.year(), dow, doy), + week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1, + resWeek, resYear; + + if (week < 1) { + resYear = mom.year() - 1; + resWeek = week + weeksInYear(resYear, dow, doy); + } else if (week > weeksInYear(mom.year(), dow, doy)) { + resWeek = week - weeksInYear(mom.year(), dow, doy); + resYear = mom.year() + 1; + } else { + resYear = mom.year(); + resWeek = week; + } + + return { + week: resWeek, + year: resYear + }; +} + +function weeksInYear(year, dow, doy) { + var weekOffset = firstWeekOffset(year, dow, doy), + weekOffsetNext = firstWeekOffset(year + 1, dow, doy); + return (daysInYear(year) - weekOffset + weekOffsetNext) / 7; +} + +// FORMATTING + +addFormatToken('w', ['ww', 2], 'wo', 'week'); +addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek'); + +// ALIASES + +addUnitAlias('week', 'w'); +addUnitAlias('isoWeek', 'W'); + +// PRIORITIES + +addUnitPriority('week', 5); +addUnitPriority('isoWeek', 5); + +// PARSING + +addRegexToken('w', match1to2); +addRegexToken('ww', match1to2, match2); +addRegexToken('W', match1to2); +addRegexToken('WW', match1to2, match2); + +addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) { + week[token.substr(0, 1)] = toInt(input); +}); + +// HELPERS + +// LOCALES + +function localeWeek (mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; +} + +var defaultLocaleWeek = { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. +}; + +function localeFirstDayOfWeek () { + return this._week.dow; +} + +function localeFirstDayOfYear () { + return this._week.doy; +} + +// MOMENTS + +function getSetWeek (input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); +} + +function getSetISOWeek (input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); +} + +// FORMATTING + +addFormatToken('d', 0, 'do', 'day'); + +addFormatToken('dd', 0, 0, function (format) { + return this.localeData().weekdaysMin(this, format); +}); + +addFormatToken('ddd', 0, 0, function (format) { + return this.localeData().weekdaysShort(this, format); +}); + +addFormatToken('dddd', 0, 0, function (format) { + return this.localeData().weekdays(this, format); +}); + +addFormatToken('e', 0, 0, 'weekday'); +addFormatToken('E', 0, 0, 'isoWeekday'); + +// ALIASES + +addUnitAlias('day', 'd'); +addUnitAlias('weekday', 'e'); +addUnitAlias('isoWeekday', 'E'); + +// PRIORITY +addUnitPriority('day', 11); +addUnitPriority('weekday', 11); +addUnitPriority('isoWeekday', 11); + +// PARSING + +addRegexToken('d', match1to2); +addRegexToken('e', match1to2); +addRegexToken('E', match1to2); +addRegexToken('dd', function (isStrict, locale) { + return locale.weekdaysMinRegex(isStrict); +}); +addRegexToken('ddd', function (isStrict, locale) { + return locale.weekdaysShortRegex(isStrict); +}); +addRegexToken('dddd', function (isStrict, locale) { + return locale.weekdaysRegex(isStrict); +}); + +addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) { + var weekday = config._locale.weekdaysParse(input, token, config._strict); + // if we didn't get a weekday name, mark the date as invalid + if (weekday != null) { + week.d = weekday; + } else { + getParsingFlags(config).invalidWeekday = input; + } +}); + +addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) { + week[token] = toInt(input); +}); + +// HELPERS + +function parseWeekday(input, locale) { + if (typeof input !== 'string') { + return input; + } + + if (!isNaN(input)) { + return parseInt(input, 10); + } + + input = locale.weekdaysParse(input); + if (typeof input === 'number') { + return input; + } + + return null; +} + +function parseIsoWeekday(input, locale) { + if (typeof input === 'string') { + return locale.weekdaysParse(input) % 7 || 7; + } + return isNaN(input) ? null : input; +} + +// LOCALES + +var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'); +function localeWeekdays (m, format) { + if (!m) { + return isArray(this._weekdays) ? this._weekdays : + this._weekdays['standalone']; + } + return isArray(this._weekdays) ? this._weekdays[m.day()] : + this._weekdays[this._weekdays.isFormat.test(format) ? 'format' : 'standalone'][m.day()]; +} + +var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'); +function localeWeekdaysShort (m) { + return (m) ? this._weekdaysShort[m.day()] : this._weekdaysShort; +} + +var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'); +function localeWeekdaysMin (m) { + return (m) ? this._weekdaysMin[m.day()] : this._weekdaysMin; +} + +function handleStrictParse$1(weekdayName, format, strict) { + var i, ii, mom, llc = weekdayName.toLocaleLowerCase(); + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._shortWeekdaysParse = []; + this._minWeekdaysParse = []; + + for (i = 0; i < 7; ++i) { + mom = createUTC([2000, 1]).day(i); + this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase(); + this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase(); + this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'dddd') { + ii = indexOf.call(this._weekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'dddd') { + ii = indexOf.call(this._weekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._shortWeekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf.call(this._shortWeekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._weekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._minWeekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._weekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } +} + +function localeWeekdaysParse (weekdayName, format, strict) { + var i, mom, regex; + + if (this._weekdaysParseExact) { + return handleStrictParse$1.call(this, weekdayName, format, strict); + } + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._minWeekdaysParse = []; + this._shortWeekdaysParse = []; + this._fullWeekdaysParse = []; + } + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + + mom = createUTC([2000, 1]).day(i); + if (strict && !this._fullWeekdaysParse[i]) { + this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\.?') + '$', 'i'); + this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\.?') + '$', 'i'); + this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\.?') + '$', 'i'); + } + if (!this._weekdaysParse[i]) { + regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (!strict && this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } +} + +// MOMENTS + +function getSetDayOfWeek (input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + if (input != null) { + input = parseWeekday(input, this.localeData()); + return this.add(input - day, 'd'); + } else { + return day; + } +} + +function getSetLocaleDayOfWeek (input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); +} + +function getSetISODayOfWeek (input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + + // behaves the same as moment#day except + // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) + // as a setter, sunday should belong to the previous week. + + if (input != null) { + var weekday = parseIsoWeekday(input, this.localeData()); + return this.day(this.day() % 7 ? weekday : weekday - 7); + } else { + return this.day() || 7; + } +} + +var defaultWeekdaysRegex = matchWord; +function weekdaysRegex (isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + if (isStrict) { + return this._weekdaysStrictRegex; + } else { + return this._weekdaysRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysRegex')) { + this._weekdaysRegex = defaultWeekdaysRegex; + } + return this._weekdaysStrictRegex && isStrict ? + this._weekdaysStrictRegex : this._weekdaysRegex; + } +} + +var defaultWeekdaysShortRegex = matchWord; +function weekdaysShortRegex (isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + if (isStrict) { + return this._weekdaysShortStrictRegex; + } else { + return this._weekdaysShortRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysShortRegex')) { + this._weekdaysShortRegex = defaultWeekdaysShortRegex; + } + return this._weekdaysShortStrictRegex && isStrict ? + this._weekdaysShortStrictRegex : this._weekdaysShortRegex; + } +} + +var defaultWeekdaysMinRegex = matchWord; +function weekdaysMinRegex (isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + if (isStrict) { + return this._weekdaysMinStrictRegex; + } else { + return this._weekdaysMinRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysMinRegex')) { + this._weekdaysMinRegex = defaultWeekdaysMinRegex; + } + return this._weekdaysMinStrictRegex && isStrict ? + this._weekdaysMinStrictRegex : this._weekdaysMinRegex; + } +} + + +function computeWeekdaysParse () { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var minPieces = [], shortPieces = [], longPieces = [], mixedPieces = [], + i, mom, minp, shortp, longp; + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, 1]).day(i); + minp = this.weekdaysMin(mom, ''); + shortp = this.weekdaysShort(mom, ''); + longp = this.weekdays(mom, ''); + minPieces.push(minp); + shortPieces.push(shortp); + longPieces.push(longp); + mixedPieces.push(minp); + mixedPieces.push(shortp); + mixedPieces.push(longp); + } + // Sorting makes sure if one weekday (or abbr) is a prefix of another it + // will match the longer piece. + minPieces.sort(cmpLenRev); + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + for (i = 0; i < 7; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._weekdaysShortRegex = this._weekdaysRegex; + this._weekdaysMinRegex = this._weekdaysRegex; + + this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i'); + this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i'); + this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i'); +} + +// FORMATTING + +function hFormat() { + return this.hours() % 12 || 12; +} + +function kFormat() { + return this.hours() || 24; +} + +addFormatToken('H', ['HH', 2], 0, 'hour'); +addFormatToken('h', ['hh', 2], 0, hFormat); +addFormatToken('k', ['kk', 2], 0, kFormat); + +addFormatToken('hmm', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2); +}); + +addFormatToken('hmmss', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) + + zeroFill(this.seconds(), 2); +}); + +addFormatToken('Hmm', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2); +}); + +addFormatToken('Hmmss', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2) + + zeroFill(this.seconds(), 2); +}); + +function meridiem (token, lowercase) { + addFormatToken(token, 0, 0, function () { + return this.localeData().meridiem(this.hours(), this.minutes(), lowercase); + }); +} + +meridiem('a', true); +meridiem('A', false); + +// ALIASES + +addUnitAlias('hour', 'h'); + +// PRIORITY +addUnitPriority('hour', 13); + +// PARSING + +function matchMeridiem (isStrict, locale) { + return locale._meridiemParse; +} + +addRegexToken('a', matchMeridiem); +addRegexToken('A', matchMeridiem); +addRegexToken('H', match1to2); +addRegexToken('h', match1to2); +addRegexToken('k', match1to2); +addRegexToken('HH', match1to2, match2); +addRegexToken('hh', match1to2, match2); +addRegexToken('kk', match1to2, match2); + +addRegexToken('hmm', match3to4); +addRegexToken('hmmss', match5to6); +addRegexToken('Hmm', match3to4); +addRegexToken('Hmmss', match5to6); + +addParseToken(['H', 'HH'], HOUR); +addParseToken(['k', 'kk'], function (input, array, config) { + var kInput = toInt(input); + array[HOUR] = kInput === 24 ? 0 : kInput; +}); +addParseToken(['a', 'A'], function (input, array, config) { + config._isPm = config._locale.isPM(input); + config._meridiem = input; +}); +addParseToken(['h', 'hh'], function (input, array, config) { + array[HOUR] = toInt(input); + getParsingFlags(config).bigHour = true; +}); +addParseToken('hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); + getParsingFlags(config).bigHour = true; +}); +addParseToken('hmmss', function (input, array, config) { + var pos1 = input.length - 4; + var pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); + getParsingFlags(config).bigHour = true; +}); +addParseToken('Hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); +}); +addParseToken('Hmmss', function (input, array, config) { + var pos1 = input.length - 4; + var pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); +}); + +// LOCALES + +function localeIsPM (input) { + // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays + // Using charAt should be more compatible. + return ((input + '').toLowerCase().charAt(0) === 'p'); +} + +var defaultLocaleMeridiemParse = /[ap]\.?m?\.?/i; +function localeMeridiem (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } +} + + +// MOMENTS + +// Setting the hour should keep the time, because the user explicitly +// specified which hour he wants. So trying to maintain the same hour (in +// a new timezone) makes sense. Adding/subtracting hours does not follow +// this rule. +var getSetHour = makeGetSet('Hours', true); + +var baseConfig = { + calendar: defaultCalendar, + longDateFormat: defaultLongDateFormat, + invalidDate: defaultInvalidDate, + ordinal: defaultOrdinal, + dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse, + relativeTime: defaultRelativeTime, + + months: defaultLocaleMonths, + monthsShort: defaultLocaleMonthsShort, + + week: defaultLocaleWeek, + + weekdays: defaultLocaleWeekdays, + weekdaysMin: defaultLocaleWeekdaysMin, + weekdaysShort: defaultLocaleWeekdaysShort, + + meridiemParse: defaultLocaleMeridiemParse +}; + +// internal storage for locale config files +var locales = {}; +var localeFamilies = {}; +var globalLocale; + +function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; +} + +// pick the locale from the array +// try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each +// substring from most specific to least, but move to the next array item if it's a more specific variant than the current root +function chooseLocale(names) { + var i = 0, j, next, locale, split; + + while (i < names.length) { + split = normalizeLocale(names[i]).split('-'); + j = split.length; + next = normalizeLocale(names[i + 1]); + next = next ? next.split('-') : null; + while (j > 0) { + locale = loadLocale(split.slice(0, j).join('-')); + if (locale) { + return locale; + } + if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { + //the next array item is better than a shallower substring of this one + break; + } + j--; + } + i++; + } + return globalLocale; +} + +function loadLocale(name) { + var oldLocale = null; + // TODO: Find a better way to register and load all the locales in Node + if (!locales[name] && (typeof module !== 'undefined') && + module && module.exports) { + try { + oldLocale = globalLocale._abbr; + var aliasedRequire = require; + aliasedRequire('./locale/' + name); + getSetGlobalLocale(oldLocale); + } catch (e) {} + } + return locales[name]; +} + +// This function will load locale and then set the global locale. If +// no arguments are passed in, it will simply return the current global +// locale key. +function getSetGlobalLocale (key, values) { + var data; + if (key) { + if (isUndefined(values)) { + data = getLocale(key); + } + else { + data = defineLocale(key, values); + } + + if (data) { + // moment.duration._locale = moment._locale = data; + globalLocale = data; + } + else { + if ((typeof console !== 'undefined') && console.warn) { + //warn user if arguments are passed but the locale could not be set + console.warn('Locale ' + key + ' not found. Did you forget to load it?'); + } + } + } + + return globalLocale._abbr; +} + +function defineLocale (name, config) { + if (config !== null) { + var locale, parentConfig = baseConfig; + config.abbr = name; + if (locales[name] != null) { + deprecateSimple('defineLocaleOverride', + 'use moment.updateLocale(localeName, config) to change ' + + 'an existing locale. moment.defineLocale(localeName, ' + + 'config) should only be used for creating a new locale ' + + 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.'); + parentConfig = locales[name]._config; + } else if (config.parentLocale != null) { + if (locales[config.parentLocale] != null) { + parentConfig = locales[config.parentLocale]._config; + } else { + locale = loadLocale(config.parentLocale); + if (locale != null) { + parentConfig = locale._config; + } else { + if (!localeFamilies[config.parentLocale]) { + localeFamilies[config.parentLocale] = []; + } + localeFamilies[config.parentLocale].push({ + name: name, + config: config + }); + return null; + } + } + } + locales[name] = new Locale(mergeConfigs(parentConfig, config)); + + if (localeFamilies[name]) { + localeFamilies[name].forEach(function (x) { + defineLocale(x.name, x.config); + }); + } + + // backwards compat for now: also set the locale + // make sure we set the locale AFTER all child locales have been + // created, so we won't end up with the child locale set. + getSetGlobalLocale(name); + + + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } +} + +function updateLocale(name, config) { + if (config != null) { + var locale, tmpLocale, parentConfig = baseConfig; + // MERGE + tmpLocale = loadLocale(name); + if (tmpLocale != null) { + parentConfig = tmpLocale._config; + } + config = mergeConfigs(parentConfig, config); + locale = new Locale(config); + locale.parentLocale = locales[name]; + locales[name] = locale; + + // backwards compat for now: also set the locale + getSetGlobalLocale(name); + } else { + // pass null for config to unupdate, useful for tests + if (locales[name] != null) { + if (locales[name].parentLocale != null) { + locales[name] = locales[name].parentLocale; + } else if (locales[name] != null) { + delete locales[name]; + } + } + } + return locales[name]; +} + +// returns locale data +function getLocale (key) { + var locale; + + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + + if (!key) { + return globalLocale; + } + + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + if (locale) { + return locale; + } + key = [key]; + } + + return chooseLocale(key); +} + +function listLocales() { + return keys(locales); +} + +function checkOverflow (m) { + var overflow; + var a = m._a; + + if (a && getParsingFlags(m).overflow === -2) { + overflow = + a[MONTH] < 0 || a[MONTH] > 11 ? MONTH : + a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE : + a[HOUR] < 0 || a[HOUR] > 24 || (a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0)) ? HOUR : + a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE : + a[SECOND] < 0 || a[SECOND] > 59 ? SECOND : + a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND : + -1; + + if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } + if (getParsingFlags(m)._overflowWeeks && overflow === -1) { + overflow = WEEK; + } + if (getParsingFlags(m)._overflowWeekday && overflow === -1) { + overflow = WEEKDAY; + } + + getParsingFlags(m).overflow = overflow; + } + + return m; +} + +// Pick the first defined of two or three arguments. +function defaults(a, b, c) { + if (a != null) { + return a; + } + if (b != null) { + return b; + } + return c; +} + +function currentDateArray(config) { + // hooks is actually the exported moment object + var nowValue = new Date(hooks.now()); + if (config._useUTC) { + return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()]; + } + return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()]; +} + +// convert an array to a date. +// the array should mirror the parameters below +// note: all values past the year are optional and will default to the lowest possible value. +// [year, month, day , hour, minute, second, millisecond] +function configFromArray (config) { + var i, date, input = [], currentDate, expectedWeekday, yearToUse; + + if (config._d) { + return; + } + + currentDate = currentDateArray(config); + + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } + + //if the day of the year is set, figure out what it is + if (config._dayOfYear != null) { + yearToUse = defaults(config._a[YEAR], currentDate[YEAR]); + + if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) { + getParsingFlags(config)._overflowDayOfYear = true; + } + + date = createUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } + + // Default to current date. + // * if no year, month, day of month are given, default to today + // * if day of month is given, default month and year + // * if month is given, default only year + // * if year is given, don't default anything + for (i = 0; i < 3 && config._a[i] == null; ++i) { + config._a[i] = input[i] = currentDate[i]; + } + + // Zero out whatever was not defaulted, including time + for (; i < 7; i++) { + config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i]; + } + + // Check for 24:00:00.000 + if (config._a[HOUR] === 24 && + config._a[MINUTE] === 0 && + config._a[SECOND] === 0 && + config._a[MILLISECOND] === 0) { + config._nextDay = true; + config._a[HOUR] = 0; + } + + config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input); + expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay(); + + // Apply timezone offset from input. The actual utcOffset can be changed + // with parseZone. + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + } + + if (config._nextDay) { + config._a[HOUR] = 24; + } + + // check for mismatching day of week + if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) { + getParsingFlags(config).weekdayMismatch = true; + } +} + +function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow; + + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; + + // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year); + week = defaults(w.W, 1); + weekday = defaults(w.E, 1); + if (weekday < 1 || weekday > 7) { + weekdayOverflow = true; + } + } else { + dow = config._locale._week.dow; + doy = config._locale._week.doy; + + var curWeek = weekOfYear(createLocal(), dow, doy); + + weekYear = defaults(w.gg, config._a[YEAR], curWeek.year); + + // Default to current week. + week = defaults(w.w, curWeek.week); + + if (w.d != null) { + // weekday -- low day numbers are considered next week + weekday = w.d; + if (weekday < 0 || weekday > 6) { + weekdayOverflow = true; + } + } else if (w.e != null) { + // local weekday -- counting starts from begining of week + weekday = w.e + dow; + if (w.e < 0 || w.e > 6) { + weekdayOverflow = true; + } + } else { + // default to begining of week + weekday = dow; + } + } + if (week < 1 || week > weeksInYear(weekYear, dow, doy)) { + getParsingFlags(config)._overflowWeeks = true; + } else if (weekdayOverflow != null) { + getParsingFlags(config)._overflowWeekday = true; + } else { + temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy); + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } +} + +// iso 8601 regex +// 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) +var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; +var basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; + +var tzRegex = /Z|[+-]\d\d(?::?\d\d)?/; + +var isoDates = [ + ['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/], + ['YYYY-MM-DD', /\d{4}-\d\d-\d\d/], + ['GGGG-[W]WW-E', /\d{4}-W\d\d-\d/], + ['GGGG-[W]WW', /\d{4}-W\d\d/, false], + ['YYYY-DDD', /\d{4}-\d{3}/], + ['YYYY-MM', /\d{4}-\d\d/, false], + ['YYYYYYMMDD', /[+-]\d{10}/], + ['YYYYMMDD', /\d{8}/], + // YYYYMM is NOT allowed by the standard + ['GGGG[W]WWE', /\d{4}W\d{3}/], + ['GGGG[W]WW', /\d{4}W\d{2}/, false], + ['YYYYDDD', /\d{7}/] +]; + +// iso time formats and regexes +var isoTimes = [ + ['HH:mm:ss.SSSS', /\d\d:\d\d:\d\d\.\d+/], + ['HH:mm:ss,SSSS', /\d\d:\d\d:\d\d,\d+/], + ['HH:mm:ss', /\d\d:\d\d:\d\d/], + ['HH:mm', /\d\d:\d\d/], + ['HHmmss.SSSS', /\d\d\d\d\d\d\.\d+/], + ['HHmmss,SSSS', /\d\d\d\d\d\d,\d+/], + ['HHmmss', /\d\d\d\d\d\d/], + ['HHmm', /\d\d\d\d/], + ['HH', /\d\d/] +]; + +var aspNetJsonRegex = /^\/?Date\((\-?\d+)/i; + +// date from iso format +function configFromISO(config) { + var i, l, + string = config._i, + match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string), + allowTime, dateFormat, timeFormat, tzFormat; + + if (match) { + getParsingFlags(config).iso = true; + + for (i = 0, l = isoDates.length; i < l; i++) { + if (isoDates[i][1].exec(match[1])) { + dateFormat = isoDates[i][0]; + allowTime = isoDates[i][2] !== false; + break; + } + } + if (dateFormat == null) { + config._isValid = false; + return; + } + if (match[3]) { + for (i = 0, l = isoTimes.length; i < l; i++) { + if (isoTimes[i][1].exec(match[3])) { + // match[2] should be 'T' or space + timeFormat = (match[2] || ' ') + isoTimes[i][0]; + break; + } + } + if (timeFormat == null) { + config._isValid = false; + return; + } + } + if (!allowTime && timeFormat != null) { + config._isValid = false; + return; + } + if (match[4]) { + if (tzRegex.exec(match[4])) { + tzFormat = 'Z'; + } else { + config._isValid = false; + return; + } + } + config._f = dateFormat + (timeFormat || '') + (tzFormat || ''); + configFromStringAndFormat(config); + } else { + config._isValid = false; + } +} + +// RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3 +var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/; + +function extractFromRFC2822Strings(yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) { + var result = [ + untruncateYear(yearStr), + defaultLocaleMonthsShort.indexOf(monthStr), + parseInt(dayStr, 10), + parseInt(hourStr, 10), + parseInt(minuteStr, 10) + ]; + + if (secondStr) { + result.push(parseInt(secondStr, 10)); + } + + return result; +} + +function untruncateYear(yearStr) { + var year = parseInt(yearStr, 10); + if (year <= 49) { + return 2000 + year; + } else if (year <= 999) { + return 1900 + year; + } + return year; +} + +function preprocessRFC2822(s) { + // Remove comments and folding whitespace and replace multiple-spaces with a single space + return s.replace(/\([^)]*\)|[\n\t]/g, ' ').replace(/(\s\s+)/g, ' ').trim(); +} + +function checkWeekday(weekdayStr, parsedInput, config) { + if (weekdayStr) { + // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check. + var weekdayProvided = defaultLocaleWeekdaysShort.indexOf(weekdayStr), + weekdayActual = new Date(parsedInput[0], parsedInput[1], parsedInput[2]).getDay(); + if (weekdayProvided !== weekdayActual) { + getParsingFlags(config).weekdayMismatch = true; + config._isValid = false; + return false; + } + } + return true; +} + +var obsOffsets = { + UT: 0, + GMT: 0, + EDT: -4 * 60, + EST: -5 * 60, + CDT: -5 * 60, + CST: -6 * 60, + MDT: -6 * 60, + MST: -7 * 60, + PDT: -7 * 60, + PST: -8 * 60 +}; + +function calculateOffset(obsOffset, militaryOffset, numOffset) { + if (obsOffset) { + return obsOffsets[obsOffset]; + } else if (militaryOffset) { + // the only allowed military tz is Z + return 0; + } else { + var hm = parseInt(numOffset, 10); + var m = hm % 100, h = (hm - m) / 100; + return h * 60 + m; + } +} + +// date and time from ref 2822 format +function configFromRFC2822(config) { + var match = rfc2822.exec(preprocessRFC2822(config._i)); + if (match) { + var parsedArray = extractFromRFC2822Strings(match[4], match[3], match[2], match[5], match[6], match[7]); + if (!checkWeekday(match[1], parsedArray, config)) { + return; + } + + config._a = parsedArray; + config._tzm = calculateOffset(match[8], match[9], match[10]); + + config._d = createUTCDate.apply(null, config._a); + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + + getParsingFlags(config).rfc2822 = true; + } else { + config._isValid = false; + } +} + +// date from iso format or fallback +function configFromString(config) { + var matched = aspNetJsonRegex.exec(config._i); + + if (matched !== null) { + config._d = new Date(+matched[1]); + return; + } + + configFromISO(config); + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } + + configFromRFC2822(config); + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } + + // Final attempt, use Input Fallback + hooks.createFromInputFallback(config); +} + +hooks.createFromInputFallback = deprecate( + 'value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' + + 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' + + 'discouraged and will be removed in an upcoming major release. Please refer to ' + + 'http://momentjs.com/guides/#/warnings/js-date/ for more info.', + function (config) { + config._d = new Date(config._i + (config._useUTC ? ' UTC' : '')); + } +); + +// constant that refers to the ISO standard +hooks.ISO_8601 = function () {}; + +// constant that refers to the RFC 2822 form +hooks.RFC_2822 = function () {}; + +// date from string and format string +function configFromStringAndFormat(config) { + // TODO: Move this to another part of the creation flow to prevent circular deps + if (config._f === hooks.ISO_8601) { + configFromISO(config); + return; + } + if (config._f === hooks.RFC_2822) { + configFromRFC2822(config); + return; + } + config._a = []; + getParsingFlags(config).empty = true; + + // This array is used to make a Date, either with `new Date` or `Date.UTC` + var string = '' + config._i, + i, parsedInput, tokens, token, skipped, + stringLength = string.length, + totalParsedInputLength = 0; + + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; + + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; + // console.log('token', token, 'parsedInput', parsedInput, + // 'regex', getParseRegexForToken(token, config)); + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + if (skipped.length > 0) { + getParsingFlags(config).unusedInput.push(skipped); + } + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } + // don't parse if it's not a known token + if (formatTokenFunctions[token]) { + if (parsedInput) { + getParsingFlags(config).empty = false; + } + else { + getParsingFlags(config).unusedTokens.push(token); + } + addTimeToArrayFromToken(token, parsedInput, config); + } + else if (config._strict && !parsedInput) { + getParsingFlags(config).unusedTokens.push(token); + } + } + + // add remaining unparsed input length to the string + getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength; + if (string.length > 0) { + getParsingFlags(config).unusedInput.push(string); + } + + // clear _12h flag if hour is <= 12 + if (config._a[HOUR] <= 12 && + getParsingFlags(config).bigHour === true && + config._a[HOUR] > 0) { + getParsingFlags(config).bigHour = undefined; + } + + getParsingFlags(config).parsedDateParts = config._a.slice(0); + getParsingFlags(config).meridiem = config._meridiem; + // handle meridiem + config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem); + + configFromArray(config); + checkOverflow(config); +} + + +function meridiemFixWrap (locale, hour, meridiem) { + var isPm; + + if (meridiem == null) { + // nothing to do + return hour; + } + if (locale.meridiemHour != null) { + return locale.meridiemHour(hour, meridiem); + } else if (locale.isPM != null) { + // Fallback + isPm = locale.isPM(meridiem); + if (isPm && hour < 12) { + hour += 12; + } + if (!isPm && hour === 12) { + hour = 0; + } + return hour; + } else { + // this is not supposed to happen + return hour; + } +} + +// date from string and array of format strings +function configFromStringAndArray(config) { + var tempConfig, + bestMoment, + + scoreToBeat, + i, + currentScore; + + if (config._f.length === 0) { + getParsingFlags(config).invalidFormat = true; + config._d = new Date(NaN); + return; + } + + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + if (config._useUTC != null) { + tempConfig._useUTC = config._useUTC; + } + tempConfig._f = config._f[i]; + configFromStringAndFormat(tempConfig); + + if (!isValid(tempConfig)) { + continue; + } + + // if there is any input that was not parsed add a penalty for that format + currentScore += getParsingFlags(tempConfig).charsLeftOver; + + //or tokens + currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10; + + getParsingFlags(tempConfig).score = currentScore; + + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } + + extend(config, bestMoment || tempConfig); +} + +function configFromObject(config) { + if (config._d) { + return; + } + + var i = normalizeObjectUnits(config._i); + config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) { + return obj && parseInt(obj, 10); + }); + + configFromArray(config); +} + +function createFromConfig (config) { + var res = new Moment(checkOverflow(prepareConfig(config))); + if (res._nextDay) { + // Adding is smart enough around DST + res.add(1, 'd'); + res._nextDay = undefined; + } + + return res; +} + +function prepareConfig (config) { + var input = config._i, + format = config._f; + + config._locale = config._locale || getLocale(config._l); + + if (input === null || (format === undefined && input === '')) { + return createInvalid({nullInput: true}); + } + + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } + + if (isMoment(input)) { + return new Moment(checkOverflow(input)); + } else if (isDate(input)) { + config._d = input; + } else if (isArray(format)) { + configFromStringAndArray(config); + } else if (format) { + configFromStringAndFormat(config); + } else { + configFromInput(config); + } + + if (!isValid(config)) { + config._d = null; + } + + return config; +} + +function configFromInput(config) { + var input = config._i; + if (isUndefined(input)) { + config._d = new Date(hooks.now()); + } else if (isDate(input)) { + config._d = new Date(input.valueOf()); + } else if (typeof input === 'string') { + configFromString(config); + } else if (isArray(input)) { + config._a = map(input.slice(0), function (obj) { + return parseInt(obj, 10); + }); + configFromArray(config); + } else if (isObject(input)) { + configFromObject(config); + } else if (isNumber(input)) { + // from milliseconds + config._d = new Date(input); + } else { + hooks.createFromInputFallback(config); + } +} + +function createLocalOrUTC (input, format, locale, strict, isUTC) { + var c = {}; + + if (locale === true || locale === false) { + strict = locale; + locale = undefined; + } + + if ((isObject(input) && isObjectEmpty(input)) || + (isArray(input) && input.length === 0)) { + input = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c._isAMomentObject = true; + c._useUTC = c._isUTC = isUTC; + c._l = locale; + c._i = input; + c._f = format; + c._strict = strict; + + return createFromConfig(c); +} + +function createLocal (input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, false); +} + +var prototypeMin = deprecate( + 'moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/', + function () { + var other = createLocal.apply(null, arguments); + if (this.isValid() && other.isValid()) { + return other < this ? this : other; + } else { + return createInvalid(); + } + } +); + +var prototypeMax = deprecate( + 'moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/', + function () { + var other = createLocal.apply(null, arguments); + if (this.isValid() && other.isValid()) { + return other > this ? this : other; + } else { + return createInvalid(); + } + } +); + +// Pick a moment m from moments so that m[fn](other) is true for all +// other. This relies on the function fn to be transitive. +// +// moments should either be an array of moment objects or an array, whose +// first element is an array of moment objects. +function pickBy(fn, moments) { + var res, i; + if (moments.length === 1 && isArray(moments[0])) { + moments = moments[0]; + } + if (!moments.length) { + return createLocal(); + } + res = moments[0]; + for (i = 1; i < moments.length; ++i) { + if (!moments[i].isValid() || moments[i][fn](res)) { + res = moments[i]; + } + } + return res; +} + +// TODO: Use [].sort instead? +function min () { + var args = [].slice.call(arguments, 0); + + return pickBy('isBefore', args); +} + +function max () { + var args = [].slice.call(arguments, 0); + + return pickBy('isAfter', args); +} + +var now = function () { + return Date.now ? Date.now() : +(new Date()); +}; + +var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond']; + +function isDurationValid(m) { + for (var key in m) { + if (!(indexOf.call(ordering, key) !== -1 && (m[key] == null || !isNaN(m[key])))) { + return false; + } + } + + var unitHasDecimal = false; + for (var i = 0; i < ordering.length; ++i) { + if (m[ordering[i]]) { + if (unitHasDecimal) { + return false; // only allow non-integers for smallest unit + } + if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) { + unitHasDecimal = true; + } + } + } + + return true; +} + +function isValid$1() { + return this._isValid; +} + +function createInvalid$1() { + return createDuration(NaN); +} + +function Duration (duration) { + var normalizedInput = normalizeObjectUnits(duration), + years = normalizedInput.year || 0, + quarters = normalizedInput.quarter || 0, + months = normalizedInput.month || 0, + weeks = normalizedInput.week || 0, + days = normalizedInput.day || 0, + hours = normalizedInput.hour || 0, + minutes = normalizedInput.minute || 0, + seconds = normalizedInput.second || 0, + milliseconds = normalizedInput.millisecond || 0; + + this._isValid = isDurationValid(normalizedInput); + + // representation for dateAddRemove + this._milliseconds = +milliseconds + + seconds * 1e3 + // 1000 + minutes * 6e4 + // 1000 * 60 + hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978 + // Because of dateAddRemove treats 24 hours as different from a + // day when working around DST, we need to store them separately + this._days = +days + + weeks * 7; + // It is impossible to translate months into days without knowing + // which months you are are talking about, so we have to store + // it separately. + this._months = +months + + quarters * 3 + + years * 12; + + this._data = {}; + + this._locale = getLocale(); + + this._bubble(); +} + +function isDuration (obj) { + return obj instanceof Duration; +} + +function absRound (number) { + if (number < 0) { + return Math.round(-1 * number) * -1; + } else { + return Math.round(number); + } +} + +// FORMATTING + +function offset (token, separator) { + addFormatToken(token, 0, 0, function () { + var offset = this.utcOffset(); + var sign = '+'; + if (offset < 0) { + offset = -offset; + sign = '-'; + } + return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~(offset) % 60, 2); + }); +} + +offset('Z', ':'); +offset('ZZ', ''); + +// PARSING + +addRegexToken('Z', matchShortOffset); +addRegexToken('ZZ', matchShortOffset); +addParseToken(['Z', 'ZZ'], function (input, array, config) { + config._useUTC = true; + config._tzm = offsetFromString(matchShortOffset, input); +}); + +// HELPERS + +// timezone chunker +// '+10:00' > ['10', '00'] +// '-1530' > ['-15', '30'] +var chunkOffset = /([\+\-]|\d\d)/gi; + +function offsetFromString(matcher, string) { + var matches = (string || '').match(matcher); + + if (matches === null) { + return null; + } + + var chunk = matches[matches.length - 1] || []; + var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0]; + var minutes = +(parts[1] * 60) + toInt(parts[2]); + + return minutes === 0 ? + 0 : + parts[0] === '+' ? minutes : -minutes; +} + +// Return a moment from input, that is local/utc/zone equivalent to model. +function cloneWithOffset(input, model) { + var res, diff; + if (model._isUTC) { + res = model.clone(); + diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf(); + // Use low-level api, because this fn is low-level api. + res._d.setTime(res._d.valueOf() + diff); + hooks.updateOffset(res, false); + return res; + } else { + return createLocal(input).local(); + } +} + +function getDateOffset (m) { + // On Firefox.24 Date#getTimezoneOffset returns a floating point. + // https://github.com/moment/moment/pull/1871 + return -Math.round(m._d.getTimezoneOffset() / 15) * 15; +} + +// HOOKS + +// This function will be called whenever a moment is mutated. +// It is intended to keep the offset in sync with the timezone. +hooks.updateOffset = function () {}; + +// MOMENTS + +// keepLocalTime = true means only change the timezone, without +// affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]--> +// 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset +// +0200, so we adjust the time as needed, to be valid. +// +// Keeping the time actually adds/subtracts (one hour) +// from the actual represented time. That is why we call updateOffset +// a second time. In case it wants us to change the offset again +// _changeInProgress == true case, then we have to adjust, because +// there is no such time in the given timezone. +function getSetOffset (input, keepLocalTime, keepMinutes) { + var offset = this._offset || 0, + localAdjust; + if (!this.isValid()) { + return input != null ? this : NaN; + } + if (input != null) { + if (typeof input === 'string') { + input = offsetFromString(matchShortOffset, input); + if (input === null) { + return this; + } + } else if (Math.abs(input) < 16 && !keepMinutes) { + input = input * 60; + } + if (!this._isUTC && keepLocalTime) { + localAdjust = getDateOffset(this); + } + this._offset = input; + this._isUTC = true; + if (localAdjust != null) { + this.add(localAdjust, 'm'); + } + if (offset !== input) { + if (!keepLocalTime || this._changeInProgress) { + addSubtract(this, createDuration(input - offset, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + hooks.updateOffset(this, true); + this._changeInProgress = null; + } + } + return this; + } else { + return this._isUTC ? offset : getDateOffset(this); + } +} + +function getSetZone (input, keepLocalTime) { + if (input != null) { + if (typeof input !== 'string') { + input = -input; + } + + this.utcOffset(input, keepLocalTime); + + return this; + } else { + return -this.utcOffset(); + } +} + +function setOffsetToUTC (keepLocalTime) { + return this.utcOffset(0, keepLocalTime); +} + +function setOffsetToLocal (keepLocalTime) { + if (this._isUTC) { + this.utcOffset(0, keepLocalTime); + this._isUTC = false; + + if (keepLocalTime) { + this.subtract(getDateOffset(this), 'm'); + } + } + return this; +} + +function setOffsetToParsedOffset () { + if (this._tzm != null) { + this.utcOffset(this._tzm, false, true); + } else if (typeof this._i === 'string') { + var tZone = offsetFromString(matchOffset, this._i); + if (tZone != null) { + this.utcOffset(tZone); + } + else { + this.utcOffset(0, true); + } + } + return this; +} + +function hasAlignedHourOffset (input) { + if (!this.isValid()) { + return false; + } + input = input ? createLocal(input).utcOffset() : 0; + + return (this.utcOffset() - input) % 60 === 0; +} + +function isDaylightSavingTime () { + return ( + this.utcOffset() > this.clone().month(0).utcOffset() || + this.utcOffset() > this.clone().month(5).utcOffset() + ); +} + +function isDaylightSavingTimeShifted () { + if (!isUndefined(this._isDSTShifted)) { + return this._isDSTShifted; + } + + var c = {}; + + copyConfig(c, this); + c = prepareConfig(c); + + if (c._a) { + var other = c._isUTC ? createUTC(c._a) : createLocal(c._a); + this._isDSTShifted = this.isValid() && + compareArrays(c._a, other.toArray()) > 0; + } else { + this._isDSTShifted = false; + } + + return this._isDSTShifted; +} + +function isLocal () { + return this.isValid() ? !this._isUTC : false; +} + +function isUtcOffset () { + return this.isValid() ? this._isUTC : false; +} + +function isUtc () { + return this.isValid() ? this._isUTC && this._offset === 0 : false; +} + +// ASP.NET json date format regex +var aspNetRegex = /^(\-|\+)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/; + +// from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html +// somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere +// and further modified to allow for strings containing both week and day +var isoRegex = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/; + +function createDuration (input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + diffRes; + + if (isDuration(input)) { + duration = { + ms : input._milliseconds, + d : input._days, + M : input._months + }; + } else if (isNumber(input)) { + duration = {}; + if (key) { + duration[key] = input; + } else { + duration.milliseconds = input; + } + } else if (!!(match = aspNetRegex.exec(input))) { + sign = (match[1] === '-') ? -1 : 1; + duration = { + y : 0, + d : toInt(match[DATE]) * sign, + h : toInt(match[HOUR]) * sign, + m : toInt(match[MINUTE]) * sign, + s : toInt(match[SECOND]) * sign, + ms : toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match + }; + } else if (!!(match = isoRegex.exec(input))) { + sign = (match[1] === '-') ? -1 : (match[1] === '+') ? 1 : 1; + duration = { + y : parseIso(match[2], sign), + M : parseIso(match[3], sign), + w : parseIso(match[4], sign), + d : parseIso(match[5], sign), + h : parseIso(match[6], sign), + m : parseIso(match[7], sign), + s : parseIso(match[8], sign) + }; + } else if (duration == null) {// checks for null or undefined + duration = {}; + } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) { + diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to)); + + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } + + ret = new Duration(duration); + + if (isDuration(input) && hasOwnProp(input, '_locale')) { + ret._locale = input._locale; + } + + return ret; +} + +createDuration.fn = Duration.prototype; +createDuration.invalid = createInvalid$1; + +function parseIso (inp, sign) { + // We'd normally use ~~inp for this, but unfortunately it also + // converts floats to ints. + // inp may be undefined, so careful calling replace on it. + var res = inp && parseFloat(inp.replace(',', '.')); + // apply sign while we're at it + return (isNaN(res) ? 0 : res) * sign; +} + +function positiveMomentsDifference(base, other) { + var res = {milliseconds: 0, months: 0}; + + res.months = other.month() - base.month() + + (other.year() - base.year()) * 12; + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } + + res.milliseconds = +other - +(base.clone().add(res.months, 'M')); + + return res; +} + +function momentsDifference(base, other) { + var res; + if (!(base.isValid() && other.isValid())) { + return {milliseconds: 0, months: 0}; + } + + other = cloneWithOffset(other, base); + if (base.isBefore(other)) { + res = positiveMomentsDifference(base, other); + } else { + res = positiveMomentsDifference(other, base); + res.milliseconds = -res.milliseconds; + res.months = -res.months; + } + + return res; +} + +// TODO: remove 'name' arg after deprecation is removed +function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; + //invert the arguments, but complain about it + if (period !== null && !isNaN(+period)) { + deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' + + 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.'); + tmp = val; val = period; period = tmp; + } + + val = typeof val === 'string' ? +val : val; + dur = createDuration(val, period); + addSubtract(this, dur, direction); + return this; + }; +} + +function addSubtract (mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = absRound(duration._days), + months = absRound(duration._months); + + if (!mom.isValid()) { + // No op + return; + } + + updateOffset = updateOffset == null ? true : updateOffset; + + if (months) { + setMonth(mom, get(mom, 'Month') + months * isAdding); + } + if (days) { + set$1(mom, 'Date', get(mom, 'Date') + days * isAdding); + } + if (milliseconds) { + mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding); + } + if (updateOffset) { + hooks.updateOffset(mom, days || months); + } +} + +var add = createAdder(1, 'add'); +var subtract = createAdder(-1, 'subtract'); + +function getCalendarFormat(myMoment, now) { + var diff = myMoment.diff(now, 'days', true); + return diff < -6 ? 'sameElse' : + diff < -1 ? 'lastWeek' : + diff < 0 ? 'lastDay' : + diff < 1 ? 'sameDay' : + diff < 2 ? 'nextDay' : + diff < 7 ? 'nextWeek' : 'sameElse'; +} + +function calendar$1 (time, formats) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're local/utc/offset or not. + var now = time || createLocal(), + sod = cloneWithOffset(now, this).startOf('day'), + format = hooks.calendarFormat(this, sod) || 'sameElse'; + + var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]); + + return this.format(output || this.localeData().calendar(format, this, createLocal(now))); +} + +function clone () { + return new Moment(this); +} + +function isAfter (input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + if (!(this.isValid() && localInput.isValid())) { + return false; + } + units = normalizeUnits(!isUndefined(units) ? units : 'millisecond'); + if (units === 'millisecond') { + return this.valueOf() > localInput.valueOf(); + } else { + return localInput.valueOf() < this.clone().startOf(units).valueOf(); + } +} + +function isBefore (input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + if (!(this.isValid() && localInput.isValid())) { + return false; + } + units = normalizeUnits(!isUndefined(units) ? units : 'millisecond'); + if (units === 'millisecond') { + return this.valueOf() < localInput.valueOf(); + } else { + return this.clone().endOf(units).valueOf() < localInput.valueOf(); + } +} + +function isBetween (from, to, units, inclusivity) { + inclusivity = inclusivity || '()'; + return (inclusivity[0] === '(' ? this.isAfter(from, units) : !this.isBefore(from, units)) && + (inclusivity[1] === ')' ? this.isBefore(to, units) : !this.isAfter(to, units)); +} + +function isSame (input, units) { + var localInput = isMoment(input) ? input : createLocal(input), + inputMs; + if (!(this.isValid() && localInput.isValid())) { + return false; + } + units = normalizeUnits(units || 'millisecond'); + if (units === 'millisecond') { + return this.valueOf() === localInput.valueOf(); + } else { + inputMs = localInput.valueOf(); + return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf(); + } +} + +function isSameOrAfter (input, units) { + return this.isSame(input, units) || this.isAfter(input,units); +} + +function isSameOrBefore (input, units) { + return this.isSame(input, units) || this.isBefore(input,units); +} + +function diff (input, units, asFloat) { + var that, + zoneDelta, + output; + + if (!this.isValid()) { + return NaN; + } + + that = cloneWithOffset(input, this); + + if (!that.isValid()) { + return NaN; + } + + zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4; + + units = normalizeUnits(units); + + switch (units) { + case 'year': output = monthDiff(this, that) / 12; break; + case 'month': output = monthDiff(this, that); break; + case 'quarter': output = monthDiff(this, that) / 3; break; + case 'second': output = (this - that) / 1e3; break; // 1000 + case 'minute': output = (this - that) / 6e4; break; // 1000 * 60 + case 'hour': output = (this - that) / 36e5; break; // 1000 * 60 * 60 + case 'day': output = (this - that - zoneDelta) / 864e5; break; // 1000 * 60 * 60 * 24, negate dst + case 'week': output = (this - that - zoneDelta) / 6048e5; break; // 1000 * 60 * 60 * 24 * 7, negate dst + default: output = this - that; + } + + return asFloat ? output : absFloor(output); +} + +function monthDiff (a, b) { + // difference in months + var wholeMonthDiff = ((b.year() - a.year()) * 12) + (b.month() - a.month()), + // b is in (anchor - 1 month, anchor + 1 month) + anchor = a.clone().add(wholeMonthDiff, 'months'), + anchor2, adjust; + + if (b - anchor < 0) { + anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); + // linear across the month + adjust = (b - anchor) / (anchor - anchor2); + } else { + anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); + // linear across the month + adjust = (b - anchor) / (anchor2 - anchor); + } + + //check for negative zero, return zero if negative zero + return -(wholeMonthDiff + adjust) || 0; +} + +hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ'; +hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]'; + +function toString () { + return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); +} + +function toISOString(keepOffset) { + if (!this.isValid()) { + return null; + } + var utc = keepOffset !== true; + var m = utc ? this.clone().utc() : this; + if (m.year() < 0 || m.year() > 9999) { + return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ'); + } + if (isFunction(Date.prototype.toISOString)) { + // native implementation is ~50x faster, use it when we can + if (utc) { + return this.toDate().toISOString(); + } else { + return new Date(this.valueOf() + this.utcOffset() * 60 * 1000).toISOString().replace('Z', formatMoment(m, 'Z')); + } + } + return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ'); +} + +/** + * Return a human readable representation of a moment that can + * also be evaluated to get a new moment which is the same + * + * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects + */ +function inspect () { + if (!this.isValid()) { + return 'moment.invalid(/* ' + this._i + ' */)'; + } + var func = 'moment'; + var zone = ''; + if (!this.isLocal()) { + func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone'; + zone = 'Z'; + } + var prefix = '[' + func + '("]'; + var year = (0 <= this.year() && this.year() <= 9999) ? 'YYYY' : 'YYYYYY'; + var datetime = '-MM-DD[T]HH:mm:ss.SSS'; + var suffix = zone + '[")]'; + + return this.format(prefix + year + datetime + suffix); +} + +function format (inputString) { + if (!inputString) { + inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat; + } + var output = formatMoment(this, inputString); + return this.localeData().postformat(output); +} + +function from (time, withoutSuffix) { + if (this.isValid() && + ((isMoment(time) && time.isValid()) || + createLocal(time).isValid())) { + return createDuration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } +} + +function fromNow (withoutSuffix) { + return this.from(createLocal(), withoutSuffix); +} + +function to (time, withoutSuffix) { + if (this.isValid() && + ((isMoment(time) && time.isValid()) || + createLocal(time).isValid())) { + return createDuration({from: this, to: time}).locale(this.locale()).humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } +} + +function toNow (withoutSuffix) { + return this.to(createLocal(), withoutSuffix); +} + +// If passed a locale key, it will set the locale for this +// instance. Otherwise, it will return the locale configuration +// variables for this instance. +function locale (key) { + var newLocaleData; + + if (key === undefined) { + return this._locale._abbr; + } else { + newLocaleData = getLocale(key); + if (newLocaleData != null) { + this._locale = newLocaleData; + } + return this; + } +} + +var lang = deprecate( + 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', + function (key) { + if (key === undefined) { + return this.localeData(); + } else { + return this.locale(key); + } + } +); + +function localeData () { + return this._locale; +} + +function startOf (units) { + units = normalizeUnits(units); + // the following switch intentionally omits break keywords + // to utilize falling through the cases. + switch (units) { + case 'year': + this.month(0); + /* falls through */ + case 'quarter': + case 'month': + this.date(1); + /* falls through */ + case 'week': + case 'isoWeek': + case 'day': + case 'date': + this.hours(0); + /* falls through */ + case 'hour': + this.minutes(0); + /* falls through */ + case 'minute': + this.seconds(0); + /* falls through */ + case 'second': + this.milliseconds(0); + } + + // weeks are a special case + if (units === 'week') { + this.weekday(0); + } + if (units === 'isoWeek') { + this.isoWeekday(1); + } + + // quarters are also special + if (units === 'quarter') { + this.month(Math.floor(this.month() / 3) * 3); + } + + return this; +} + +function endOf (units) { + units = normalizeUnits(units); + if (units === undefined || units === 'millisecond') { + return this; + } + + // 'date' is an alias for 'day', so it should be considered as such. + if (units === 'date') { + units = 'day'; + } + + return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); +} + +function valueOf () { + return this._d.valueOf() - ((this._offset || 0) * 60000); +} + +function unix () { + return Math.floor(this.valueOf() / 1000); +} + +function toDate () { + return new Date(this.valueOf()); +} + +function toArray () { + var m = this; + return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()]; +} + +function toObject () { + var m = this; + return { + years: m.year(), + months: m.month(), + date: m.date(), + hours: m.hours(), + minutes: m.minutes(), + seconds: m.seconds(), + milliseconds: m.milliseconds() + }; +} + +function toJSON () { + // new Date(NaN).toJSON() === null + return this.isValid() ? this.toISOString() : null; +} + +function isValid$2 () { + return isValid(this); +} + +function parsingFlags () { + return extend({}, getParsingFlags(this)); +} + +function invalidAt () { + return getParsingFlags(this).overflow; +} + +function creationData() { + return { + input: this._i, + format: this._f, + locale: this._locale, + isUTC: this._isUTC, + strict: this._strict + }; +} + +// FORMATTING + +addFormatToken(0, ['gg', 2], 0, function () { + return this.weekYear() % 100; +}); + +addFormatToken(0, ['GG', 2], 0, function () { + return this.isoWeekYear() % 100; +}); + +function addWeekYearFormatToken (token, getter) { + addFormatToken(0, [token, token.length], 0, getter); +} + +addWeekYearFormatToken('gggg', 'weekYear'); +addWeekYearFormatToken('ggggg', 'weekYear'); +addWeekYearFormatToken('GGGG', 'isoWeekYear'); +addWeekYearFormatToken('GGGGG', 'isoWeekYear'); + +// ALIASES + +addUnitAlias('weekYear', 'gg'); +addUnitAlias('isoWeekYear', 'GG'); + +// PRIORITY + +addUnitPriority('weekYear', 1); +addUnitPriority('isoWeekYear', 1); + + +// PARSING + +addRegexToken('G', matchSigned); +addRegexToken('g', matchSigned); +addRegexToken('GG', match1to2, match2); +addRegexToken('gg', match1to2, match2); +addRegexToken('GGGG', match1to4, match4); +addRegexToken('gggg', match1to4, match4); +addRegexToken('GGGGG', match1to6, match6); +addRegexToken('ggggg', match1to6, match6); + +addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) { + week[token.substr(0, 2)] = toInt(input); +}); + +addWeekParseToken(['gg', 'GG'], function (input, week, config, token) { + week[token] = hooks.parseTwoDigitYear(input); +}); + +// MOMENTS + +function getSetWeekYear (input) { + return getSetWeekYearHelper.call(this, + input, + this.week(), + this.weekday(), + this.localeData()._week.dow, + this.localeData()._week.doy); +} + +function getSetISOWeekYear (input) { + return getSetWeekYearHelper.call(this, + input, this.isoWeek(), this.isoWeekday(), 1, 4); +} + +function getISOWeeksInYear () { + return weeksInYear(this.year(), 1, 4); +} + +function getWeeksInYear () { + var weekInfo = this.localeData()._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); +} + +function getSetWeekYearHelper(input, week, weekday, dow, doy) { + var weeksTarget; + if (input == null) { + return weekOfYear(this, dow, doy).year; + } else { + weeksTarget = weeksInYear(input, dow, doy); + if (week > weeksTarget) { + week = weeksTarget; + } + return setWeekAll.call(this, input, week, weekday, dow, doy); + } +} + +function setWeekAll(weekYear, week, weekday, dow, doy) { + var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy), + date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear); + + this.year(date.getUTCFullYear()); + this.month(date.getUTCMonth()); + this.date(date.getUTCDate()); + return this; +} + +// FORMATTING + +addFormatToken('Q', 0, 'Qo', 'quarter'); + +// ALIASES + +addUnitAlias('quarter', 'Q'); + +// PRIORITY + +addUnitPriority('quarter', 7); + +// PARSING + +addRegexToken('Q', match1); +addParseToken('Q', function (input, array) { + array[MONTH] = (toInt(input) - 1) * 3; +}); + +// MOMENTS + +function getSetQuarter (input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); +} + +// FORMATTING + +addFormatToken('D', ['DD', 2], 'Do', 'date'); + +// ALIASES + +addUnitAlias('date', 'D'); + +// PRIOROITY +addUnitPriority('date', 9); + +// PARSING + +addRegexToken('D', match1to2); +addRegexToken('DD', match1to2, match2); +addRegexToken('Do', function (isStrict, locale) { + // TODO: Remove "ordinalParse" fallback in next major release. + return isStrict ? + (locale._dayOfMonthOrdinalParse || locale._ordinalParse) : + locale._dayOfMonthOrdinalParseLenient; +}); + +addParseToken(['D', 'DD'], DATE); +addParseToken('Do', function (input, array) { + array[DATE] = toInt(input.match(match1to2)[0]); +}); + +// MOMENTS + +var getSetDayOfMonth = makeGetSet('Date', true); + +// FORMATTING + +addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear'); + +// ALIASES + +addUnitAlias('dayOfYear', 'DDD'); + +// PRIORITY +addUnitPriority('dayOfYear', 4); + +// PARSING + +addRegexToken('DDD', match1to3); +addRegexToken('DDDD', match3); +addParseToken(['DDD', 'DDDD'], function (input, array, config) { + config._dayOfYear = toInt(input); +}); + +// HELPERS + +// MOMENTS + +function getSetDayOfYear (input) { + var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add((input - dayOfYear), 'd'); +} + +// FORMATTING + +addFormatToken('m', ['mm', 2], 0, 'minute'); + +// ALIASES + +addUnitAlias('minute', 'm'); + +// PRIORITY + +addUnitPriority('minute', 14); + +// PARSING + +addRegexToken('m', match1to2); +addRegexToken('mm', match1to2, match2); +addParseToken(['m', 'mm'], MINUTE); + +// MOMENTS + +var getSetMinute = makeGetSet('Minutes', false); + +// FORMATTING + +addFormatToken('s', ['ss', 2], 0, 'second'); + +// ALIASES + +addUnitAlias('second', 's'); + +// PRIORITY + +addUnitPriority('second', 15); + +// PARSING + +addRegexToken('s', match1to2); +addRegexToken('ss', match1to2, match2); +addParseToken(['s', 'ss'], SECOND); + +// MOMENTS + +var getSetSecond = makeGetSet('Seconds', false); + +// FORMATTING + +addFormatToken('S', 0, 0, function () { + return ~~(this.millisecond() / 100); +}); + +addFormatToken(0, ['SS', 2], 0, function () { + return ~~(this.millisecond() / 10); +}); + +addFormatToken(0, ['SSS', 3], 0, 'millisecond'); +addFormatToken(0, ['SSSS', 4], 0, function () { + return this.millisecond() * 10; +}); +addFormatToken(0, ['SSSSS', 5], 0, function () { + return this.millisecond() * 100; +}); +addFormatToken(0, ['SSSSSS', 6], 0, function () { + return this.millisecond() * 1000; +}); +addFormatToken(0, ['SSSSSSS', 7], 0, function () { + return this.millisecond() * 10000; +}); +addFormatToken(0, ['SSSSSSSS', 8], 0, function () { + return this.millisecond() * 100000; +}); +addFormatToken(0, ['SSSSSSSSS', 9], 0, function () { + return this.millisecond() * 1000000; +}); + + +// ALIASES + +addUnitAlias('millisecond', 'ms'); + +// PRIORITY + +addUnitPriority('millisecond', 16); + +// PARSING + +addRegexToken('S', match1to3, match1); +addRegexToken('SS', match1to3, match2); +addRegexToken('SSS', match1to3, match3); + +var token; +for (token = 'SSSS'; token.length <= 9; token += 'S') { + addRegexToken(token, matchUnsigned); +} + +function parseMs(input, array) { + array[MILLISECOND] = toInt(('0.' + input) * 1000); +} + +for (token = 'S'; token.length <= 9; token += 'S') { + addParseToken(token, parseMs); +} +// MOMENTS + +var getSetMillisecond = makeGetSet('Milliseconds', false); + +// FORMATTING + +addFormatToken('z', 0, 0, 'zoneAbbr'); +addFormatToken('zz', 0, 0, 'zoneName'); + +// MOMENTS + +function getZoneAbbr () { + return this._isUTC ? 'UTC' : ''; +} + +function getZoneName () { + return this._isUTC ? 'Coordinated Universal Time' : ''; +} + +var proto = Moment.prototype; + +proto.add = add; +proto.calendar = calendar$1; +proto.clone = clone; +proto.diff = diff; +proto.endOf = endOf; +proto.format = format; +proto.from = from; +proto.fromNow = fromNow; +proto.to = to; +proto.toNow = toNow; +proto.get = stringGet; +proto.invalidAt = invalidAt; +proto.isAfter = isAfter; +proto.isBefore = isBefore; +proto.isBetween = isBetween; +proto.isSame = isSame; +proto.isSameOrAfter = isSameOrAfter; +proto.isSameOrBefore = isSameOrBefore; +proto.isValid = isValid$2; +proto.lang = lang; +proto.locale = locale; +proto.localeData = localeData; +proto.max = prototypeMax; +proto.min = prototypeMin; +proto.parsingFlags = parsingFlags; +proto.set = stringSet; +proto.startOf = startOf; +proto.subtract = subtract; +proto.toArray = toArray; +proto.toObject = toObject; +proto.toDate = toDate; +proto.toISOString = toISOString; +proto.inspect = inspect; +proto.toJSON = toJSON; +proto.toString = toString; +proto.unix = unix; +proto.valueOf = valueOf; +proto.creationData = creationData; +proto.year = getSetYear; +proto.isLeapYear = getIsLeapYear; +proto.weekYear = getSetWeekYear; +proto.isoWeekYear = getSetISOWeekYear; +proto.quarter = proto.quarters = getSetQuarter; +proto.month = getSetMonth; +proto.daysInMonth = getDaysInMonth; +proto.week = proto.weeks = getSetWeek; +proto.isoWeek = proto.isoWeeks = getSetISOWeek; +proto.weeksInYear = getWeeksInYear; +proto.isoWeeksInYear = getISOWeeksInYear; +proto.date = getSetDayOfMonth; +proto.day = proto.days = getSetDayOfWeek; +proto.weekday = getSetLocaleDayOfWeek; +proto.isoWeekday = getSetISODayOfWeek; +proto.dayOfYear = getSetDayOfYear; +proto.hour = proto.hours = getSetHour; +proto.minute = proto.minutes = getSetMinute; +proto.second = proto.seconds = getSetSecond; +proto.millisecond = proto.milliseconds = getSetMillisecond; +proto.utcOffset = getSetOffset; +proto.utc = setOffsetToUTC; +proto.local = setOffsetToLocal; +proto.parseZone = setOffsetToParsedOffset; +proto.hasAlignedHourOffset = hasAlignedHourOffset; +proto.isDST = isDaylightSavingTime; +proto.isLocal = isLocal; +proto.isUtcOffset = isUtcOffset; +proto.isUtc = isUtc; +proto.isUTC = isUtc; +proto.zoneAbbr = getZoneAbbr; +proto.zoneName = getZoneName; +proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth); +proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth); +proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear); +proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone); +proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted); + +function createUnix (input) { + return createLocal(input * 1000); +} + +function createInZone () { + return createLocal.apply(null, arguments).parseZone(); +} + +function preParsePostFormat (string) { + return string; +} + +var proto$1 = Locale.prototype; + +proto$1.calendar = calendar; +proto$1.longDateFormat = longDateFormat; +proto$1.invalidDate = invalidDate; +proto$1.ordinal = ordinal; +proto$1.preparse = preParsePostFormat; +proto$1.postformat = preParsePostFormat; +proto$1.relativeTime = relativeTime; +proto$1.pastFuture = pastFuture; +proto$1.set = set; + +proto$1.months = localeMonths; +proto$1.monthsShort = localeMonthsShort; +proto$1.monthsParse = localeMonthsParse; +proto$1.monthsRegex = monthsRegex; +proto$1.monthsShortRegex = monthsShortRegex; +proto$1.week = localeWeek; +proto$1.firstDayOfYear = localeFirstDayOfYear; +proto$1.firstDayOfWeek = localeFirstDayOfWeek; + +proto$1.weekdays = localeWeekdays; +proto$1.weekdaysMin = localeWeekdaysMin; +proto$1.weekdaysShort = localeWeekdaysShort; +proto$1.weekdaysParse = localeWeekdaysParse; + +proto$1.weekdaysRegex = weekdaysRegex; +proto$1.weekdaysShortRegex = weekdaysShortRegex; +proto$1.weekdaysMinRegex = weekdaysMinRegex; + +proto$1.isPM = localeIsPM; +proto$1.meridiem = localeMeridiem; + +function get$1 (format, index, field, setter) { + var locale = getLocale(); + var utc = createUTC().set(setter, index); + return locale[field](utc, format); +} + +function listMonthsImpl (format, index, field) { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + + if (index != null) { + return get$1(format, index, field, 'month'); + } + + var i; + var out = []; + for (i = 0; i < 12; i++) { + out[i] = get$1(format, i, field, 'month'); + } + return out; +} + +// () +// (5) +// (fmt, 5) +// (fmt) +// (true) +// (true, 5) +// (true, fmt, 5) +// (true, fmt) +function listWeekdaysImpl (localeSorted, format, index, field) { + if (typeof localeSorted === 'boolean') { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } else { + format = localeSorted; + index = format; + localeSorted = false; + + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } + + var locale = getLocale(), + shift = localeSorted ? locale._week.dow : 0; + + if (index != null) { + return get$1(format, (index + shift) % 7, field, 'day'); + } + + var i; + var out = []; + for (i = 0; i < 7; i++) { + out[i] = get$1(format, (i + shift) % 7, field, 'day'); + } + return out; +} + +function listMonths (format, index) { + return listMonthsImpl(format, index, 'months'); +} + +function listMonthsShort (format, index) { + return listMonthsImpl(format, index, 'monthsShort'); +} + +function listWeekdays (localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdays'); +} + +function listWeekdaysShort (localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort'); +} + +function listWeekdaysMin (localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin'); +} + +getSetGlobalLocale('en', { + dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, + ordinal : function (number) { + var b = number % 10, + output = (toInt(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + } +}); + +// Side effect imports + +hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale); +hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale); + +var mathAbs = Math.abs; + +function abs () { + var data = this._data; + + this._milliseconds = mathAbs(this._milliseconds); + this._days = mathAbs(this._days); + this._months = mathAbs(this._months); + + data.milliseconds = mathAbs(data.milliseconds); + data.seconds = mathAbs(data.seconds); + data.minutes = mathAbs(data.minutes); + data.hours = mathAbs(data.hours); + data.months = mathAbs(data.months); + data.years = mathAbs(data.years); + + return this; +} + +function addSubtract$1 (duration, input, value, direction) { + var other = createDuration(input, value); + + duration._milliseconds += direction * other._milliseconds; + duration._days += direction * other._days; + duration._months += direction * other._months; + + return duration._bubble(); +} + +// supports only 2.0-style add(1, 's') or add(duration) +function add$1 (input, value) { + return addSubtract$1(this, input, value, 1); +} + +// supports only 2.0-style subtract(1, 's') or subtract(duration) +function subtract$1 (input, value) { + return addSubtract$1(this, input, value, -1); +} + +function absCeil (number) { + if (number < 0) { + return Math.floor(number); + } else { + return Math.ceil(number); + } +} + +function bubble () { + var milliseconds = this._milliseconds; + var days = this._days; + var months = this._months; + var data = this._data; + var seconds, minutes, hours, years, monthsFromDays; + + // if we have a mix of positive and negative values, bubble down first + // check: https://github.com/moment/moment/issues/2166 + if (!((milliseconds >= 0 && days >= 0 && months >= 0) || + (milliseconds <= 0 && days <= 0 && months <= 0))) { + milliseconds += absCeil(monthsToDays(months) + days) * 864e5; + days = 0; + months = 0; + } + + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; + + seconds = absFloor(milliseconds / 1000); + data.seconds = seconds % 60; + + minutes = absFloor(seconds / 60); + data.minutes = minutes % 60; + + hours = absFloor(minutes / 60); + data.hours = hours % 24; + + days += absFloor(hours / 24); + + // convert days to months + monthsFromDays = absFloor(daysToMonths(days)); + months += monthsFromDays; + days -= absCeil(monthsToDays(monthsFromDays)); + + // 12 months -> 1 year + years = absFloor(months / 12); + months %= 12; + + data.days = days; + data.months = months; + data.years = years; + + return this; +} + +function daysToMonths (days) { + // 400 years have 146097 days (taking into account leap year rules) + // 400 years have 12 months === 4800 + return days * 4800 / 146097; +} + +function monthsToDays (months) { + // the reverse of daysToMonths + return months * 146097 / 4800; +} + +function as (units) { + if (!this.isValid()) { + return NaN; + } + var days; + var months; + var milliseconds = this._milliseconds; + + units = normalizeUnits(units); + + if (units === 'month' || units === 'year') { + days = this._days + milliseconds / 864e5; + months = this._months + daysToMonths(days); + return units === 'month' ? months : months / 12; + } else { + // handle milliseconds separately because of floating point math errors (issue #1867) + days = this._days + Math.round(monthsToDays(this._months)); + switch (units) { + case 'week' : return days / 7 + milliseconds / 6048e5; + case 'day' : return days + milliseconds / 864e5; + case 'hour' : return days * 24 + milliseconds / 36e5; + case 'minute' : return days * 1440 + milliseconds / 6e4; + case 'second' : return days * 86400 + milliseconds / 1000; + // Math.floor prevents floating point math errors here + case 'millisecond': return Math.floor(days * 864e5) + milliseconds; + default: throw new Error('Unknown unit ' + units); + } + } +} + +// TODO: Use this.as('ms')? +function valueOf$1 () { + if (!this.isValid()) { + return NaN; + } + return ( + this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6 + ); +} + +function makeAs (alias) { + return function () { + return this.as(alias); + }; +} + +var asMilliseconds = makeAs('ms'); +var asSeconds = makeAs('s'); +var asMinutes = makeAs('m'); +var asHours = makeAs('h'); +var asDays = makeAs('d'); +var asWeeks = makeAs('w'); +var asMonths = makeAs('M'); +var asYears = makeAs('y'); + +function clone$1 () { + return createDuration(this); +} + +function get$2 (units) { + units = normalizeUnits(units); + return this.isValid() ? this[units + 's']() : NaN; +} + +function makeGetter(name) { + return function () { + return this.isValid() ? this._data[name] : NaN; + }; +} + +var milliseconds = makeGetter('milliseconds'); +var seconds = makeGetter('seconds'); +var minutes = makeGetter('minutes'); +var hours = makeGetter('hours'); +var days = makeGetter('days'); +var months = makeGetter('months'); +var years = makeGetter('years'); + +function weeks () { + return absFloor(this.days() / 7); +} + +var round = Math.round; +var thresholds = { + ss: 44, // a few seconds to seconds + s : 45, // seconds to minute + m : 45, // minutes to hour + h : 22, // hours to day + d : 26, // days to month + M : 11 // months to year +}; + +// helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize +function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { + return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); +} + +function relativeTime$1 (posNegDuration, withoutSuffix, locale) { + var duration = createDuration(posNegDuration).abs(); + var seconds = round(duration.as('s')); + var minutes = round(duration.as('m')); + var hours = round(duration.as('h')); + var days = round(duration.as('d')); + var months = round(duration.as('M')); + var years = round(duration.as('y')); + + var a = seconds <= thresholds.ss && ['s', seconds] || + seconds < thresholds.s && ['ss', seconds] || + minutes <= 1 && ['m'] || + minutes < thresholds.m && ['mm', minutes] || + hours <= 1 && ['h'] || + hours < thresholds.h && ['hh', hours] || + days <= 1 && ['d'] || + days < thresholds.d && ['dd', days] || + months <= 1 && ['M'] || + months < thresholds.M && ['MM', months] || + years <= 1 && ['y'] || ['yy', years]; + + a[2] = withoutSuffix; + a[3] = +posNegDuration > 0; + a[4] = locale; + return substituteTimeAgo.apply(null, a); +} + +// This function allows you to set the rounding function for relative time strings +function getSetRelativeTimeRounding (roundingFunction) { + if (roundingFunction === undefined) { + return round; + } + if (typeof(roundingFunction) === 'function') { + round = roundingFunction; + return true; + } + return false; +} + +// This function allows you to set a threshold for relative time strings +function getSetRelativeTimeThreshold (threshold, limit) { + if (thresholds[threshold] === undefined) { + return false; + } + if (limit === undefined) { + return thresholds[threshold]; + } + thresholds[threshold] = limit; + if (threshold === 's') { + thresholds.ss = limit - 1; + } + return true; +} + +function humanize (withSuffix) { + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var locale = this.localeData(); + var output = relativeTime$1(this, !withSuffix, locale); + + if (withSuffix) { + output = locale.pastFuture(+this, output); + } + + return locale.postformat(output); +} + +var abs$1 = Math.abs; + +function sign(x) { + return ((x > 0) - (x < 0)) || +x; +} + +function toISOString$1() { + // for ISO strings we do not use the normal bubbling rules: + // * milliseconds bubble up until they become hours + // * days do not bubble at all + // * months bubble up until they become years + // This is because there is no context-free conversion between hours and days + // (think of clock changes) + // and also not between days and months (28-31 days per month) + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var seconds = abs$1(this._milliseconds) / 1000; + var days = abs$1(this._days); + var months = abs$1(this._months); + var minutes, hours, years; + + // 3600 seconds -> 60 minutes -> 1 hour + minutes = absFloor(seconds / 60); + hours = absFloor(minutes / 60); + seconds %= 60; + minutes %= 60; + + // 12 months -> 1 year + years = absFloor(months / 12); + months %= 12; + + + // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + var Y = years; + var M = months; + var D = days; + var h = hours; + var m = minutes; + var s = seconds ? seconds.toFixed(3).replace(/\.?0+$/, '') : ''; + var total = this.asSeconds(); + + if (!total) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } + + var totalSign = total < 0 ? '-' : ''; + var ymSign = sign(this._months) !== sign(total) ? '-' : ''; + var daysSign = sign(this._days) !== sign(total) ? '-' : ''; + var hmsSign = sign(this._milliseconds) !== sign(total) ? '-' : ''; + + return totalSign + 'P' + + (Y ? ymSign + Y + 'Y' : '') + + (M ? ymSign + M + 'M' : '') + + (D ? daysSign + D + 'D' : '') + + ((h || m || s) ? 'T' : '') + + (h ? hmsSign + h + 'H' : '') + + (m ? hmsSign + m + 'M' : '') + + (s ? hmsSign + s + 'S' : ''); +} + +var proto$2 = Duration.prototype; + +proto$2.isValid = isValid$1; +proto$2.abs = abs; +proto$2.add = add$1; +proto$2.subtract = subtract$1; +proto$2.as = as; +proto$2.asMilliseconds = asMilliseconds; +proto$2.asSeconds = asSeconds; +proto$2.asMinutes = asMinutes; +proto$2.asHours = asHours; +proto$2.asDays = asDays; +proto$2.asWeeks = asWeeks; +proto$2.asMonths = asMonths; +proto$2.asYears = asYears; +proto$2.valueOf = valueOf$1; +proto$2._bubble = bubble; +proto$2.clone = clone$1; +proto$2.get = get$2; +proto$2.milliseconds = milliseconds; +proto$2.seconds = seconds; +proto$2.minutes = minutes; +proto$2.hours = hours; +proto$2.days = days; +proto$2.weeks = weeks; +proto$2.months = months; +proto$2.years = years; +proto$2.humanize = humanize; +proto$2.toISOString = toISOString$1; +proto$2.toString = toISOString$1; +proto$2.toJSON = toISOString$1; +proto$2.locale = locale; +proto$2.localeData = localeData; + +proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1); +proto$2.lang = lang; + +// Side effect imports + +// FORMATTING + +addFormatToken('X', 0, 0, 'unix'); +addFormatToken('x', 0, 0, 'valueOf'); + +// PARSING + +addRegexToken('x', matchSigned); +addRegexToken('X', matchTimestamp); +addParseToken('X', function (input, array, config) { + config._d = new Date(parseFloat(input, 10) * 1000); +}); +addParseToken('x', function (input, array, config) { + config._d = new Date(toInt(input)); +}); + +// Side effect imports + + +hooks.version = '2.21.0'; + +setHookCallback(createLocal); + +hooks.fn = proto; +hooks.min = min; +hooks.max = max; +hooks.now = now; +hooks.utc = createUTC; +hooks.unix = createUnix; +hooks.months = listMonths; +hooks.isDate = isDate; +hooks.locale = getSetGlobalLocale; +hooks.invalid = createInvalid; +hooks.duration = createDuration; +hooks.isMoment = isMoment; +hooks.weekdays = listWeekdays; +hooks.parseZone = createInZone; +hooks.localeData = getLocale; +hooks.isDuration = isDuration; +hooks.monthsShort = listMonthsShort; +hooks.weekdaysMin = listWeekdaysMin; +hooks.defineLocale = defineLocale; +hooks.updateLocale = updateLocale; +hooks.locales = listLocales; +hooks.weekdaysShort = listWeekdaysShort; +hooks.normalizeUnits = normalizeUnits; +hooks.relativeTimeRounding = getSetRelativeTimeRounding; +hooks.relativeTimeThreshold = getSetRelativeTimeThreshold; +hooks.calendarFormat = getCalendarFormat; +hooks.prototype = proto; + +// currently HTML5 input type only supports 24-hour formats +hooks.HTML5_FMT = { + DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm', // + DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss', // + DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS', // + DATE: 'YYYY-MM-DD', // + TIME: 'HH:mm', // + TIME_SECONDS: 'HH:mm:ss', // + TIME_MS: 'HH:mm:ss.SSS', // + WEEK: 'YYYY-[W]WW', // + MONTH: 'YYYY-MM' // +}; + +return hooks; + +}))); diff --git a/js/easySlider1.7.js b/js/easySlider1.7.js new file mode 100644 index 0000000..fc1e008 --- /dev/null +++ b/js/easySlider1.7.js @@ -0,0 +1,211 @@ +/* + * Easy Slider 1.7 - jQuery plugin + * written by Alen Grakalic + * http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding + * + * Copyright (c) 2009 Alen Grakalic (http://cssglobe.com) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * Built for jQuery library + * http://jquery.com + * + */ + +(function($) { + + $.fn.easySlider = function(options){ + + // default configuration properties + var defaults = { + prevId: 'prevBtn', + prevText: 'Previous', + nextId: 'nextBtn', + nextText: 'Next', + controlsShow: true, + controlsBefore: '', + controlsAfter: '', + controlsFade: true, + firstId: 'firstBtn', + firstText: 'First', + firstShow: false, + lastId: 'lastBtn', + lastText: 'Last', + lastShow: false, + vertical: false, + speed: 800, + auto: false, + pause: 2000, + continuous: false, + numeric: false, + numericId: 'controls' + }; + + var options = $.extend(defaults, options); + + this.each(function() { + var obj = $(this); + var s = $("li", obj).length; + var w = $("li", obj).width(); + var h = $("li", obj).height(); + var clickable = true; + obj.width(w); + obj.height(h); + obj.css("overflow","hidden"); + var ts = s-1; + var t = 0; + $("ul", obj).css('width',s*w); + + if(options.continuous){ + $("ul", obj).prepend($("ul li:last-child", obj).clone().css("margin-left","-"+ w +"px")); + $("ul", obj).append($("ul li:nth-child(2)", obj).clone()); + $("ul", obj).css('width',(s+1)*w); + }; + + if(!options.vertical) $("li", obj).css('float','left'); + + if(options.controlsShow){ + var html = options.controlsBefore; + if(options.numeric){ + html += '
      '; + } else { + if(options.firstShow) html += ''+ options.firstText +''; + html += ' '+ options.prevText +''; + html += ' '+ options.nextText +''; + if(options.lastShow) html += ' '+ options.lastText +''; + }; + + html += options.controlsAfter; + $(obj).after(html); + }; + + if(options.numeric){ + for(var i=0;i'+ (i+1) +'') + .appendTo($("#"+ options.numericId)) + .click(function(){ + animate($("a",$(this)).attr('rel'),true); + }); + }; + } else { + $("a","#"+options.nextId).click(function(){ + animate("next",true); + }); + $("a","#"+options.prevId).click(function(){ + animate("prev",true); + }); + $("a","#"+options.firstId).click(function(){ + animate("first",true); + }); + $("a","#"+options.lastId).click(function(){ + animate("last",true); + }); + }; + + function setCurrent(i){ + i = parseInt(i)+1; + $("li", "#" + options.numericId).removeClass("current"); + $("li#" + options.numericId + i).addClass("current"); + }; + + function adjust(){ + if(t>ts) t=0; + if(t<0) t=ts; + if(!options.vertical) { + $("ul",obj).css("margin-left",(t*w*-1)); + } else { + $("ul",obj).css("margin-left",(t*h*-1)); + } + clickable = true; + if(options.numeric) setCurrent(t); + }; + + function animate(dir,clicked){ + if (clickable){ + clickable = false; + var ot = t; + switch(dir){ + case "next": + t = (ot>=ts) ? (options.continuous ? t+1 : ts) : t+1; + break; + case "prev": + t = (t<=0) ? (options.continuous ? t-1 : 0) : t-1; + break; + case "first": + t = 0; + break; + case "last": + t = ts; + break; + default: + t = dir; + break; + }; + var diff = Math.abs(ot-t); + var speed = diff*options.speed; + if(!options.vertical) { + p = (t*w*-1); + $("ul",obj).animate( + { marginLeft: p }, + { queue:false, duration:speed, complete:adjust } + ); + } else { + p = (t*h*-1); + $("ul",obj).animate( + { marginTop: p }, + { queue:false, duration:speed, complete:adjust } + ); + }; + + if(!options.continuous && options.controlsFade){ + if(t==ts){ + $("a","#"+options.nextId).hide(); + $("a","#"+options.lastId).hide(); + } else { + $("a","#"+options.nextId).show(); + $("a","#"+options.lastId).show(); + }; + if(t==0){ + $("a","#"+options.prevId).hide(); + $("a","#"+options.firstId).hide(); + } else { + $("a","#"+options.prevId).show(); + $("a","#"+options.firstId).show(); + }; + }; + + if(clicked) clearTimeout(timeout); + if(options.auto && dir=="next" && !clicked){; + timeout = setTimeout(function(){ + animate("next",false); + },diff*options.speed+options.pause); + }; + + }; + + }; + // init + var timeout; + if(options.auto){; + timeout = setTimeout(function(){ + animate("next",false); + },options.pause); + }; + + if(options.numeric) setCurrent(0); + + if(!options.continuous && options.controlsFade){ + $("a","#"+options.prevId).hide(); + $("a","#"+options.firstId).hide(); + }; + + }); + + }; + +})(jQuery); + + + diff --git a/js/exchangerix.js b/js/exchangerix.js new file mode 100644 index 0000000..4ecd7d2 --- /dev/null +++ b/js/exchangerix.js @@ -0,0 +1,231 @@ +/* (c) 2018 Exchangerix Software */ + +///---------(slider)------------------------------------------------------------------------------------------------------- +/* +$(document).ready(function(){ + $("#slider").easySlider({ + auto: true, + continuous: true, + numeric: true + }); +}); +*/ +///---------(top)------------------------------------------------------------------------------------------------------- + + $(document).ready(function() { + $(window).scroll(function() { + if ($(this).scrollTop() > 100) { + $('.scrollup').fadeIn(); + } else { + $('.scrollup').fadeOut(); + } + }); + + $('.scrollup').click(function() { + $("html, body").animate({ scrollTop: 0 }, 600); + return false; + }); +}); + +///---------(tabs)------------------------------------------------------------------------------------------------------ + +$(document).ready(function(){ + + $(".tab_content").hide(); // Hide all content + $("#tabs li:first").addClass("active").show(); // Activate first tab + $(".tab_content:first").show(); // Show first tab content + + $("#tabs li").click(function() { + // First remove class "active" from currently active tab + $("#tabs li").removeClass('active'); + + // Now add class "active" to the selected/clicked tab + $(this).addClass("active"); + + // Hide all tab content + $(".tab_content").hide(); + + // Here we get the href value of the selected tab + var selected_tab = $(this).find("a").attr("href"); + + // Show the selected tab content + $(selected_tab).fadeIn(); + return false; + }); +}); + + +$(document).ready(function(){ + $('.exchangerix_tooltip').tooltip(); + $('.itooltip').tooltip(); + $('#itooltip').tooltip(); +}); + +///---------(scroll)-------------------------------------------------------------------------------------------------------- + +$(document).ready(function() { + $("#next-button").click(function () { + $("#hide-text-block").toggle("slow"); + $("#next-button").hide(); + $("#prev-button").show(); + }); + $("#prev-button").click(function () { + $("#hide-text-block").hide(); + $("#prev-button").hide(); + $("#next-button").show(); + }); +}); + + +(function( $ ) { + + //Function to animate slider captions + function doAnimations( elems ) { + //Cache the animationend event in a variable + var animEndEv = 'webkitAnimationEnd animationend'; + + elems.each(function () { + var $this = $(this), + $animationType = $this.data('animation'); + $this.addClass($animationType).one(animEndEv, function () { + $this.removeClass($animationType); + }); + }); + } + + //Variables on page load + var $myCarousel = $('#carousel-example-generic'), + $firstAnimatingElems = $myCarousel.find('.item:first').find("[data-animation ^= 'animated']"); + + //Initialize carousel + $myCarousel.carousel(); + + //Animate captions in first slide on page load + doAnimations($firstAnimatingElems); + + //Pause carousel + $myCarousel.carousel('pause'); + + //Other slides to be animated on carousel slide event + $myCarousel.on('slide.bs.carousel', function (e) { + var $animatingElems = $(e.relatedTarget).find("[data-animation ^= 'animated']"); + doAnimations($animatingElems); + }); + $('#carousel-example-generic').carousel({ + interval:3000, + pause: "false" + }); + +})(jQuery); + + + /* href row */ + $(document).ready(function() { + $(".href-row").click(function(e) { + // if not want more link + if (e.target.id != "morediv" && !$(e.target).parents(".morediv").length) + { + window.location = $(this).data("href"); + } + }); + }); + + /* digits */ + $(function() { + $('#staticParent').on('keydown', 'input[id*=child]', function(e){-1!==$.inArray(e.keyCode,[46,8,9,27,13,110,190])||/65|67|86|88/.test(e.keyCode)&&(!0===e.ctrlKey||!0===e.metaKey)||35<=e.keyCode&&40>=e.keyCode||(e.shiftKey||48>e.keyCode||57e.keyCode||105 0) { + next.next().children(':first-child').clone().appendTo($(this)); + } + else { + $(this).siblings(':first').children(':first-child').clone().appendTo($(this)); + } + }); +}); + +/* + $(document).ready(function(){ + $('#currency_send').on('change', function(e){ + $('#currency_receive').val(''); + var thisVal = $(this).val(); + $('#currency_receive option').each(function(){ + if(thisVal == $(this).attr('value')){ + $(this).attr('disabled', 'disabled'); //$('#currency_receive option').addClass('disabled'); + //$(this).remove(); + }else{ + $(this).removeAttr('disabled'); + } + }) + }); + }); +*/ + + + +$(document).ready(function(e) { + new Clipboard('.clipboard'); +}); + + +jQuery(document).ready(function(){ +var target = window.location.hash; +if ( target != '' ){ + var $target = jQuery(target); + jQuery('html, body').stop().animate({ + 'scrollTop': $target.offset().top - 20}, + 800, + 'swing',function () { + window.location.hash = target - 20 ; + }); +} +}); + + +jQuery(document).ready(function(){ +$('#exbutton').hover(function() { + $('#resh').addClass('fa-spin'); +}, function() { + $('#resh').removeClass('fa-spin'); +}); +}); + \ No newline at end of file diff --git a/js/html5shiv.js b/js/html5shiv.js new file mode 100644 index 0000000..355afd1 --- /dev/null +++ b/js/html5shiv.js @@ -0,0 +1,4 @@ +/** +* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed +*/ +!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:this,document); \ No newline at end of file diff --git a/js/index.htm b/js/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/js/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/js/jquery.min.js b/js/jquery.min.js new file mode 100644 index 0000000..e836475 --- /dev/null +++ b/js/jquery.min.js @@ -0,0 +1,5 @@ +/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(h)return h.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=e.call(arguments,2),d=function(){return a.apply(b||this,c.concat(e.call(arguments)))},d.guid=a.guid=a.guid||n.guid++,d):void 0},now:function(){return+new Date},support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}if(f=d.getElementById(e[2]),f&&f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||(e=n.uniqueSort(e)),D.test(a)&&(e=e.reverse())),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.addEventListener?(d.removeEventListener("DOMContentLoaded",K),a.removeEventListener("load",K)):(d.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(d.addEventListener||"load"===a.event.type||"complete"===d.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener("DOMContentLoaded",K),a.addEventListener("load",K);else{d.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&d.documentElement}catch(e){}c&&c.doScroll&&!function f(){if(!n.isReady){try{c.doScroll("left")}catch(b){return a.setTimeout(f,50)}J(),n.ready()}}()}return I.promise(b)},n.ready.promise();var L;for(L in n(l))break;l.ownFirst="0"===L,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;c=d.getElementsByTagName("body")[0],c&&c.style&&(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),"undefined"!=typeof b.style.zoom&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement("div");l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var M=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b},N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0; +}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function R(a,b,d,e){if(M(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),"object"!=typeof b&&"function"!=typeof b||(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f}}function S(a,b,c){if(M(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},Z=/^(?:checkbox|radio)$/i,$=/<([\w:-]+)/,_=/^$|\/(?:java|ecma)script/i,aa=/^\s+/,ba="abbr|article|aside|audio|bdi|canvas|data|datalist|details|dialog|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|picture|progress|section|summary|template|time|video";function ca(a){var b=ba.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}!function(){var a=d.createElement("div"),b=d.createDocumentFragment(),c=d.createElement("input");a.innerHTML="
      a",l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName("tbody").length,l.htmlSerialize=!!a.getElementsByTagName("link").length,l.html5Clone="<:nav>"!==d.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML="",l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement("input"),c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var da={option:[1,""],legend:[1,"
      ","
      "],area:[1,"",""],param:[1,"",""],thead:[1,"","
      "],tr:[2,"","
      "],col:[2,"","
      "],td:[3,"","
      "],_default:l.htmlSerialize?[0,"",""]:[1,"X
      ","
      "]};da.optgroup=da.option,da.tbody=da.tfoot=da.colgroup=da.caption=da.thead,da.th=da.td;function ea(a,b){var c,d,e=0,f="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,ea(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function fa(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}var ga=/<|&#?\w+;/,ha=/r;r++)if(g=a[r],g||0===g)if("object"===n.type(g))n.merge(q,g.nodeType?[g]:g);else if(ga.test(g)){i=i||p.appendChild(b.createElement("div")),j=($.exec(g)||["",""])[1].toLowerCase(),m=da[j]||da._default,i.innerHTML=m[1]+n.htmlPrefilter(g)+m[2],f=m[0];while(f--)i=i.lastChild;if(!l.leadingWhitespace&&aa.test(g)&&q.push(b.createTextNode(aa.exec(g)[0])),!l.tbody){g="table"!==j||ha.test(g)?""!==m[1]||ha.test(g)?0:i:i.firstChild,f=g&&g.childNodes.length;while(f--)n.nodeName(k=g.childNodes[f],"tbody")&&!k.childNodes.length&&g.removeChild(k)}n.merge(q,i.childNodes),i.textContent="";while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&&p.removeChild(i),l.appendChecked||n.grep(ea(q,"input"),ia),r=0;while(g=q[r++])if(d&&n.inArray(g,d)>-1)e&&e.push(g);else if(h=n.contains(g.ownerDocument,g),i=ea(p.appendChild(g),"script"),h&&fa(i),c){f=0;while(g=i[f++])_.test(g.type||"")&&c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b]=c in a)||(e.setAttribute(c,"t"),l[b]=e.attributes[c].expando===!1);e=null}();var ka=/^(?:input|select|textarea)$/i,la=/^key/,ma=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,na=/^(?:focusinfocus|focusoutblur)$/,oa=/^([^.]*)(?:\.(.+)|)/;function pa(){return!0}function qa(){return!1}function ra(){try{return d.activeElement}catch(a){}}function sa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)sa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=qa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return"undefined"==typeof n||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(G)||[""],h=b.length;while(h--)f=oa.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=oa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(i=m=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!na.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),h=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||l.trigger.apply(e,c)!==!1)){if(!f&&!l.noBubble&&!n.isWindow(e)){for(j=l.delegateType||q,na.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&&p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&&!b.isPropagationStopped())b.type=o>1?j:l.bindType||q,g=(n._data(i,"events")||{})[b.type]&&n._data(i,"handle"),g&&g.apply(i,c),g=h&&i[h],g&&g.apply&&M(i)&&(b.result=g.apply(i,c),b.result===!1&&b.preventDefault());if(b.type=q,!f&&!b.isDefaultPrevented()&&(!l._default||l._default.apply(p.pop(),c)===!1)&&M(e)&&h&&e[q]&&!n.isWindow(e)){m=e[h],m&&(e[h]=null),n.event.triggered=q;try{e[q]()}catch(s){}n.event.triggered=void 0,m&&(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]","i"),va=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,wa=/\s*$/g,Aa=ca(d),Ba=Aa.appendChild(d.createElement("div"));function Ca(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Da(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function Ea(a){var b=ya.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Fa(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Ga(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(Da(b).text=a.text,Ea(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&Z.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}}function Ha(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&xa.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(o&&(k=ja(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&&(k=e),e||d)){for(i=n.map(ea(k,"script"),Da),h=i.length;o>m;m++)g=k,m!==p&&(g=n.clone(g,!0,!0),h&&n.merge(i,ea(g,"script"))),c.call(a[m],g,m);if(h)for(j=i[i.length-1].ownerDocument,n.map(i,Ea),m=0;h>m;m++)g=i[m],_.test(g.type||"")&&!n._data(g,"globalEval")&&n.contains(j,g)&&(g.src?n._evalUrl&&n._evalUrl(g.src):n.globalEval((g.text||g.textContent||g.innerHTML||"").replace(za,"")));k=e=null}return a}function Ia(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(ea(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&fa(ea(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(va,"<$1>")},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ua.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(Ba.innerHTML=a.outerHTML,Ba.removeChild(f=Ba.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=ea(f),h=ea(a),g=0;null!=(e=h[g]);++g)d[g]&&Ga(e,d[g]);if(b)if(c)for(h=h||ea(a),d=d||ea(f),g=0;null!=(e=h[g]);g++)Fa(e,d[g]);else Fa(a,f);return d=ea(f,"script"),d.length>0&&fa(d,!i&&ea(a,"script")),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||M(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k||"undefined"==typeof d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ha,detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return Y(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(ea(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return Y(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(ta,""):void 0;if("string"==typeof a&&!wa.test(a)&&(l.htmlSerialize||!ua.test(a))&&(l.leadingWhitespace||!aa.test(a))&&!da[($.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ea(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ha(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(ea(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],f=n(a),h=f.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(f[d])[b](c),g.apply(e,c.get());return this.pushStack(e)}});var Ja,Ka={HTML:"block",BODY:"block"};function La(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function Ma(a){var b=d,c=Ka[a];return c||(c=La(a,b),"none"!==c&&c||(Ja=(Ja||n("');return b.join("")})}},fileButton:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);var f=this;a.validate&&(this.validate=a.validate);var c=CKEDITOR.tools.extend({},a),e=c.onClick;c.className=(c.className?c.className+" ":"")+"cke_dialog_ui_button";c.onClick=function(c){var d= +a["for"];if(!e||e.call(this,c)!==false){b.getContentElement(d[0],d[1]).submit();this.disable()}};b.on("load",function(){b.getContentElement(a["for"][0],a["for"][1])._.buttons.push(f)});CKEDITOR.ui.dialog.button.call(this,b,c,d)}},html:function(){var b=/^\s*<[\w:]+\s+([^>]*)?>/,a=/^(\s*<[\w:]+(?:\s+[^>]*)?)((?:.|\r|\n)+)$/,d=/\/$/;return function(f,c,e){if(!(3>arguments.length)){var k=[],g=c.html;"<"!=g.charAt(0)&&(g=""+g+"");var i=c.focus;if(i){var j=this.focus;this.focus=function(){("function"== +typeof i?i:j).call(this);this.fire("focus")};c.isFocusable&&(this.isFocusable=this.isFocusable);this.keyboardFocusable=!0}CKEDITOR.ui.dialog.uiElement.call(this,f,c,k,"span",null,null,"");k=k.join("").match(b);g=g.match(a)||["","",""];d.test(g[1])&&(g[1]=g[1].slice(0,-1),g[2]="/"+g[2]);e.push([g[1]," ",k[1]||"",g[2]].join(""))}}}(),fieldset:function(b,a,d,f,c){var e=c.label;this._={children:a};CKEDITOR.ui.dialog.uiElement.call(this,b,c,f,"fieldset",null,null,function(){var a=[];e&&a.push(""+e+"");for(var b=0;ba.getChildCount()?(new CKEDITOR.dom.text(b,CKEDITOR.document)).appendTo(a):a.getChild(0).$.nodeValue=b;return this},getLabel:function(){var b= +CKEDITOR.document.getById(this._.labelId);return!b||1>b.getChildCount()?"":b.getChild(0).getText()},eventProcessors:o},!0);CKEDITOR.ui.dialog.button.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{click:function(){return!this._.disabled?this.fire("click",{dialog:this._.dialog}):!1},enable:function(){this._.disabled=!1;var b=this.getElement();b&&b.removeClass("cke_disabled")},disable:function(){this._.disabled=!0;this.getElement().addClass("cke_disabled")},isVisible:function(){return this.getElement().getFirst().isVisible()}, +isEnabled:function(){return!this._.disabled},eventProcessors:CKEDITOR.tools.extend({},CKEDITOR.ui.dialog.uiElement.prototype.eventProcessors,{onClick:function(b,a){this.on("click",function(){a.apply(this,arguments)})}},!0),accessKeyUp:function(){this.click()},accessKeyDown:function(){this.focus()},keyboardFocusable:!0},!0);CKEDITOR.ui.dialog.textInput.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,{getInputElement:function(){return CKEDITOR.document.getById(this._.inputId)}, +focus:function(){var b=this.selectParentTab();setTimeout(function(){var a=b.getInputElement();a&&a.$.focus()},0)},select:function(){var b=this.selectParentTab();setTimeout(function(){var a=b.getInputElement();a&&(a.$.focus(),a.$.select())},0)},accessKeyUp:function(){this.select()},setValue:function(b){!b&&(b="");return CKEDITOR.ui.dialog.uiElement.prototype.setValue.apply(this,arguments)},keyboardFocusable:!0},n,!0);CKEDITOR.ui.dialog.textarea.prototype=new CKEDITOR.ui.dialog.textInput;CKEDITOR.ui.dialog.select.prototype= +CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,{getInputElement:function(){return this._.select.getElement()},add:function(b,a,d){var f=new CKEDITOR.dom.element("option",this.getDialog().getParentEditor().document),c=this.getInputElement().$;f.$.text=b;f.$.value=void 0===a||null===a?b:a;void 0===d||null===d?CKEDITOR.env.ie?c.add(f.$):c.add(f.$,null):c.add(f.$,d);return this},remove:function(b){this.getInputElement().$.remove(b);return this},clear:function(){for(var b=this.getInputElement().$;0< +b.length;)b.remove(0);return this},keyboardFocusable:!0},n,!0);CKEDITOR.ui.dialog.checkbox.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{getInputElement:function(){return this._.checkbox.getElement()},setValue:function(b,a){this.getInputElement().$.checked=b;!a&&this.fire("change",{value:b})},getValue:function(){return this.getInputElement().$.checked},accessKeyUp:function(){this.setValue(!this.getValue())},eventProcessors:{onChange:function(b,a){if(!CKEDITOR.env.ie||8','
      + +

      + diff --git a/operator/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/operator/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html new file mode 100644 index 0000000..61203e0 --- /dev/null +++ b/operator/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + diff --git a/operator/js/ckeditor/plugins/wsc/dialogs/wsc.css b/operator/js/ckeditor/plugins/wsc/dialogs/wsc.css new file mode 100644 index 0000000..da2f174 --- /dev/null +++ b/operator/js/ckeditor/plugins/wsc/dialogs/wsc.css @@ -0,0 +1,82 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.html or http://ckeditor.com/license +*/ + +html, body +{ + background-color: transparent; + margin: 0px; + padding: 0px; +} + +body +{ + padding: 10px; +} + +body, td, input, select, textarea +{ + font-size: 11px; + font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; +} + +.midtext +{ + padding:0px; + margin:10px; +} + +.midtext p +{ + padding:0px; + margin:10px; +} + +.Button +{ + border: #737357 1px solid; + color: #3b3b1f; + background-color: #c7c78f; +} + +.PopupTabArea +{ + color: #737357; + background-color: #e3e3c7; +} + +.PopupTitleBorder +{ + border-bottom: #d5d59d 1px solid; +} +.PopupTabEmptyArea +{ + padding-left: 10px; + border-bottom: #d5d59d 1px solid; +} + +.PopupTab, .PopupTabSelected +{ + border-right: #d5d59d 1px solid; + border-top: #d5d59d 1px solid; + border-left: #d5d59d 1px solid; + padding: 3px 5px 3px 5px; + color: #737357; +} + +.PopupTab +{ + margin-top: 1px; + border-bottom: #d5d59d 1px solid; + cursor: pointer; +} + +.PopupTabSelected +{ + font-weight: bold; + cursor: default; + padding-top: 4px; + border-bottom: #f1f1e3 1px solid; + background-color: #f1f1e3; +} diff --git a/operator/js/ckeditor/plugins/wsc/dialogs/wsc.js b/operator/js/ckeditor/plugins/wsc/dialogs/wsc.js new file mode 100644 index 0000000..b53a48c --- /dev/null +++ b/operator/js/ckeditor/plugins/wsc/dialogs/wsc.js @@ -0,0 +1,74 @@ +/* + Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.html or http://ckeditor.com/license +*/ +(function(){function q(a){return a&&a.domId&&a.getInputElement().$?a.getInputElement():a&&a.$?a:!1}function z(a){if(!a)throw"Languages-by-groups list are required for construct selectbox";var c=[],d="",f;for(f in a)for(var g in a[f]){var h=a[f][g];"en_US"==h?d=h:c.push(h)}c.sort();d&&c.unshift(d);return{getCurrentLangGroup:function(c){a:{for(var d in a)for(var f in a[d])if(f.toUpperCase()===c.toUpperCase()){c=d;break a}c=""}return c},setLangList:function(){var c={},d;for(d in a)for(var f in a[d])c[a[d][f]]= +f;return c}()}}var e=function(){var a=function(a,b,f){var f=f||{},g=f.expires;if("number"==typeof g&&g){var h=new Date;h.setTime(h.getTime()+1E3*g);g=f.expires=h}g&&g.toUTCString&&(f.expires=g.toUTCString());var b=encodeURIComponent(b),a=a+"="+b,e;for(e in f)b=f[e],a+="; "+e,!0!==b&&(a+="="+b);document.cookie=a};return{postMessage:{init:function(a){window.addEventListener?window.addEventListener("message",a,!1):window.attachEvent("onmessage",a)},send:function(a){var b=Object.prototype.toString,f= +a.fn||null,g=a.id||"",e=a.target||window,i=a.message||{id:g};a.message&&"[object Object]"==b.call(a.message)&&(a.message.id||(a.message.id=g),i=a.message);a=window.JSON.stringify(i,f);e.postMessage(a,"*")},unbindHandler:function(a){window.removeEventListener?window.removeEventListener("message",a,!1):window.detachEvent("onmessage",a)}},hash:{create:function(){},parse:function(){}},cookie:{set:a,get:function(a){return(a=document.cookie.match(RegExp("(?:^|; )"+a.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, +"\\$1")+"=([^;]*)")))?decodeURIComponent(a[1]):void 0},remove:function(c){a(c,"",{expires:-1})}},misc:{findFocusable:function(a){var b=null;a&&(b=a.find("a[href], area[href], input, select, textarea, button, *[tabindex], *[contenteditable]"));return b},isVisible:function(a){return!(0===a.offsetWidth||0==a.offsetHeight||"none"===(document.defaultView&&document.defaultView.getComputedStyle?document.defaultView.getComputedStyle(a,null).display:a.currentStyle?a.currentStyle.display:a.style.display))}, +hasClass:function(a,b){return!(!a.className||!a.className.match(RegExp("(\\s|^)"+b+"(\\s|$)")))}}}}(),a=a||{};a.TextAreaNumber=null;a.load=!0;a.cmd={SpellTab:"spell",Thesaurus:"thes",GrammTab:"grammar"};a.dialog=null;a.optionNode=null;a.selectNode=null;a.grammerSuggest=null;a.textNode={};a.iframeMain=null;a.dataTemp="";a.div_overlay=null;a.textNodeInfo={};a.selectNode={};a.selectNodeResponce={};a.langList=null;a.langSelectbox=null;a.banner="";a.show_grammar=null;a.div_overlay_no_check=null;a.targetFromFrame= +{};a.onLoadOverlay=null;a.LocalizationComing={};a.OverlayPlace=null;a.LocalizationButton={ChangeTo:{instance:null,text:"Change to"},ChangeAll:{instance:null,text:"Change All"},IgnoreWord:{instance:null,text:"Ignore word"},IgnoreAllWords:{instance:null,text:"Ignore all words"},Options:{instance:null,text:"Options",optionsDialog:{instance:null}},AddWord:{instance:null,text:"Add word"},FinishChecking:{instance:null,text:"Finish Checking"}};a.LocalizationLabel={ChangeTo:{instance:null,text:"Change to"}, +Suggestions:{instance:null,text:"Suggestions"}};var A=function(b){var c,d;for(d in b)c=b[d].instance.getElement().getFirst()||b[d].instance.getElement(),c.setText(a.LocalizationComing[d])},B=function(b){for(var c in b){if(!b[c].instance.setLabel)break;b[c].instance.setLabel(a.LocalizationComing[c])}},j,r;a.framesetHtml=function(b){return"'}; +a.setIframe=function(b,c){var d;d=a.framesetHtml(c);var f=a.iframeNumber+"_"+c;b.getElement().setHtml(d);d=document.getElementById(f);d=d.contentWindow?d.contentWindow:d.contentDocument.document?d.contentDocument.document:d.contentDocument;d.document.open();d.document.write('iframe
      + + + + +

      + CKEditor Samples » Create and Destroy Editor Instances for Ajax Applications +

      +
      +

      + This sample shows how to create and destroy CKEditor instances on the fly. After the removal of CKEditor the content created inside the editing + area will be displayed in a <div> element. +

      +

      + For details of how to create this setup check the source code of this sample page + for JavaScript code responsible for the creation and destruction of a CKEditor instance. +

      +
      +

      Click the buttons to create and remove a CKEditor instance.

      +

      + + +

      + +
      +
      + + + + diff --git a/operator/js/ckeditor/samples/api.html b/operator/js/ckeditor/samples/api.html new file mode 100644 index 0000000..a957eed --- /dev/null +++ b/operator/js/ckeditor/samples/api.html @@ -0,0 +1,207 @@ + + + + + + API Usage — CKEditor Sample + + + + + + +

      + CKEditor Samples » Using CKEditor JavaScript API +

      +
      +

      + This sample shows how to use the + CKEditor JavaScript API + to interact with the editor at runtime. +

      +

      + For details on how to create this setup check the source code of this sample page. +

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

      +

      + + + + + + diff --git a/operator/js/ckeditor/samples/appendto.html b/operator/js/ckeditor/samples/appendto.html new file mode 100644 index 0000000..b846770 --- /dev/null +++ b/operator/js/ckeditor/samples/appendto.html @@ -0,0 +1,56 @@ + + + + + + Append To Page Element Using JavaScript Code — CKEditor Sample + + + + +

      + CKEditor Samples » Append To Page Element Using JavaScript Code +

      +
      +
      +

      + The CKEDITOR.appendTo() method serves to to place editors inside existing DOM elements. Unlike CKEDITOR.replace(), + a target container to be replaced is no longer necessary. A new editor + instance is inserted directly wherever it is desired. +

      +
      CKEDITOR.appendTo( 'container_id',
      +	{ /* Configuration options to be used. */ }
      +	'Editor content to be used.'
      +);
      +
      + +
      +
      + + + diff --git a/operator/js/ckeditor/samples/assets/inlineall/logo.png b/operator/js/ckeditor/samples/assets/inlineall/logo.png new file mode 100644 index 0000000..b4d5979 Binary files /dev/null and b/operator/js/ckeditor/samples/assets/inlineall/logo.png differ diff --git a/operator/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css b/operator/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css new file mode 100644 index 0000000..fa0ff37 --- /dev/null +++ b/operator/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css @@ -0,0 +1,204 @@ +/* + * Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + * + * Styles used by the XHTML 1.1 sample page (xhtml.html). + */ + +/** + * Basic definitions for the editing area. + */ +body +{ + font-family: Arial, Verdana, sans-serif; + font-size: 80%; + color: #000000; + background-color: #ffffff; + padding: 5px; + margin: 0px; +} + +/** + * Core styles. + */ + +.Bold +{ + font-weight: bold; +} + +.Italic +{ + font-style: italic; +} + +.Underline +{ + text-decoration: underline; +} + +.StrikeThrough +{ + text-decoration: line-through; +} + +.Subscript +{ + vertical-align: sub; + font-size: smaller; +} + +.Superscript +{ + vertical-align: super; + font-size: smaller; +} + +/** + * Font faces. + */ + +.FontComic +{ + font-family: 'Comic Sans MS'; +} + +.FontCourier +{ + font-family: 'Courier New'; +} + +.FontTimes +{ + font-family: 'Times New Roman'; +} + +/** + * Font sizes. + */ + +.FontSmaller +{ + font-size: smaller; +} + +.FontLarger +{ + font-size: larger; +} + +.FontSmall +{ + font-size: 8pt; +} + +.FontBig +{ + font-size: 14pt; +} + +.FontDouble +{ + font-size: 200%; +} + +/** + * Font colors. + */ +.FontColor1 +{ + color: #ff9900; +} + +.FontColor2 +{ + color: #0066cc; +} + +.FontColor3 +{ + color: #ff0000; +} + +.FontColor1BG +{ + background-color: #ff9900; +} + +.FontColor2BG +{ + background-color: #0066cc; +} + +.FontColor3BG +{ + background-color: #ff0000; +} + +/** + * Indentation. + */ + +.Indent1 +{ + margin-left: 40px; +} + +.Indent2 +{ + margin-left: 80px; +} + +.Indent3 +{ + margin-left: 120px; +} + +/** + * Alignment. + */ + +.JustifyLeft +{ + text-align: left; +} + +.JustifyRight +{ + text-align: right; +} + +.JustifyCenter +{ + text-align: center; +} + +.JustifyFull +{ + text-align: justify; +} + +/** + * Other. + */ + +code +{ + font-family: courier, monospace; + background-color: #eeeeee; + padding-left: 1px; + padding-right: 1px; + border: #c0c0c0 1px solid; +} + +kbd +{ + padding: 0px 1px 0px 1px; + border-width: 1px 2px 2px 1px; + border-style: solid; +} + +blockquote +{ + color: #808080; +} diff --git a/operator/js/ckeditor/samples/assets/posteddata.php b/operator/js/ckeditor/samples/assets/posteddata.php new file mode 100644 index 0000000..6b26aae --- /dev/null +++ b/operator/js/ckeditor/samples/assets/posteddata.php @@ -0,0 +1,59 @@ + + + + + + Sample — CKEditor + + + +

      + CKEditor — Posted Data +

      +
      + + + + + + + + $value ) + { + if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) + continue; + + if ( get_magic_quotes_gpc() ) + $value = htmlspecialchars( stripslashes((string)$value) ); + else + $value = htmlspecialchars( (string)$value ); +?> + + + + + +
      Field NameValue
      + + + diff --git a/operator/js/ckeditor/samples/assets/sample.jpg b/operator/js/ckeditor/samples/assets/sample.jpg new file mode 100644 index 0000000..9498271 Binary files /dev/null and b/operator/js/ckeditor/samples/assets/sample.jpg differ diff --git a/operator/js/ckeditor/samples/assets/uilanguages/languages.js b/operator/js/ckeditor/samples/assets/uilanguages/languages.js new file mode 100644 index 0000000..3f7ff62 --- /dev/null +++ b/operator/js/ckeditor/samples/assets/uilanguages/languages.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +var CKEDITOR_LANGS=function(){var c={af:"Afrikaans",ar:"Arabic",bg:"Bulgarian",bn:"Bengali/Bangla",bs:"Bosnian",ca:"Catalan",cs:"Czech",cy:"Welsh",da:"Danish",de:"German",el:"Greek",en:"English","en-au":"English (Australia)","en-ca":"English (Canadian)","en-gb":"English (United Kingdom)",eo:"Esperanto",es:"Spanish",et:"Estonian",eu:"Basque",fa:"Persian",fi:"Finnish",fo:"Faroese",fr:"French","fr-ca":"French (Canada)",gl:"Galician",gu:"Gujarati",he:"Hebrew",hi:"Hindi",hr:"Croatian",hu:"Hungarian",id:"Indonesian", +is:"Icelandic",it:"Italian",ja:"Japanese",ka:"Georgian",km:"Khmer",ko:"Korean",ku:"Kurdish",lt:"Lithuanian",lv:"Latvian",mk:"Macedonian",mn:"Mongolian",ms:"Malay",nb:"Norwegian Bokmal",nl:"Dutch",no:"Norwegian",pl:"Polish",pt:"Portuguese (Portugal)","pt-br":"Portuguese (Brazil)",ro:"Romanian",ru:"Russian",si:"Sinhala",sk:"Slovak",sq:"Albanian",sl:"Slovenian",sr:"Serbian (Cyrillic)","sr-latn":"Serbian (Latin)",sv:"Swedish",th:"Thai",tr:"Turkish",tt:"Tatar",ug:"Uighur",uk:"Ukrainian",vi:"Vietnamese", +zh:"Chinese Traditional","zh-cn":"Chinese Simplified"},b=[],a;for(a in CKEDITOR.lang.languages)b.push({code:a,name:c[a]||a});b.sort(function(a,b){return a.name + + + + + Data Filtering — CKEditor Sample + + + + + +

      + CKEditor Samples » Data Filtering and Features Activation +

      +
      +

      + This sample page demonstrates the idea of Advanced Content Filter + (ACF), a sophisticated + tool that takes control over what kind of data is accepted by the editor and what + kind of output is produced. +

      +

      When and what is being filtered?

      +

      + ACF controls + every single source of data that comes to the editor. + It process both HTML that is inserted manually (i.e. pasted by the user) + and programmatically like: +

      +
      +editor.setData( '<p>Hello world!</p>' );
      +
      +

      + ACF discards invalid, + useless HTML tags and attributes so the editor remains "clean" during + runtime. ACF behaviour + can be configured and adjusted for a particular case to prevent the + output HTML (i.e. in CMS systems) from being polluted. + + This kind of filtering is a first, client-side line of defense + against "tag soups", + the tool that precisely restricts which tags, attributes and styles + are allowed (desired). When properly configured, ACF + is an easy and fast way to produce a high-quality, intentionally filtered HTML. +

      + +

      How to configure or disable ACF?

      +

      + Advanced Content Filter is enabled by default, working in "automatic mode", yet + it provides a set of easy rules that allow adjusting filtering rules + and disabling the entire feature when necessary. The config property + responsible for this feature is config.allowedContent. +

      +

      + By "automatic mode" is meant that loaded plugins decide which kind + of content is enabled and which is not. For example, if the link + plugin is loaded it implies that <a> tag is + automatically allowed. Each plugin is given a set + of predefined ACF rules + that control the editor until + config.allowedContent + is defined manually. +

      +

      + Let's assume our intention is to restrict the editor to accept (produce) paragraphs + only: no attributes, no styles, no other tags. + With ACF + this is very simple. Basically set + config.allowedContent to 'p': +

      +
      +var editor = CKEDITOR.replace( textarea_id, {
      +	allowedContent: 'p'
      +} );
      +
      +

      + Now try to play with allowed content: +

      +
      +// Trying to insert disallowed tag and attribute.
      +editor.setData( '<p style="color: red">Hello <em>world</em>!</p>' );
      +alert( editor.getData() );
      +
      +// Filtered data is returned.
      +"<p>Hello world!</p>"
      +
      +

      + What happened? Since config.allowedContent: 'p' is set the editor assumes + that only plain <p> are accepted. Nothing more. This is why + style attribute and <em> tag are gone. The same + filtering would happen if we pasted disallowed HTML into this editor. +

      +

      + This is just a small sample of what ACF + can do. To know more, please refer to the sample section below and + the official Advanced Content Filter guide. +

      +

      + You may, of course, want CKEditor to avoid filtering of any kind. + To get rid of ACF, + basically set + config.allowedContent to true like this: +

      +
      +CKEDITOR.replace( textarea_id, {
      +	allowedContent: true
      +} );
      +
      + +

      Beyond data flow: Features activation

      +

      + ACF is far more than + I/O control: the entire + UI of the editor is adjusted to what + filters restrict. For example: if <a> tag is + disallowed + by ACF, + then accordingly link command, toolbar button and link dialog + are also disabled. Editor is smart: it knows which features must be + removed from the interface to match filtering rules. +

      +

      + CKEditor can be far more specific. If <a> tag is + allowed by filtering rules to be used but it is restricted + to have only one attribute (href) + config.allowedContent = 'a[!href]', then + "Target" tab of the link dialog is automatically disabled as target + attribute isn't included in ACF rules + for <a>. This behaviour applies to dialog fields, context + menus and toolbar buttons. +

      + +

      Sample configurations

      +

      + There are several editor instances below that present different + ACF setups. All of them, + except the last inline instance, share the same HTML content to visualize + how different filtering rules affect the same input data. +

      +
      + +
      + +
      +

      + This editor is using default configuration ("automatic mode"). It means that + + config.allowedContent is defined by loaded plugins. + Each plugin extends filtering rules to make it's own associated content + available for the user. +

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

      + This editor is using a custom configuration for + ACF: +

      +
      +CKEDITOR.replace( 'editor2', {
      +	allowedContent:
      +		'h1 h2 h3 p blockquote strong em;' +
      +		'a[!href];' +
      +		'img(left,right)[!src,alt,width,height];' +
      +		'table tr th td caption;' +
      +		'span{!font-family};' +'
      +		'span{!color};' +
      +		'span(!marker);' +
      +		'del ins'
      +} );
      +
      +

      + The following rules may require additional explanation: +

      +
        +
      • + h1 h2 h3 p blockquote strong em - These tags + are accepted by the editor. Any tag attributes will be discarded. +
      • +
      • + a[!href] - href attribute is obligatory + for <a> tag. Tags without this attribute + are disarded. No other attribute will be accepted. +
      • +
      • + img(left,right)[!src,alt,width,height] - src + attribute is obligatory for <img> tag. + alt, width, height + and class attributes are accepted but + class must be either class="left" + or class="right" +
      • +
      • + table tr th td caption - These tags + are accepted by the editor. Any tag attributes will be discarded. +
      • +
      • + span{!font-family}, span{!color}, + span(!marker) - <span> tags + will be accepted if either font-family or + color style is set or class="marker" + is present. +
      • +
      • + del ins - These tags + are accepted by the editor. Any tag attributes will be discarded. +
      • +
      +

      + Please note that UI of the + editor is different. It's a response to what happened to the filters. + Since text-align isn't allowed, the align toolbar is gone. + The same thing happened to subscript/superscript, strike, underline + (<u>, <sub>, <sup> + are disallowed by + config.allowedContent) and many other buttons. +

      +
      + + +
      + +
      + +
      + +
      +

      + This editor is using a custom configuration for + ACF. + Note that filters can be configured as an object literal + as an alternative to a string-based definition. +

      +
      +CKEDITOR.replace( 'editor3', {
      +	allowedContent: {
      +		'b i ul ol big small': true,
      +		'h1 h2 h3 p blockquote li': {
      +			styles: 'text-align'
      +		},
      +		a: { attributes: '!href,target' },
      +		img: {
      +			attributes: '!src,alt',
      +			styles: 'width,height',
      +			classes: 'left,right'
      +		}
      +	}
      +} );
      +
      +
      + + +
      + +
      + +
      + +
      +

      + This editor is using a custom set of plugins and buttons. +

      +
      +CKEDITOR.replace( 'editor4', {
      +	removePlugins: 'bidi,font,forms,flash,horizontalrule,iframe,justify,table,tabletools,smiley',
      +	removeButtons: 'Anchor,Underline,Strike,Subscript,Superscript,Image',
      +	format_tags: 'p;h1;h2;h3;pre;address'
      +} );
      +
      +

      + As you can see, removing plugins and buttons implies filtering. + Several tags are not allowed in the editor because there's no + plugin/button that is responsible for creating and editing this + kind of content (for example: the image is missing because + of removeButtons: 'Image'). The conclusion is that + ACF works "backwards" + as well: modifying UI + elements is changing allowed content rules. +

      +
      + + +
      + +
      + +
      + +
      +

      + This editor is built on editable <h1> element. + ACF takes care of + what can be included in <h1>. Note that there + are no block styles in Styles combo. Also why lists, indentation, + blockquote, div, form and other buttons are missing. +

      +

      + ACF makes sure that + no disallowed tags will come to <h1> so the final + markup is valid. If the user tried to paste some invalid HTML + into this editor (let's say a list), it would be automatically + converted into plain text. +

      +
      +

      + Apollo 11 was the spaceflight that landed the first humans, Americans Neil Armstrong and Buzz Aldrin, on the Moon on July 20, 1969, at 20:18 UTC. +

      +
      + + + + diff --git a/operator/js/ckeditor/samples/divreplace.html b/operator/js/ckeditor/samples/divreplace.html new file mode 100644 index 0000000..873c8c2 --- /dev/null +++ b/operator/js/ckeditor/samples/divreplace.html @@ -0,0 +1,141 @@ + + + + + + Replace DIV — CKEditor Sample + + + + + + +

      + CKEditor Samples » Replace DIV with CKEditor on the Fly +

      +
      +

      + This sample shows how to automatically replace <div> elements + with a CKEditor instance on the fly, following user's doubleclick. The content + that was previously placed inside the <div> element will now + be moved into CKEditor editing area. +

      +

      + For details on how to create this setup check the source code of this sample page. +

      +
      +

      + Double-click any of the following <div> elements to transform them into + editor instances. +

      +
      +

      + Part 1 +

      +

      + Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi + semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna + rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla + nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce + eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus. +

      +
      +
      +

      + Part 2 +

      +

      + Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi + semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna + rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla + nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce + eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus. +

      +

      + Donec velit. Mauris massa. Vestibulum non nulla. Nam suscipit arcu nec elit. Phasellus + sollicitudin iaculis ante. Ut non mauris et sapien tincidunt adipiscing. Vestibulum + vitae leo. Suspendisse nec mi tristique nulla laoreet vulputate. +

      +
      +
      +

      + Part 3 +

      +

      + Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi + semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna + rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla + nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce + eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus. +

      +
      + + + diff --git a/operator/js/ckeditor/samples/index.html b/operator/js/ckeditor/samples/index.html new file mode 100644 index 0000000..09e08bd --- /dev/null +++ b/operator/js/ckeditor/samples/index.html @@ -0,0 +1,128 @@ + + + + + + CKEditor Samples + + + +

      + CKEditor Samples +

      +
      +
      +

      + Basic Samples +

      +
      +
      Replace textarea elements by class name
      +
      Automatic replacement of all textarea elements of a given class with a CKEditor instance.
      + +
      Replace textarea elements by code
      +
      Replacement of textarea elements with CKEditor instances by using a JavaScript call.
      + +
      Create editors with jQuery
      +
      Creating standard and inline CKEditor instances with jQuery adapter.
      +
      + +

      + Basic Customization +

      +
      +
      User Interface color
      +
      Changing CKEditor User Interface color and adding a toolbar button that lets the user set the UI color.
      + +
      User Interface languages
      +
      Changing CKEditor User Interface language and adding a drop-down list that lets the user choose the UI language.
      +
      + + +

      Plugins

      +
      +
      Magicline plugin
      +
      Using the Magicline plugin to access difficult focus spaces.
      + +
      Full page support
      +
      CKEditor inserted with a JavaScript call and used to edit the whole page from <html> to </html>.
      +
      +
      +
      +

      + Inline Editing +

      +
      +
      Massive inline editor creation
      +
      Turn all elements with contentEditable = true attribute into inline editors.
      + +
      Convert element into an inline editor by code
      +
      Conversion of DOM elements into inline CKEditor instances by using a JavaScript call.
      + +
      Replace textarea with inline editor New!
      +
      A form with a textarea that is replaced by an inline editor at runtime.
      + + +
      + +

      + Advanced Samples +

      +
      +
      Data filtering and features activation New!
      +
      Data filtering and automatic features activation basing on configuration.
      + +
      Replace DIV elements on the fly
      +
      Transforming a div element into an instance of CKEditor with a mouse click.
      + +
      Append editor instances
      +
      Appending editor instances to existing DOM elements.
      + +
      Create and destroy editor instances for Ajax applications
      +
      Creating and destroying CKEditor instances on the fly and saving the contents entered into the editor window.
      + +
      Basic usage of the API
      +
      Using the CKEditor JavaScript API to interact with the editor at runtime.
      + +
      XHTML-compliant style
      +
      Configuring CKEditor to produce XHTML 1.1 compliant attributes and styles.
      + +
      Read-only mode
      +
      Using the readOnly API to block introducing changes to the editor contents.
      + +
      "Tab" key-based navigation
      +
      Navigating among editor instances with tab key.
      + + + +
      Using the JavaScript API to customize dialog windows
      +
      Using the dialog windows API to customize dialog windows without changing the original editor code.
      + +
      Using the "Enter" key in CKEditor
      +
      Configuring the behavior of Enter and Shift+Enter keys.
      + +
      Output for Flash
      +
      Configuring CKEditor to produce HTML code that can be used with Adobe Flash.
      + +
      Output HTML
      +
      Configuring CKEditor to produce legacy HTML 4 code.
      + +
      Toolbar Configurations
      +
      Configuring CKEditor to display full or custom toolbar layout.
      + +
      +
      +
      + + + diff --git a/operator/js/ckeditor/samples/inlineall.html b/operator/js/ckeditor/samples/inlineall.html new file mode 100644 index 0000000..f82af1d --- /dev/null +++ b/operator/js/ckeditor/samples/inlineall.html @@ -0,0 +1,311 @@ + + + + + + Massive inline editing — CKEditor Sample + + + + + + +
      +

      CKEditor Samples » Massive inline editing

      +
      +

      This sample page demonstrates the inline editing feature - CKEditor instances will be created automatically from page elements with contentEditable attribute set to value true:

      +
      <div contenteditable="true" > ... </div>
      +

      Click inside of any element below to start editing.

      +
      +
      +
      + +
      +
      +
      +

      + Fusce vitae porttitor +

      +

      + + Lorem ipsum dolor sit amet dolor. Duis blandit vestibulum faucibus a, tortor. + +

      +

      + Proin nunc justo felis mollis tincidunt, risus risus pede, posuere cubilia Curae, Nullam euismod, enim. Etiam nibh ultricies dolor ac dignissim erat volutpat. Vivamus fermentum nisl nulla sem in metus. Maecenas wisi. Donec nec erat volutpat. +

      +
      +

      + Fusce vitae porttitor a, euismod convallis nisl, blandit risus tortor, pretium. + Vehicula vitae, imperdiet vel, ornare enim vel sodales rutrum +

      +
      +
      +

      + Libero nunc, rhoncus ante ipsum non ipsum. Nunc eleifend pede turpis id sollicitudin fringilla. Phasellus ultrices, velit ac arcu. +

      +
      +

      Pellentesque nunc. Donec suscipit erat. Pellentesque habitant morbi tristique ullamcorper.

      +

      Mauris mattis feugiat lectus nec mauris. Nullam vitae ante.

      +
      +
      +
      +
      +

      + Integer condimentum sit amet +

      +

      + Aenean nonummy a, mattis varius. Cras aliquet. + Praesent magna non mattis ac, rhoncus nunc, rhoncus eget, cursus pulvinar mollis.

      +

      Proin id nibh. Sed eu libero posuere sed, lectus. Phasellus dui gravida gravida feugiat mattis ac, felis.

      +

      Integer condimentum sit amet, tempor elit odio, a dolor non ante at sapien. Sed ac lectus. Nulla ligula quis eleifend mi, id leo velit pede cursus arcu id nulla ac lectus. Phasellus vestibulum. Nunc viverra enim quis diam.

      +
      +
      +

      + Praesent wisi accumsan sit amet nibh +

      +

      Donec ullamcorper, risus tortor, pretium porttitor. Morbi quam quis lectus non leo.

      +

      Integer faucibus scelerisque. Proin faucibus at, aliquet vulputate, odio at eros. Fusce gravida, erat vitae augue. Fusce urna fringilla gravida.

      +

      In hac habitasse platea dictumst. Praesent wisi accumsan sit amet nibh. Maecenas orci luctus a, lacinia quam sem, posuere commodo, odio condimentum tempor, pede semper risus. Suspendisse pede. In hac habitasse platea dictumst. Nam sed laoreet sit amet erat. Integer.

      +
      +
      +
      +
      +

      + CKEditor logo +

      +

      Quisque justo neque, mattis sed, fermentum ultrices posuere cubilia Curae, Vestibulum elit metus, quis placerat ut, lectus. Ut sagittis, nunc libero, egestas consequat lobortis velit rutrum ut, faucibus turpis. Fusce porttitor, nulla quis turpis. Nullam laoreet vel, consectetuer tellus suscipit ultricies, hendrerit wisi. Donec odio nec velit ac nunc sit amet, accumsan cursus aliquet. Vestibulum ante sit amet sagittis mi.

      +

      + Nullam laoreet vel consectetuer tellus suscipit +

      +
        +
      • Ut sagittis, nunc libero, egestas consequat lobortis velit rutrum ut, faucibus turpis.
      • +
      • Fusce porttitor, nulla quis turpis. Nullam laoreet vel, consectetuer tellus suscipit ultricies, hendrerit wisi.
      • +
      • Mauris eget tellus. Donec non felis. Nam eget dolor. Vestibulum enim. Donec.
      • +
      +

      Quisque justo neque, mattis sed, fermentum ultrices posuere cubilia Curae, Vestibulum elit metus, quis placerat ut, lectus.

      +

      Nullam laoreet vel, consectetuer tellus suscipit ultricies, hendrerit wisi. Ut sagittis, nunc libero, egestas consequat lobortis velit rutrum ut, faucibus turpis. Fusce porttitor, nulla quis turpis.

      +

      Donec odio nec velit ac nunc sit amet, accumsan cursus aliquet. Vestibulum ante sit amet sagittis mi. Sed in nonummy faucibus turpis. Mauris eget tellus. Donec non felis. Nam eget dolor. Vestibulum enim. Donec.

      +
      +
      +
      +
      + Tags of this article: +

      + inline, editing, floating, CKEditor +

      +
      +
      + + + diff --git a/operator/js/ckeditor/samples/inlinebycode.html b/operator/js/ckeditor/samples/inlinebycode.html new file mode 100644 index 0000000..4e47536 --- /dev/null +++ b/operator/js/ckeditor/samples/inlinebycode.html @@ -0,0 +1,121 @@ + + + + + + Inline Editing by Code — CKEditor Sample + + + + + +

      + CKEditor Samples » Inline Editing by Code +

      +
      +

      + This sample shows how to create an inline editor instance of CKEditor. It is created + with a JavaScript call using the following code: +

      +
      +// This property tells CKEditor to not activate every element with contenteditable=true element.
      +CKEDITOR.disableAutoInline = true;
      +
      +var editor = CKEDITOR.inline( document.getElementById( 'editable' ) );
      +
      +

      + Note that editable in the code above is the id + attribute of the <div> element to be converted into an inline instance. +

      +
      +
      +

      Saturn V carrying Apollo 11 Apollo 11

      + +

      Apollo 11 was the spaceflight that landed the first humans, Americans Neil Armstrong and Buzz Aldrin, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.

      + +

      Armstrong spent about three and a half two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. A third member of the mission, Michael Collins, piloted the command spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.

      + +

      Broadcasting and quotes

      + +

      Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:

      + +
      +

      One small step for [a] man, one giant leap for mankind.

      +
      + +

      Apollo 11 effectively ended the Space Race and fulfilled a national goal proposed in 1961 by the late U.S. President John F. Kennedy in a speech before the United States Congress:

      + +
      +

      [...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.

      +
      + +

      Technical details

      + + + + + + + + + + + + + + + + + + + + + + + +
      Mission crew
      PositionAstronaut
      CommanderNeil A. Armstrong
      Command Module PilotMichael Collins
      Lunar Module PilotEdwin "Buzz" E. Aldrin, Jr.
      + +

      Launched by a Saturn V rocket from Kennedy Space Center in Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of NASA's Apollo program. The Apollo spacecraft had three parts:

      + +
        +
      1. Command Module with a cabin for the three astronauts which was the only part which landed back on Earth
      2. +
      3. Service Module which supported the Command Module with propulsion, electrical power, oxygen and water
      4. +
      5. Lunar Module for landing on the Moon.
      6. +
      + +

      After being sent to the Moon by the Saturn V's upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the Sea of Tranquility. They stayed a total of about 21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the Pacific Ocean on July 24.

      + +
      +

      Source: Wikipedia.org

      +
      + + + + + diff --git a/operator/js/ckeditor/samples/inlinetextarea.html b/operator/js/ckeditor/samples/inlinetextarea.html new file mode 100644 index 0000000..fd27c0f --- /dev/null +++ b/operator/js/ckeditor/samples/inlinetextarea.html @@ -0,0 +1,110 @@ + + + + + + Replace Textarea with Inline Editor — CKEditor Sample + + + + + +

      + CKEditor Samples » Replace Textarea with Inline Editor +

      +
      +

      + You can also create an inline editor from a textarea + element. In this case the textarea will be replaced + by a div element with inline editing enabled. +

      +
      +// "article-body" is the name of a textarea element.
      +var editor = CKEDITOR.inline( 'article-body' );
      +
      +
      +
      +

      This is a sample form with some fields

      +

      + Title:
      +

      +

      + Article Body (Textarea converted to CKEditor):
      + +

      +

      + +

      +
      + + + + + diff --git a/operator/js/ckeditor/samples/jquery.html b/operator/js/ckeditor/samples/jquery.html new file mode 100644 index 0000000..380b828 --- /dev/null +++ b/operator/js/ckeditor/samples/jquery.html @@ -0,0 +1,100 @@ + + + + + + jQuery Adapter — CKEditor Sample + + + + + + + + +

      + CKEditor Samples » Create Editors with jQuery +

      +
      +
      +

      + This sample shows how to use the jQuery adapter. + Note that you have to include both CKEditor and jQuery scripts before including the adapter. +

      + +
      +<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
      +<script src="/ckeditor/ckeditor.js"></script>
      +<script src="/ckeditor/adapters/jquery.js"></script>
      +
      + +

      Then you can replace HTML elements with a CKEditor instance using the ckeditor() method.

      + +
      +$( document ).ready( function() {
      +	$( 'textarea#editor1' ).ckeditor();
      +} );
      +
      +
      + +

      Inline Example

      + +
      +

      Saturn V carrying Apollo 11Apollo 11 was the spaceflight that landed the first humans, Americans Neil Armstrong and Buzz Aldrin, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.

      +

      Armstrong spent about three and a half two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. A third member of the mission, Michael Collins, piloted the command spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth. +

      Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:

      +

      One small step for [a] man, one giant leap for mankind.

      Apollo 11 effectively ended the Space Race and fulfilled a national goal proposed in 1961 by the late U.S. President John F. Kennedy in a speech before the United States Congress:

      [...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.

      +
      + +
      + +

      Classic (iframe-based) Example

      + + + +

      + + + + + +

      +
      + + + diff --git a/operator/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js b/operator/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js new file mode 100644 index 0000000..3edd072 --- /dev/null +++ b/operator/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js @@ -0,0 +1,48 @@ +/** + * Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +CKEDITOR.dialog.add( 'myDialog', function( editor ) { + return { + title: 'My Dialog', + minWidth: 400, + minHeight: 200, + contents: [ + { + id: 'tab1', + label: 'First Tab', + title: 'First Tab', + elements: [ + { + id: 'input1', + type: 'text', + label: 'Text Field' + }, + { + id: 'select1', + type: 'select', + label: 'Select Field', + items: [ + [ 'option1', 'value1' ], + [ 'option2', 'value2' ] + ] + } + ] + }, + { + id: 'tab2', + label: 'Second Tab', + title: 'Second Tab', + elements: [ + { + id: 'button1', + type: 'button', + label: 'Button Field' + } + ] + } + ] + }; +} ); + diff --git a/operator/js/ckeditor/samples/plugins/dialog/dialog.html b/operator/js/ckeditor/samples/plugins/dialog/dialog.html new file mode 100644 index 0000000..df09d25 --- /dev/null +++ b/operator/js/ckeditor/samples/plugins/dialog/dialog.html @@ -0,0 +1,187 @@ + + + + + + Using API to Customize Dialog Windows — CKEditor Sample + + + + + + + + + +

      + CKEditor Samples » Using CKEditor Dialog API +

      +
      +

      + This sample shows how to use the + CKEditor Dialog API + to customize CKEditor dialog windows without changing the original editor code. + The following customizations are being done in the example below: +

      +

      + For details on how to create this setup check the source code of this sample page. +

      +
      +

      A custom dialog is added to the editors using the pluginsLoaded event, from an external dialog definition file:

      +
        +
      1. Creating a custom dialog window – "My Dialog" dialog window opened with the "My Dialog" toolbar button.
      2. +
      3. Creating a custom button – Add button to open the dialog with "My Dialog" toolbar button.
      4. +
      + + +

      The below editor modify the dialog definition of the above added dialog using the dialogDefinition event:

      +
        +
      1. Adding dialog tab – Add new tab "My Tab" to dialog window.
      2. +
      3. Removing a dialog window tab – Remove "Second Tab" page from the dialog window.
      4. +
      5. Adding dialog window fields – Add "My Custom Field" to the dialog window.
      6. +
      7. Removing dialog window field – Remove "Select Field" selection field from the dialog window.
      8. +
      9. Setting default values for dialog window fields – Set default value of "Text Field" text field.
      10. +
      11. Setup initial focus for dialog window – Put initial focus on "My Custom Field" text field.
      12. +
      + + + + + diff --git a/operator/js/ckeditor/samples/plugins/enterkey/enterkey.html b/operator/js/ckeditor/samples/plugins/enterkey/enterkey.html new file mode 100644 index 0000000..2d51501 --- /dev/null +++ b/operator/js/ckeditor/samples/plugins/enterkey/enterkey.html @@ -0,0 +1,103 @@ + + + + + + ENTER Key Configuration — CKEditor Sample + + + + + + + + +

      + CKEditor Samples » ENTER Key Configuration +

      +
      +

      + This sample shows how to configure the Enter and Shift+Enter keys + to perform actions specified in the + enterMode + and shiftEnterMode + parameters, respectively. + You can choose from the following options: +

      +
        +
      • ENTER_P – new <p> paragraphs are created;
      • +
      • ENTER_BR – lines are broken with <br> elements;
      • +
      • ENTER_DIV – new <div> blocks are created.
      • +
      +

      + The sample code below shows how to configure CKEditor to create a <div> block when Enter key is pressed. +

      +
      +CKEDITOR.replace( 'textarea_id', {
      +	enterMode: CKEDITOR.ENTER_DIV
      +});
      +

      + Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

      +
      +
      + When Enter is pressed:
      + +
      +
      + When Shift+Enter is pressed:
      + +
      +
      +
      +

      +
      + +

      +

      + +

      +
      + + + diff --git a/operator/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla b/operator/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla new file mode 100644 index 0000000..27e68cc Binary files /dev/null and b/operator/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla differ diff --git a/operator/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf b/operator/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf new file mode 100644 index 0000000..dbe17b6 Binary files /dev/null and b/operator/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf differ diff --git a/operator/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js b/operator/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js new file mode 100644 index 0000000..95fdf0a --- /dev/null +++ b/operator/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js @@ -0,0 +1,18 @@ +var swfobject=function(){function u(){if(!s){try{var a=d.getElementsByTagName("body")[0].appendChild(d.createElement("span"));a.parentNode.removeChild(a)}catch(b){return}s=!0;for(var a=x.length,c=0;cf){f++;setTimeout(arguments.callee,10);return}a.removeChild(b);c=null;D()})()}else D()}function D(){var a=p.length;if(0e.wk))t(c,!0),f&&(g.success=!0,g.ref=E(c),f(g));else if(p[b].expressInstall&&F()){g={};g.data=p[b].expressInstall;g.width=d.getAttribute("width")||"0";g.height=d.getAttribute("height")||"0";d.getAttribute("class")&&(g.styleclass=d.getAttribute("class"));d.getAttribute("align")&&(g.align=d.getAttribute("align"));for(var h={},d=d.getElementsByTagName("param"),j=d.length,k=0;ke.wk)}function G(a,b,c,f){A=!0;H=f||null;N={success:!1,id:c};var g=n(c);if(g){"OBJECT"==g.nodeName?(w=I(g),B=null):(w=g,B=c);a.id= +O;if(typeof a.width==i||!/%$/.test(a.width)&&310>parseInt(a.width,10))a.width="310";if(typeof a.height==i||!/%$/.test(a.height)&&137>parseInt(a.height,10))a.height="137";d.title=d.title.slice(0,47)+" - Flash Player Installation";f=e.ie&&e.win?"ActiveX":"PlugIn";f="MMredirectURL="+m.location.toString().replace(/&/g,"%26")+"&MMplayerType="+f+"&MMdoctitle="+d.title;b.flashvars=typeof b.flashvars!=i?b.flashvars+("&"+f):f;e.ie&&(e.win&&4!=g.readyState)&&(f=d.createElement("div"),c+="SWFObjectNew",f.setAttribute("id", +c),g.parentNode.insertBefore(f,g),g.style.display="none",function(){g.readyState==4?g.parentNode.removeChild(g):setTimeout(arguments.callee,10)}());J(a,b,c)}}function W(a){if(e.ie&&e.win&&4!=a.readyState){var b=d.createElement("div");a.parentNode.insertBefore(b,a);b.parentNode.replaceChild(I(a),b);a.style.display="none";(function(){4==a.readyState?a.parentNode.removeChild(a):setTimeout(arguments.callee,10)})()}else a.parentNode.replaceChild(I(a),a)}function I(a){var b=d.createElement("div");if(e.win&& +e.ie)b.innerHTML=a.innerHTML;else if(a=a.getElementsByTagName(r)[0])if(a=a.childNodes)for(var c=a.length,f=0;fe.wk)return f;if(g)if(typeof a.id==i&&(a.id=c),e.ie&&e.win){var o="",h;for(h in a)a[h]!=Object.prototype[h]&&("data"==h.toLowerCase()?b.movie=a[h]:"styleclass"==h.toLowerCase()?o+=' class="'+a[h]+'"':"classid"!=h.toLowerCase()&&(o+=" "+ +h+'="'+a[h]+'"'));h="";for(var j in b)b[j]!=Object.prototype[j]&&(h+='');g.outerHTML='"+h+"";C[C.length]=a.id;f=n(a.id)}else{j=d.createElement(r);j.setAttribute("type",y);for(var k in a)a[k]!=Object.prototype[k]&&("styleclass"==k.toLowerCase()?j.setAttribute("class",a[k]):"classid"!=k.toLowerCase()&&j.setAttribute(k,a[k]));for(o in b)b[o]!=Object.prototype[o]&&"movie"!=o.toLowerCase()&& +(a=j,h=o,k=b[o],c=d.createElement("param"),c.setAttribute("name",h),c.setAttribute("value",k),a.appendChild(c));g.parentNode.replaceChild(j,g);f=j}return f}function P(a){var b=n(a);b&&"OBJECT"==b.nodeName&&(e.ie&&e.win?(b.style.display="none",function(){if(4==b.readyState){var c=n(a);if(c){for(var f in c)"function"==typeof c[f]&&(c[f]=null);c.parentNode.removeChild(c)}}else setTimeout(arguments.callee,10)}()):b.parentNode.removeChild(b))}function n(a){var b=null;try{b=d.getElementById(a)}catch(c){}return b} +function U(a,b,c){a.attachEvent(b,c);v[v.length]=[a,b,c]}function z(a){var b=e.pv,a=a.split(".");a[0]=parseInt(a[0],10);a[1]=parseInt(a[1],10)||0;a[2]=parseInt(a[2],10)||0;return b[0]>a[0]||b[0]==a[0]&&b[1]>a[1]||b[0]==a[0]&&b[1]==a[1]&&b[2]>=a[2]?!0:!1}function Q(a,b,c,f){if(!e.ie||!e.mac){var g=d.getElementsByTagName("head")[0];if(g){c=c&&"string"==typeof c?c:"screen";f&&(K=l=null);if(!l||K!=c)f=d.createElement("style"),f.setAttribute("type","text/css"),f.setAttribute("media",c),l=g.appendChild(f), +e.ie&&(e.win&&typeof d.styleSheets!=i&&0\.;]/.exec(a)&&typeof encodeURIComponent!=i?encodeURIComponent(a):a}var i="undefined",r="object",y="application/x-shockwave-flash", +O="SWFObjectExprInst",m=window,d=document,q=navigator,T=!1,x=[function(){T?V():D()}],p=[],C=[],v=[],w,B,H,N,s=!1,A=!1,l,K,R=!0,e=function(){var a=typeof d.getElementById!=i&&typeof d.getElementsByTagName!=i&&typeof d.createElement!=i,b=q.userAgent.toLowerCase(),c=q.platform.toLowerCase(),f=c?/win/.test(c):/win/.test(b),c=c?/mac/.test(c):/mac/.test(b),b=/webkit/.test(b)?parseFloat(b.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):!1,g=!+"\v1",e=[0,0,0],h=null;if(typeof q.plugins!=i&&typeof q.plugins["Shockwave Flash"]== +r){if((h=q.plugins["Shockwave Flash"].description)&&!(typeof q.mimeTypes!=i&&q.mimeTypes[y]&&!q.mimeTypes[y].enabledPlugin))T=!0,g=!1,h=h.replace(/^.*\s+(\S+\s+\S+$)/,"$1"),e[0]=parseInt(h.replace(/^(.*)\..*$/,"$1"),10),e[1]=parseInt(h.replace(/^.*\.(.*)\s.*$/,"$1"),10),e[2]=/[a-zA-Z]/.test(h)?parseInt(h.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}else if(typeof m.ActiveXObject!=i)try{var j=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");if(j&&(h=j.GetVariable("$version")))g=!0,h=h.split(" ")[1].split(","), +e=[parseInt(h[0],10),parseInt(h[1],10),parseInt(h[2],10)]}catch(k){}return{w3:a,pv:e,wk:b,ie:g,win:f,mac:c}}();(function(){e.w3&&((typeof d.readyState!=i&&"complete"==d.readyState||typeof d.readyState==i&&(d.getElementsByTagName("body")[0]||d.body))&&u(),s||(typeof d.addEventListener!=i&&d.addEventListener("DOMContentLoaded",u,!1),e.ie&&e.win&&(d.attachEvent("onreadystatechange",function(){"complete"==d.readyState&&(d.detachEvent("onreadystatechange",arguments.callee),u())}),m==top&&function(){if(!s){try{d.documentElement.doScroll("left")}catch(a){setTimeout(arguments.callee, +0);return}u()}}()),e.wk&&function(){s||(/loaded|complete/.test(d.readyState)?u():setTimeout(arguments.callee,0))}(),M(u)))})();(function(){e.ie&&e.win&&window.attachEvent("onunload",function(){for(var a=v.length,b=0;be.wk)&&a&&b&&c&&d&&g?(t(b,!1),L(function(){c+="";d+="";var e={};if(k&&typeof k===r)for(var l in k)e[l]=k[l];e.data=a;e.width=c;e.height=d;l={};if(j&&typeof j===r)for(var p in j)l[p]=j[p];if(h&&typeof h===r)for(var q in h)l.flashvars=typeof l.flashvars!=i?l.flashvars+("&"+q+"="+h[q]):q+"="+h[q];if(z(g))p=J(e,l,b),e.id== +b&&t(b,!0),n.success=!0,n.ref=p;else{if(o&&F()){e.data=o;G(e,l,b,m);return}t(b,!0)}m&&m(n)})):m&&m(n)},switchOffAutoHideShow:function(){R=!1},ua:e,getFlashPlayerVersion:function(){return{major:e.pv[0],minor:e.pv[1],release:e.pv[2]}},hasFlashPlayerVersion:z,createSWF:function(a,b,c){if(e.w3)return J(a,b,c)},showExpressInstall:function(a,b,c,d){e.w3&&F()&&G(a,b,c,d)},removeSWF:function(a){e.w3&&P(a)},createCSS:function(a,b,c,d){e.w3&&Q(a,b,c,d)},addDomLoadEvent:L,addLoadEvent:M,getQueryParamValue:function(a){var b= +d.location.search||d.location.hash;if(b){/\?/.test(b)&&(b=b.split("?")[1]);if(null==a)return S(b);for(var b=b.split("&"),c=0;c + + + + + Output for Flash — CKEditor Sample + + + + + + + + + + + +

      + CKEditor Samples » Producing Flash Compliant HTML Output +

      +
      +

      + This sample shows how to configure CKEditor to output + HTML code that can be used with + + Adobe Flash. + The code will contain a subset of standard HTML elements like <b>, + <i>, and <p> as well as HTML attributes. +

      +

      + To add a CKEditor instance outputting Flash compliant HTML code, load the editor using a standard + JavaScript call, and define CKEditor features to use HTML elements and attributes. +

      +

      + For details on how to create this setup check the source code of this sample page. +

      +
      +

      + To see how it works, create some content in the editing area of CKEditor on the left + and send it to the Flash object on the right side of the page by using the + Send to Flash button. +

      + + + + + +
      + + +

      + +

      +
      +
      +
      + + + diff --git a/operator/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html b/operator/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html new file mode 100644 index 0000000..f25697d --- /dev/null +++ b/operator/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html @@ -0,0 +1,221 @@ + + + + + + HTML Compliant Output — CKEditor Sample + + + + + + + + + +

      + CKEditor Samples » Producing HTML Compliant Output +

      +
      +

      + This sample shows how to configure CKEditor to output valid + HTML 4.01 code. + Traditional HTML elements like <b>, + <i>, and <font> are used in place of + <strong>, <em>, and CSS styles. +

      +

      + To add a CKEditor instance outputting legacy HTML 4.01 code, load the editor using a standard + JavaScript call, and define CKEditor features to use the HTML compliant elements and attributes. +

      +

      + A snippet of the configuration code can be seen below; check the source of this page for + full definition: +

      +
      +CKEDITOR.replace( 'textarea_id', {
      +	coreStyles_bold: { element: 'b' },
      +	coreStyles_italic: { element: 'i' },
      +
      +	fontSize_style: {
      +		element: 'font',
      +		attributes: { 'size': '#(size)' }
      +	}
      +
      +	...
      +});
      +
      +
      +

      + + + +

      +

      + +

      +
      + + + diff --git a/operator/js/ckeditor/samples/plugins/magicline/magicline.html b/operator/js/ckeditor/samples/plugins/magicline/magicline.html new file mode 100644 index 0000000..800fbb3 --- /dev/null +++ b/operator/js/ckeditor/samples/plugins/magicline/magicline.html @@ -0,0 +1,206 @@ + + + + + + Using Magicline plugin — CKEditor Sample + + + + + + + +

      + CKEditor Samples » Using Magicline plugin +

      +
      +

      + This sample shows the advantages of Magicline plugin + which is to enhance the editing process. Thanks to this plugin, + a number of difficult focus spaces which are inaccessible due to + browser issues can now be focused. +

      +

      + Magicline plugin shows a red line with a handler + which, when clicked, inserts a paragraph and allows typing. To see this, + focus an editor and move your mouse above the focus space you want + to access. The plugin is enabled by default so no additional + configuration is necessary. +

      +
      +
      + +
      +

      + This editor uses a default Magicline setup. +

      +
      + + +
      +
      +
      + +
      +

      + This editor is using a blue line. +

      +
      +CKEDITOR.replace( 'editor2', {
      +	magicline_color: 'blue'
      +});
      +
      + + +
      + + + diff --git a/operator/js/ckeditor/samples/plugins/toolbar/toolbar.html b/operator/js/ckeditor/samples/plugins/toolbar/toolbar.html new file mode 100644 index 0000000..6cf2ddf --- /dev/null +++ b/operator/js/ckeditor/samples/plugins/toolbar/toolbar.html @@ -0,0 +1,232 @@ + + + + + + Toolbar Configuration — CKEditor Sample + + + + + + + +

      + CKEditor Samples » Toolbar Configuration +

      +
      +

      + This sample page demonstrates editor with loaded full toolbar (all registered buttons) and, if + current editor's configuration modifies default settings, also editor with modified toolbar. +

      + +

      Since CKEditor 4 there are two ways to configure toolbar buttons.

      + +

      By config.toolbar

      + +

      + You can explicitly define which buttons are displayed in which groups and in which order. + This is the more precise setting, but less flexible. If newly added plugin adds its + own button you'll have to add it manually to your config.toolbar setting as well. +

      + +

      To add a CKEditor instance with custom toolbar setting, insert the following JavaScript call to your code:

      + +
      +CKEDITOR.replace( 'textarea_id', {
      +	toolbar: [
      +		{ name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview', '-', 'Templates' ] },	// Defines toolbar group with name (used to create voice label) and items in 3 subgroups.
      +		[ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ],			// Defines toolbar group without name.
      +		'/',																					// Line break - next group will be placed in new line.
      +		{ name: 'basicstyles', items: [ 'Bold', 'Italic' ] }
      +	]
      +});
      + +

      By config.toolbarGroups

      + +

      + You can define which groups of buttons (like e.g. basicstyles, clipboard + and forms) are displayed and in which order. Registered buttons are associated + with toolbar groups by toolbar property in their definition. + This setting's advantage is that you don't have to modify toolbar configuration + when adding/removing plugins which register their own buttons. +

      + +

      To add a CKEditor instance with custom toolbar groups setting, insert the following JavaScript call to your code:

      + +
      +CKEDITOR.replace( 'textarea_id', {
      +	toolbarGroups: [
      +		{ name: 'document',	   groups: [ 'mode', 'document' ] },			// Displays document group with its two subgroups.
      + 		{ name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },			// Group's name will be used to create voice label.
      + 		'/',																// Line break - next group will be placed in new line.
      + 		{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
      + 		{ name: 'links' }
      +	]
      +
      +	// NOTE: Remember to leave 'toolbar' property with the default value (null).
      +});
      +
      + + + +
      +

      Full toolbar configuration

      +

      Below you can see editor with full toolbar, generated automatically by the editor.

      +

      + Note: To create editor instance with full toolbar you don't have to set anything. + Just leave toolbar and toolbarGroups with the default, null values. +

      + +
      
      +	
      + + + + + + diff --git a/operator/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html b/operator/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html new file mode 100644 index 0000000..174a25f --- /dev/null +++ b/operator/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html @@ -0,0 +1,77 @@ + + + + + + Full Page Editing — CKEditor Sample + + + + + + + + + +

      + CKEditor Samples » Full Page Editing +

      +
      +

      + This sample shows how to configure CKEditor to edit entire HTML pages, from the + <html> tag to the </html> tag. +

      +

      + The CKEditor instance below is inserted with a JavaScript call using the following code: +

      +
      +CKEDITOR.replace( 'textarea_id', {
      +	fullPage: true,
      +	allowedContent: true
      +});
      +
      +

      + Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

      +

      + The allowedContent in the code above is set to true to disable content filtering. + Setting this option is not obligatory, but in full page mode there is a strong chance that one may want be able to freely enter any HTML content in source mode without any limitations. +

      +
      +
      + + + +

      + +

      +
      + + + diff --git a/operator/js/ckeditor/samples/readonly.html b/operator/js/ckeditor/samples/readonly.html new file mode 100644 index 0000000..58f9706 --- /dev/null +++ b/operator/js/ckeditor/samples/readonly.html @@ -0,0 +1,73 @@ + + + + + + Using the CKEditor Read-Only API — CKEditor Sample + + + + + +

      + CKEditor Samples » Using the CKEditor Read-Only API +

      +
      +

      + This sample shows how to use the + setReadOnly + API to put editor into the read-only state that makes it impossible for users to change the editor contents. +

      +

      + For details on how to create this setup check the source code of this sample page. +

      +
      +
      +

      + +

      +

      + + +

      +
      + + + diff --git a/operator/js/ckeditor/samples/replacebyclass.html b/operator/js/ckeditor/samples/replacebyclass.html new file mode 100644 index 0000000..6fc3e6f --- /dev/null +++ b/operator/js/ckeditor/samples/replacebyclass.html @@ -0,0 +1,57 @@ + + + + + + Replace Textareas by Class Name — CKEditor Sample + + + + +

      + CKEditor Samples » Replace Textarea Elements by Class Name +

      +
      +

      + This sample shows how to automatically replace all <textarea> elements + of a given class with a CKEditor instance. +

      +

      + To replace a <textarea> element, simply assign it the ckeditor + class, as in the code below: +

      +
      +<textarea class="ckeditor" name="editor1"></textarea>
      +
      +

      + Note that other <textarea> attributes (like id or name) need to be adjusted to your document. +

      +
      +
      +

      + + +

      +

      + +

      +
      + + + diff --git a/operator/js/ckeditor/samples/replacebycode.html b/operator/js/ckeditor/samples/replacebycode.html new file mode 100644 index 0000000..e5a4c5b --- /dev/null +++ b/operator/js/ckeditor/samples/replacebycode.html @@ -0,0 +1,56 @@ + + + + + + Replace Textarea by Code — CKEditor Sample + + + + +

      + CKEditor Samples » Replace Textarea Elements Using JavaScript Code +

      +
      +
      +

      + This editor is using an <iframe> element-based editing area, provided by the Wysiwygarea plugin. +

      +
      +CKEDITOR.replace( 'textarea_id' )
      +
      +
      + + +

      + +

      +
      + + + diff --git a/operator/js/ckeditor/samples/sample.css b/operator/js/ckeditor/samples/sample.css new file mode 100644 index 0000000..8fd71aa --- /dev/null +++ b/operator/js/ckeditor/samples/sample.css @@ -0,0 +1,365 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ + +html, body, h1, h2, h3, h4, h5, h6, div, span, blockquote, p, address, form, fieldset, img, ul, ol, dl, dt, dd, li, hr, table, td, th, strong, em, sup, sub, dfn, ins, del, q, cite, var, samp, code, kbd, tt, pre +{ + line-height: 1.5; +} + +body +{ + padding: 10px 30px; +} + +input, textarea, select, option, optgroup, button, td, th +{ + font-size: 100%; +} + +pre +{ + -moz-tab-size: 4; + -o-tab-size: 4; + -webkit-tab-size: 4; + tab-size: 4; +} + +pre, code, kbd, samp, tt +{ + font-family: monospace,monospace; + font-size: 1em; +} + +body { + width: 960px; + margin: 0 auto; +} + +code +{ + background: #f3f3f3; + border: 1px solid #ddd; + padding: 1px 4px; + + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; +} + +abbr +{ + border-bottom: 1px dotted #555; + cursor: pointer; +} + +.new, .beta +{ + text-transform: uppercase; + font-size: 10px; + font-weight: bold; + padding: 1px 4px; + margin: 0 0 0 5px; + color: #fff; + float: right; + + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; +} + +.new +{ + background: #FF7E00; + border: 1px solid #DA8028; + text-shadow: 0 1px 0 #C97626; + + -moz-box-shadow: 0 2px 3px 0 #FFA54E inset; + -webkit-box-shadow: 0 2px 3px 0 #FFA54E inset; + box-shadow: 0 2px 3px 0 #FFA54E inset; +} + +.beta +{ + background: #18C0DF; + border: 1px solid #19AAD8; + text-shadow: 0 1px 0 #048CAD; + font-style: italic; + + -moz-box-shadow: 0 2px 3px 0 #50D4FD inset; + -webkit-box-shadow: 0 2px 3px 0 #50D4FD inset; + box-shadow: 0 2px 3px 0 #50D4FD inset; +} + +h1.samples +{ + color: #0782C1; + font-size: 200%; + font-weight: normal; + margin: 0; + padding: 0; +} + +h1.samples a +{ + color: #0782C1; + text-decoration: none; + border-bottom: 1px dotted #0782C1; +} + +.samples a:hover +{ + border-bottom: 1px dotted #0782C1; +} + +h2.samples +{ + color: #000000; + font-size: 130%; + margin: 15px 0 0 0; + padding: 0; +} + +p, blockquote, address, form, pre, dl, h1.samples, h2.samples +{ + margin-bottom: 15px; +} + +ul.samples +{ + margin-bottom: 15px; +} + +.clear +{ + clear: both; +} + +fieldset +{ + margin: 0; + padding: 10px; +} + +body, input, textarea +{ + color: #333333; + font-family: Arial, Helvetica, sans-serif; +} + +body +{ + font-size: 75%; +} + +a.samples +{ + color: #189DE1; + text-decoration: none; +} + +form +{ + margin: 0; + padding: 0; +} + +pre.samples +{ + background-color: #F7F7F7; + border: 1px solid #D7D7D7; + overflow: auto; + padding: 0.25em; + white-space: pre-wrap; /* CSS 2.1 */ + word-wrap: break-word; /* IE7 */ +} + +#footer +{ + clear: both; + padding-top: 10px; +} + +#footer hr +{ + margin: 10px 0 15px 0; + height: 1px; + border: solid 1px gray; + border-bottom: none; +} + +#footer p +{ + margin: 0 10px 10px 10px; + float: left; +} + +#footer #copy +{ + float: right; +} + +#outputSample +{ + width: 100%; + table-layout: fixed; +} + +#outputSample thead th +{ + color: #dddddd; + background-color: #999999; + padding: 4px; + white-space: nowrap; +} + +#outputSample tbody th +{ + vertical-align: top; + text-align: left; +} + +#outputSample pre +{ + margin: 0; + padding: 0; +} + +.description +{ + border: 1px dotted #B7B7B7; + margin-bottom: 10px; + padding: 10px 10px 0; + overflow: hidden; +} + +label +{ + display: block; + margin-bottom: 6px; +} + +/** + * CKEditor editables are automatically set with the "cke_editable" class + * plus cke_editable_(inline|themed) depending on the editor type. + */ + +/* Style a bit the inline editables. */ +.cke_editable.cke_editable_inline +{ + cursor: pointer; +} + +/* Once an editable element gets focused, the "cke_focus" class is + added to it, so we can style it differently. */ +.cke_editable.cke_editable_inline.cke_focus +{ + box-shadow: inset 0px 0px 20px 3px #ddd, inset 0 0 1px #000; + outline: none; + background: #eee; + cursor: text; +} + +/* Avoid pre-formatted overflows inline editable. */ +.cke_editable_inline pre +{ + white-space: pre-wrap; + word-wrap: break-word; +} + +/** + * Samples index styles. + */ + +.twoColumns, +.twoColumnsLeft, +.twoColumnsRight +{ + overflow: hidden; +} + +.twoColumnsLeft, +.twoColumnsRight +{ + width: 45%; +} + +.twoColumnsLeft +{ + float: left; +} + +.twoColumnsRight +{ + float: right; +} + +dl.samples +{ + padding: 0 0 0 40px; +} +dl.samples > dt +{ + display: list-item; + list-style-type: disc; + list-style-position: outside; + margin: 0 0 3px; +} +dl.samples > dd +{ + margin: 0 0 3px; +} +.warning +{ + color: #ff0000; + background-color: #FFCCBA; + border: 2px dotted #ff0000; + padding: 15px 10px; + margin: 10px 0; +} + +/* Used on inline samples */ + +blockquote +{ + font-style: italic; + font-family: Georgia, Times, "Times New Roman", serif; + padding: 2px 0; + border-style: solid; + border-color: #ccc; + border-width: 0; +} + +.cke_contents_ltr blockquote +{ + padding-left: 20px; + padding-right: 8px; + border-left-width: 5px; +} + +.cke_contents_rtl blockquote +{ + padding-left: 8px; + padding-right: 20px; + border-right-width: 5px; +} + +img.right { + border: 1px solid #ccc; + float: right; + margin-left: 15px; + padding: 5px; +} + +img.left { + border: 1px solid #ccc; + float: left; + margin-right: 15px; + padding: 5px; +} + +.marker +{ + background-color: Yellow; +} diff --git a/operator/js/ckeditor/samples/sample.js b/operator/js/ckeditor/samples/sample.js new file mode 100644 index 0000000..b25482d --- /dev/null +++ b/operator/js/ckeditor/samples/sample.js @@ -0,0 +1,50 @@ +/** + * Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +// Tool scripts for the sample pages. +// This file can be ignored and is not required to make use of CKEditor. + +( function() { + CKEDITOR.on( 'instanceReady', function( ev ) { + // Check for sample compliance. + var editor = ev.editor, + meta = CKEDITOR.document.$.getElementsByName( 'ckeditor-sample-required-plugins' ), + requires = meta.length ? CKEDITOR.dom.element.get( meta[ 0 ] ).getAttribute( 'content' ).split( ',' ) : [], + missing = [], + i; + + if ( requires.length ) { + for ( i = 0; i < requires.length; i++ ) { + if ( !editor.plugins[ requires[ i ] ] ) + missing.push( '' + requires[ i ] + '' ); + } + + if ( missing.length ) { + var warn = CKEDITOR.dom.element.createFromHtml( + '
      ' + + 'To fully experience this demo, the ' + missing.join( ', ' ) + ' plugin' + ( missing.length > 1 ? 's are' : ' is' ) + ' required.' + + '
      ' + ); + warn.insertBefore( editor.container ); + } + } + + // Set icons. + var doc = new CKEDITOR.dom.document( document ), + icons = doc.find( '.button_icon' ); + + for ( i = 0; i < icons.count(); i++ ) { + var icon = icons.getItem( i ), + name = icon.getAttribute( 'data-icon' ), + style = CKEDITOR.skin.getIconStyle( name, ( CKEDITOR.lang.dir == 'rtl' ) ); + + icon.addClass( 'cke_button_icon' ); + icon.addClass( 'cke_button__' + name + '_icon' ); + icon.setAttribute( 'style', style ); + icon.setStyle( 'float', 'none' ); + + } + } ); +} )(); diff --git a/operator/js/ckeditor/samples/sample_posteddata.php b/operator/js/ckeditor/samples/sample_posteddata.php new file mode 100644 index 0000000..e4869b7 --- /dev/null +++ b/operator/js/ckeditor/samples/sample_posteddata.php @@ -0,0 +1,16 @@ +
      +
      +-------------------------------------------------------------------------------------------
      +  CKEditor - Posted Data
      +
      +  We are sorry, but your Web server does not support the PHP language used in this script.
      +
      +  Please note that CKEditor can be used with any other server-side language than just PHP.
      +  To save the content created with CKEditor you need to read the POST data on the server
      +  side and write it to a file or the database.
      +
      +  Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
      +  For licensing, see LICENSE.md or http://ckeditor.com/license
      +-------------------------------------------------------------------------------------------
      +
      +
      */ include "assets/posteddata.php"; ?> diff --git a/operator/js/ckeditor/samples/tabindex.html b/operator/js/ckeditor/samples/tabindex.html new file mode 100644 index 0000000..8952166 --- /dev/null +++ b/operator/js/ckeditor/samples/tabindex.html @@ -0,0 +1,75 @@ + + + + + + TAB Key-Based Navigation — CKEditor Sample + + + + + + +

      + CKEditor Samples » TAB Key-Based Navigation +

      +
      +

      + This sample shows how tab key navigation among editor instances is + affected by the tabIndex attribute from + the original page element. Use TAB key to move between the editors. +

      +
      +

      + +

      +
      +

      + +

      +

      + +

      + + + diff --git a/operator/js/ckeditor/samples/uicolor.html b/operator/js/ckeditor/samples/uicolor.html new file mode 100644 index 0000000..ce4b2a2 --- /dev/null +++ b/operator/js/ckeditor/samples/uicolor.html @@ -0,0 +1,69 @@ + + + + + + UI Color Picker — CKEditor Sample + + + + +

      + CKEditor Samples » UI Color +

      +
      +

      + This sample shows how to automatically replace <textarea> elements + with a CKEditor instance with an option to change the color of its user interface.
      + Note:The UI skin color feature depends on the CKEditor skin + compatibility. The Moono and Kama skins are examples of skins that work with it. +

      +
      +
      +

      + This editor instance has a UI color value defined in configuration to change the skin color, + To specify the color of the user interface, set the uiColor property: +

      +
      +CKEDITOR.replace( 'textarea_id', {
      +	uiColor: '#14B8C4'
      +});
      +

      + Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

      +

      + + +

      +

      + +

      +
      + + + diff --git a/operator/js/ckeditor/samples/uilanguages.html b/operator/js/ckeditor/samples/uilanguages.html new file mode 100644 index 0000000..66acca4 --- /dev/null +++ b/operator/js/ckeditor/samples/uilanguages.html @@ -0,0 +1,119 @@ + + + + + + User Interface Globalization — CKEditor Sample + + + + + +

      + CKEditor Samples » User Interface Languages +

      +
      +

      + This sample shows how to automatically replace <textarea> elements + with a CKEditor instance with an option to change the language of its user interface. +

      +

      + It pulls the language list from CKEditor _languages.js file that contains the list of supported languages and creates + a drop-down list that lets the user change the UI language. +

      +

      + By default, CKEditor automatically localizes the editor to the language of the user. + The UI language can be controlled with two configuration options: + language and + + defaultLanguage. The defaultLanguage setting specifies the + default CKEditor language to be used when a localization suitable for user's settings is not available. +

      +

      + To specify the user interface language that will be used no matter what language is + specified in user's browser or operating system, set the language property: +

      +
      +CKEDITOR.replace( 'textarea_id', {
      +	// Load the German interface.
      +	language: 'de'
      +});
      +

      + Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

      +
      +
      +

      + Available languages ( languages!):
      + +
      + + (You may see strange characters if your system does not support the selected language) + +

      +

      + + +

      +
      + + + diff --git a/operator/js/ckeditor/samples/xhtmlstyle.html b/operator/js/ckeditor/samples/xhtmlstyle.html new file mode 100644 index 0000000..f219d11 --- /dev/null +++ b/operator/js/ckeditor/samples/xhtmlstyle.html @@ -0,0 +1,231 @@ + + + + + + XHTML Compliant Output — CKEditor Sample + + + + + + +

      + CKEditor Samples » Producing XHTML Compliant Output +

      +
      +

      + This sample shows how to configure CKEditor to output valid + XHTML 1.1 code. + Deprecated elements (<font>, <u>) or attributes + (size, face) will be replaced with XHTML compliant code. +

      +

      + To add a CKEditor instance outputting valid XHTML code, load the editor using a standard + JavaScript call and define CKEditor features to use the XHTML compliant elements and styles. +

      +

      + A snippet of the configuration code can be seen below; check the source of this page for + full definition: +

      +
      +CKEDITOR.replace( 'textarea_id', {
      +	contentsCss: 'assets/outputxhtml.css',
      +
      +	coreStyles_bold: {
      +		element: 'span',
      +		attributes: { 'class': 'Bold' }
      +	},
      +	coreStyles_italic: {
      +		element: 'span',
      +		attributes: { 'class': 'Italic' }
      +	},
      +
      +	...
      +});
      +
      +
      +

      + + + +

      +

      + +

      +
      + + + diff --git a/operator/js/ckeditor/skins/moono/dialog.css b/operator/js/ckeditor/skins/moono/dialog.css new file mode 100644 index 0000000..1504938 --- /dev/null +++ b/operator/js/ckeditor/skins/moono/dialog.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/dialog_ie.css b/operator/js/ckeditor/skins/moono/dialog_ie.css new file mode 100644 index 0000000..93cf7ae --- /dev/null +++ b/operator/js/ckeditor/skins/moono/dialog_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/dialog_ie7.css b/operator/js/ckeditor/skins/moono/dialog_ie7.css new file mode 100644 index 0000000..4b98ae5 --- /dev/null +++ b/operator/js/ckeditor/skins/moono/dialog_ie7.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_title{zoom:1}.cke_dialog_footer{border-top:1px solid #bfbfbf}.cke_dialog_footer_buttons{position:static}.cke_dialog_footer_buttons a.cke_dialog_ui_button{vertical-align:top}.cke_dialog .cke_resizer_ltr{padding-left:4px}.cke_dialog .cke_resizer_rtl{padding-right:4px}.cke_dialog_ui_input_text,.cke_dialog_ui_input_password,.cke_dialog_ui_input_textarea,.cke_dialog_ui_input_select{padding:0!important}.cke_dialog_ui_checkbox_input,.cke_dialog_ui_ratio_input,.cke_btn_reset,.cke_btn_locked,.cke_btn_unlocked{border:1px solid transparent!important} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/dialog_ie8.css b/operator/js/ckeditor/skins/moono/dialog_ie8.css new file mode 100644 index 0000000..4f2edca --- /dev/null +++ b/operator/js/ckeditor/skins/moono/dialog_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{display:block} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/dialog_iequirks.css b/operator/js/ckeditor/skins/moono/dialog_iequirks.css new file mode 100644 index 0000000..bb36a95 --- /dev/null +++ b/operator/js/ckeditor/skins/moono/dialog_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_footer{filter:""} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/editor.css b/operator/js/ckeditor/skins/moono/editor.css new file mode 100644 index 0000000..5581dd6 --- /dev/null +++ b/operator/js/ckeditor/skins/moono/editor.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/editor_gecko.css b/operator/js/ckeditor/skins/moono/editor_gecko.css new file mode 100644 index 0000000..2cd4f42 --- /dev/null +++ b/operator/js/ckeditor/skins/moono/editor_gecko.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_bottom{padding-bottom:3px}.cke_combo_text{margin-bottom:-1px;margin-top:1px}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/editor_ie.css b/operator/js/ckeditor/skins/moono/editor_ie.css new file mode 100644 index 0000000..583f5fe --- /dev/null +++ b/operator/js/ckeditor/skins/moono/editor_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/editor_ie7.css b/operator/js/ckeditor/skins/moono/editor_ie7.css new file mode 100644 index 0000000..0937e49 --- /dev/null +++ b/operator/js/ckeditor/skins/moono/editor_ie7.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_toolbox{display:inline-block;padding-bottom:5px;height:100%}.cke_rtl .cke_toolbox{padding-bottom:0}.cke_toolbar{margin-bottom:5px}.cke_rtl .cke_toolbar{margin-bottom:0}.cke_toolgroup{height:26px}.cke_toolgroup,.cke_combo{position:relative}a.cke_button{float:none;vertical-align:top}.cke_toolbar_separator{display:inline-block;float:none;vertical-align:top;background-color:#c0c0c0}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_rtl .cke_button_arrow{padding-top:8px;margin-right:2px}.cke_rtl .cke_combo_inlinelabel{display:table-cell;vertical-align:middle}.cke_menubutton{display:block;height:24px}.cke_menubutton_inner{display:block;position:relative}.cke_menubutton_icon{height:16px;width:16px}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:inline-block}.cke_menubutton_label{width:auto;vertical-align:top;line-height:24px;height:24px;margin:0 10px 0 0}.cke_menuarrow{width:5px;height:6px;padding:0;position:absolute;right:8px;top:10px;background-position:0 0}.cke_rtl .cke_menubutton_icon{position:absolute;right:0;top:0}.cke_rtl .cke_menubutton_label{float:right;clear:both;margin:0 24px 0 10px}.cke_hc .cke_rtl .cke_menubutton_label{margin-right:0}.cke_rtl .cke_menuarrow{left:8px;right:auto;background-position:0 -24px}.cke_hc .cke_menuarrow{top:5px;padding:0 5px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{position:relative}.cke_wysiwyg_div{padding-top:0!important;padding-bottom:0!important}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/editor_ie8.css b/operator/js/ckeditor/skins/moono/editor_ie8.css new file mode 100644 index 0000000..922803f --- /dev/null +++ b/operator/js/ckeditor/skins/moono/editor_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/editor_iequirks.css b/operator/js/ckeditor/skins/moono/editor_iequirks.css new file mode 100644 index 0000000..b78b087 --- /dev/null +++ b/operator/js/ckeditor/skins/moono/editor_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_top,.cke_contents,.cke_bottom{width:100%}.cke_button_arrow{font-size:0}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_rtl .cke_button_icon{float:none}.cke_resizer{width:10px}.cke_source{white-space:normal}.cke_bottom{position:static}.cke_colorbox{font-size:0}.cke_button__about_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_button__maximize_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/operator/js/ckeditor/skins/moono/icons.png b/operator/js/ckeditor/skins/moono/icons.png new file mode 100644 index 0000000..ee02970 Binary files /dev/null and b/operator/js/ckeditor/skins/moono/icons.png differ diff --git a/operator/js/ckeditor/skins/moono/icons_hidpi.png b/operator/js/ckeditor/skins/moono/icons_hidpi.png new file mode 100644 index 0000000..0466c2b Binary files /dev/null and b/operator/js/ckeditor/skins/moono/icons_hidpi.png differ diff --git a/operator/js/ckeditor/skins/moono/images/arrow.png b/operator/js/ckeditor/skins/moono/images/arrow.png new file mode 100644 index 0000000..d72b5f3 Binary files /dev/null and b/operator/js/ckeditor/skins/moono/images/arrow.png differ diff --git a/operator/js/ckeditor/skins/moono/images/close.png b/operator/js/ckeditor/skins/moono/images/close.png new file mode 100644 index 0000000..6a04ab5 Binary files /dev/null and b/operator/js/ckeditor/skins/moono/images/close.png differ diff --git a/operator/js/ckeditor/skins/moono/images/hidpi/close.png b/operator/js/ckeditor/skins/moono/images/hidpi/close.png new file mode 100644 index 0000000..e406c2c Binary files /dev/null and b/operator/js/ckeditor/skins/moono/images/hidpi/close.png differ diff --git a/operator/js/ckeditor/skins/moono/images/hidpi/lock-open.png b/operator/js/ckeditor/skins/moono/images/hidpi/lock-open.png new file mode 100644 index 0000000..edbd12f Binary files /dev/null and b/operator/js/ckeditor/skins/moono/images/hidpi/lock-open.png differ diff --git a/operator/js/ckeditor/skins/moono/images/hidpi/lock.png b/operator/js/ckeditor/skins/moono/images/hidpi/lock.png new file mode 100644 index 0000000..1b87bbb Binary files /dev/null and b/operator/js/ckeditor/skins/moono/images/hidpi/lock.png differ diff --git a/operator/js/ckeditor/skins/moono/images/hidpi/refresh.png b/operator/js/ckeditor/skins/moono/images/hidpi/refresh.png new file mode 100644 index 0000000..c6c2b86 Binary files /dev/null and b/operator/js/ckeditor/skins/moono/images/hidpi/refresh.png differ diff --git a/operator/js/ckeditor/skins/moono/images/lock-open.png b/operator/js/ckeditor/skins/moono/images/lock-open.png new file mode 100644 index 0000000..0476987 Binary files /dev/null and b/operator/js/ckeditor/skins/moono/images/lock-open.png differ diff --git a/operator/js/ckeditor/skins/moono/images/lock.png b/operator/js/ckeditor/skins/moono/images/lock.png new file mode 100644 index 0000000..c5a1440 Binary files /dev/null and b/operator/js/ckeditor/skins/moono/images/lock.png differ diff --git a/operator/js/ckeditor/skins/moono/images/refresh.png b/operator/js/ckeditor/skins/moono/images/refresh.png new file mode 100644 index 0000000..1ff63c3 Binary files /dev/null and b/operator/js/ckeditor/skins/moono/images/refresh.png differ diff --git a/operator/js/ckeditor/skins/moono/readme.md b/operator/js/ckeditor/skins/moono/readme.md new file mode 100644 index 0000000..d086fe9 --- /dev/null +++ b/operator/js/ckeditor/skins/moono/readme.md @@ -0,0 +1,51 @@ +"Moono" Skin +==================== + +This skin has been chosen for the **default skin** of CKEditor 4.x, elected from the CKEditor +[skin contest](http://ckeditor.com/blog/new_ckeditor_4_skin) and further shaped by +the CKEditor team. "Moono" is maintained by the core developers. + +For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK) +documentation. + +Features +------------------- +"Moono" is a monochromatic skin, which offers a modern look coupled with gradients and transparency. +It comes with the following features: + +- Chameleon feature with brightness, +- high-contrast compatibility, +- graphics source provided in SVG. + +Directory Structure +------------------- + +CSS parts: +- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance, +- **mainui.css**: the file contains styles of entire editor outline structures, +- **toolbar.css**: the file contains styles of the editor toolbar space (top), +- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar, +- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded +until the first panel open up, +- **elementspath.css**: the file contains styles of the editor elements path bar (bottom), +- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down, +it's not loaded until the first menu open up, +- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open, +- **reset.css**: the file defines the basis of style resets among all editor UI spaces, +- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference, +- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks. + +Other parts: +- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature, +- **icons/**: contains all skin defined icons, +- **images/**: contains a fill general used images, +- **dev/**: contains SVG source of the skin icons. + +License +------- + +Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + +Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). + +See LICENSE.md for more information. diff --git a/operator/js/ckeditor/styles.js b/operator/js/ckeditor/styles.js new file mode 100644 index 0000000..18e4316 --- /dev/null +++ b/operator/js/ckeditor/styles.js @@ -0,0 +1,111 @@ +/** + * Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +// This file contains style definitions that can be used by CKEditor plugins. +// +// The most common use for it is the "stylescombo" plugin, which shows a combo +// in the editor toolbar, containing all styles. Other plugins instead, like +// the div plugin, use a subset of the styles on their feature. +// +// If you don't have plugins that depend on this file, you can simply ignore it. +// Otherwise it is strongly recommended to customize this file to match your +// website requirements and design properly. + +CKEDITOR.stylesSet.add( 'default', [ + /* Block Styles */ + + // These styles are already available in the "Format" combo ("format" plugin), + // so they are not needed here by default. You may enable them to avoid + // placing the "Format" combo in the toolbar, maintaining the same features. + /* + { name: 'Paragraph', element: 'p' }, + { name: 'Heading 1', element: 'h1' }, + { name: 'Heading 2', element: 'h2' }, + { name: 'Heading 3', element: 'h3' }, + { name: 'Heading 4', element: 'h4' }, + { name: 'Heading 5', element: 'h5' }, + { name: 'Heading 6', element: 'h6' }, + { name: 'Preformatted Text',element: 'pre' }, + { name: 'Address', element: 'address' }, + */ + + { name: 'Italic Title', element: 'h2', styles: { 'font-style': 'italic' } }, + { name: 'Subtitle', element: 'h3', styles: { 'color': '#aaa', 'font-style': 'italic' } }, + { + name: 'Special Container', + element: 'div', + styles: { + padding: '5px 10px', + background: '#eee', + border: '1px solid #ccc' + } + }, + + /* Inline Styles */ + + // These are core styles available as toolbar buttons. You may opt enabling + // some of them in the Styles combo, removing them from the toolbar. + // (This requires the "stylescombo" plugin) + /* + { name: 'Strong', element: 'strong', overrides: 'b' }, + { name: 'Emphasis', element: 'em' , overrides: 'i' }, + { name: 'Underline', element: 'u' }, + { name: 'Strikethrough', element: 'strike' }, + { name: 'Subscript', element: 'sub' }, + { name: 'Superscript', element: 'sup' }, + */ + + { name: 'Marker', element: 'span', attributes: { 'class': 'marker' } }, + + { name: 'Big', element: 'big' }, + { name: 'Small', element: 'small' }, + { name: 'Typewriter', element: 'tt' }, + + { name: 'Computer Code', element: 'code' }, + { name: 'Keyboard Phrase', element: 'kbd' }, + { name: 'Sample Text', element: 'samp' }, + { name: 'Variable', element: 'var' }, + + { name: 'Deleted Text', element: 'del' }, + { name: 'Inserted Text', element: 'ins' }, + + { name: 'Cited Work', element: 'cite' }, + { name: 'Inline Quotation', element: 'q' }, + + { name: 'Language: RTL', element: 'span', attributes: { 'dir': 'rtl' } }, + { name: 'Language: LTR', element: 'span', attributes: { 'dir': 'ltr' } }, + + /* Object Styles */ + + { + name: 'Styled image (left)', + element: 'img', + attributes: { 'class': 'left' } + }, + + { + name: 'Styled image (right)', + element: 'img', + attributes: { 'class': 'right' } + }, + + { + name: 'Compact table', + element: 'table', + attributes: { + cellpadding: '5', + cellspacing: '0', + border: '1', + bordercolor: '#ccc' + }, + styles: { + 'border-collapse': 'collapse' + } + }, + + { name: 'Borderless Table', element: 'table', styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } }, + { name: 'Square Bulleted List', element: 'ul', styles: { 'list-style-type': 'square' } } +] ); + diff --git a/operator/js/exchangerix_scripts.js b/operator/js/exchangerix_scripts.js new file mode 100644 index 0000000..a2d1404 --- /dev/null +++ b/operator/js/exchangerix_scripts.js @@ -0,0 +1,207 @@ + +/* Copyright (c) Ex changerix . com */ +/* Exchangerix SITE SOFTWARE */ + +//--------(check all checkboxes)--------------------------------------------------------------------------------------- + + var checked = false; + function checkAll() + { + var myform = document.getElementById("form2"); + + if (checked == false) { checked = true }else{ checked = false } + for (var i=0; i",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:this,document); \ No newline at end of file diff --git a/operator/js/index.htm b/operator/js/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/operator/js/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/operator/js/jquery.min.js b/operator/js/jquery.min.js new file mode 100644 index 0000000..4c5be4c --- /dev/null +++ b/operator/js/jquery.min.js @@ -0,0 +1,4 @@ +/*! jQuery v3.1.1 | (c) jQuery Foundation | jquery.org/license */ +!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.1.1",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null==a?f.call(this):a<0?this[a+this.length]:this[a]},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0&&("form"in a||"label"in a)},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"form"in b?b.parentNode&&b.disabled===!1?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&ea(b)===a:b.disabled===a:"label"in b&&b.disabled===a}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}}):(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c,d,e,f=b.getElementById(a);if(f){if(c=f.getAttributeNode("id"),c&&c.value===a)return[f];e=b.getElementsByName(a),d=0;while(f=e[d++])if(c=f.getAttributeNode("id"),c&&c.value===a)return[f]}return[]}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,c,e){var f,i,j,k,l,m="function"==typeof a&&a,n=!e&&g(a=m.selector||a);if(c=c||[],1===n.length){if(i=n[0]=n[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&9===b.nodeType&&p&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(_,aa),b)||[])[0],!b)return c;m&&(b=b.parentNode),a=a.slice(i.shift().value.length)}f=V.needsContext.test(a)?0:i.length;while(f--){if(j=i[f],d.relative[k=j.type])break;if((l=d.find[k])&&(e=l(j.matches[0].replace(_,aa),$.test(i[0].type)&&qa(b.parentNode)||b))){if(i.splice(f,1),a=e.length&&sa(i),!a)return G.apply(c,e),c;break}}}return(m||h(a,n))(e,b,!p,c,!b||$.test(a)&&qa(b.parentNode)||b),c},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext,B=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,C=/^.[^:#\[\.,]*$/;function D(a,b,c){return r.isFunction(b)?r.grep(a,function(a,d){return!!b.call(a,d,a)!==c}):b.nodeType?r.grep(a,function(a){return a===b!==c}):"string"!=typeof b?r.grep(a,function(a){return i.call(b,a)>-1!==c}):C.test(b)?r.filter(b,a,c):(b=r.filter(b,a),r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType}))}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(D(this,a||[],!1))},not:function(a){return this.pushStack(D(this,a||[],!0))},is:function(a){return!!D(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var E,F=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,G=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||E,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:F.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),B.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};G.prototype=r.fn,E=r(d);var H=/^(?:parents|prev(?:Until|All))/,I={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function J(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return J(a,"nextSibling")},prev:function(a){return J(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return a.contentDocument||r.merge([],a.childNodes)}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(I[a]||r.uniqueSort(e),H.test(a)&&e.reverse()),this.pushStack(e)}});var K=/[^\x20\t\r\n\f]+/g;function L(a){var b={};return r.each(a.match(K)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?L(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function M(a){return a}function N(a){throw a}function O(a,b,c){var d;try{a&&r.isFunction(d=a.promise)?d.call(a).done(b).fail(c):a&&r.isFunction(d=a.then)?d.call(a,b,c):b.call(void 0,a)}catch(a){c.call(void 0,a)}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b=f&&(d!==N&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:M,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:M)),c[2][3].add(g(0,a,r.isFunction(d)?d:N))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(O(a,g.done(h(c)).resolve,g.reject),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)O(e[c],h(c),g.reject);return g.promise()}});var P=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&P.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var Q=r.Deferred();r.fn.ready=function(a){return Q.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,holdReady:function(a){a?r.readyWait++:r.ready(!0)},ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||Q.resolveWith(d,[r]))}}),r.ready.then=Q.then;function R(){d.removeEventListener("DOMContentLoaded",R), +a.removeEventListener("load",R),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",R),a.addEventListener("load",R));var S=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)S(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h1,null,!0)},removeData:function(a){return this.each(function(){W.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=V.get(a,b),c&&(!d||r.isArray(c)?d=V.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return V.get(a,c)||V.access(a,c,{empty:r.Callbacks("once memory").add(function(){V.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length\x20\t\r\n\f]+)/i,ka=/^$|\/(?:java|ecma)script/i,la={option:[1,""],thead:[1,"","
      "],col:[2,"","
      "],tr:[2,"","
      "],td:[3,"","
      "],_default:[0,"",""]};la.optgroup=la.option,la.tbody=la.tfoot=la.colgroup=la.caption=la.thead,la.th=la.td;function ma(a,b){var c;return c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[],void 0===b||b&&r.nodeName(a,b)?r.merge([a],c):c}function na(a,b){for(var c=0,d=a.length;c-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=ma(l.appendChild(f),"script"),j&&na(g),c){k=0;while(f=g[k++])ka.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var qa=d.documentElement,ra=/^key/,sa=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ta=/^([^.]*)(?:\.(.+)|)/;function ua(){return!0}function va(){return!1}function wa(){try{return d.activeElement}catch(a){}}function xa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)xa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=va;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(qa,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(K)||[""],j=b.length;while(j--)h=ta.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.hasData(a)&&V.get(a);if(q&&(i=q.events)){b=(b||"").match(K)||[""],j=b.length;while(j--)if(h=ta.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&V.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(V.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c=1))for(;j!==this;j=j.parentNode||this)if(1===j.nodeType&&("click"!==a.type||j.disabled!==!0)){for(f=[],g={},c=0;c-1:r.find(e,this,null,[j]).length),g[e]&&f.push(d);f.length&&h.push({elem:j,handlers:f})}return j=this,i\x20\t\r\n\f]*)[^>]*)\/>/gi,za=/\s*$/g;function Da(a,b){return r.nodeName(a,"table")&&r.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a:a}function Ea(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function Fa(a){var b=Ba.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ga(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(V.hasData(a)&&(f=V.access(a),g=V.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;c1&&"string"==typeof q&&!o.checkClone&&Aa.test(q))return a.each(function(e){var f=a.eq(e);s&&(b[0]=q.call(this,e,f.html())),Ia(f,b,c,d)});if(m&&(e=pa(b,a[0].ownerDocument,!1,a,d),f=e.firstChild,1===e.childNodes.length&&(e=f),f||d)){for(h=r.map(ma(e,"script"),Ea),i=h.length;l")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=r.contains(a.ownerDocument,a);if(!(o.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||r.isXMLDoc(a)))for(g=ma(h),f=ma(a),d=0,e=f.length;d0&&na(g,!i&&ma(a,"script")),h},cleanData:function(a){for(var b,c,d,e=r.event.special,f=0;void 0!==(c=a[f]);f++)if(T(c)){if(b=c[V.expando]){if(b.events)for(d in b.events)e[d]?r.event.remove(c,d):r.removeEvent(c,d,b.handle);c[V.expando]=void 0}c[W.expando]&&(c[W.expando]=void 0)}}}),r.fn.extend({detach:function(a){return Ja(this,a,!0)},remove:function(a){return Ja(this,a)},text:function(a){return S(this,function(a){return void 0===a?r.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return Ia(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Da(this,a);b.appendChild(a)}})},prepend:function(){return Ia(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Da(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ia(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ia(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(r.cleanData(ma(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return r.clone(this,a,b)})},html:function(a){return S(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!za.test(a)&&!la[(ja.exec(a)||["",""])[1].toLowerCase()]){a=r.htmlPrefilter(a);try{for(;c1)}});function Ya(a,b,c,d,e){return new Ya.prototype.init(a,b,c,d,e)}r.Tween=Ya,Ya.prototype={constructor:Ya,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||r.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(r.cssNumber[c]?"":"px")},cur:function(){var a=Ya.propHooks[this.prop];return a&&a.get?a.get(this):Ya.propHooks._default.get(this)},run:function(a){var b,c=Ya.propHooks[this.prop];return this.options.duration?this.pos=b=r.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Ya.propHooks._default.set(this),this}},Ya.prototype.init.prototype=Ya.prototype,Ya.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=r.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){r.fx.step[a.prop]?r.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[r.cssProps[a.prop]]&&!r.cssHooks[a.prop]?a.elem[a.prop]=a.now:r.style(a.elem,a.prop,a.now+a.unit)}}},Ya.propHooks.scrollTop=Ya.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},r.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},r.fx=Ya.prototype.init,r.fx.step={};var Za,$a,_a=/^(?:toggle|show|hide)$/,ab=/queueHooks$/;function bb(){$a&&(a.requestAnimationFrame(bb),r.fx.tick())}function cb(){return a.setTimeout(function(){Za=void 0}),Za=r.now()}function db(a,b){var c,d=0,e={height:a};for(b=b?1:0;d<4;d+=2-b)c=ba[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function eb(a,b,c){for(var d,e=(hb.tweeners[b]||[]).concat(hb.tweeners["*"]),f=0,g=e.length;f1)},removeAttr:function(a){return this.each(function(){r.removeAttr(this,a)})}}),r.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?r.prop(a,b,c):(1===f&&r.isXMLDoc(a)||(e=r.attrHooks[b.toLowerCase()]||(r.expr.match.bool.test(b)?ib:void 0)), +void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=r.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio"===b&&r.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d=0,e=b&&b.match(K);if(e&&1===a.nodeType)while(c=e[d++])a.removeAttribute(c)}}),ib={set:function(a,b,c){return b===!1?r.removeAttr(a,c):a.setAttribute(c,c),c}},r.each(r.expr.match.bool.source.match(/\w+/g),function(a,b){var c=jb[b]||r.find.attr;jb[b]=function(a,b,d){var e,f,g=b.toLowerCase();return d||(f=jb[g],jb[g]=e,e=null!=c(a,b,d)?g:null,jb[g]=f),e}});var kb=/^(?:input|select|textarea|button)$/i,lb=/^(?:a|area)$/i;r.fn.extend({prop:function(a,b){return S(this,r.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[r.propFix[a]||a]})}}),r.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&r.isXMLDoc(a)||(b=r.propFix[b]||b,e=r.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=r.find.attr(a,"tabindex");return b?parseInt(b,10):kb.test(a.nodeName)||lb.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),o.optSelected||(r.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),r.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){r.propFix[this.toLowerCase()]=this});function mb(a){var b=a.match(K)||[];return b.join(" ")}function nb(a){return a.getAttribute&&a.getAttribute("class")||""}r.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).addClass(a.call(this,b,nb(this)))});if("string"==typeof a&&a){b=a.match(K)||[];while(c=this[i++])if(e=nb(c),d=1===c.nodeType&&" "+mb(e)+" "){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=mb(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).removeClass(a.call(this,b,nb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(K)||[];while(c=this[i++])if(e=nb(c),d=1===c.nodeType&&" "+mb(e)+" "){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=mb(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):r.isFunction(a)?this.each(function(c){r(this).toggleClass(a.call(this,c,nb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=r(this),f=a.match(K)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=nb(this),b&&V.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":V.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+mb(nb(c))+" ").indexOf(b)>-1)return!0;return!1}});var ob=/\r/g;r.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=r.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,r(this).val()):a,null==e?e="":"number"==typeof e?e+="":r.isArray(e)&&(e=r.map(e,function(a){return null==a?"":a+""})),b=r.valHooks[this.type]||r.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=r.valHooks[e.type]||r.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(ob,""):null==c?"":c)}}}),r.extend({valHooks:{option:{get:function(a){var b=r.find.attr(a,"value");return null!=b?b:mb(r.text(a))}},select:{get:function(a){var b,c,d,e=a.options,f=a.selectedIndex,g="select-one"===a.type,h=g?null:[],i=g?f+1:e.length;for(d=f<0?i:g?f:0;d-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),r.each(["radio","checkbox"],function(){r.valHooks[this]={set:function(a,b){if(r.isArray(b))return a.checked=r.inArray(r(a).val(),b)>-1}},o.checkOn||(r.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var pb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!pb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:r.makeArray(c,[b]),n=r.event.special[p]||{},f||!n.trigger||n.trigger.apply(e,c)!==!1)){if(!f&&!n.noBubble&&!r.isWindow(e)){for(j=n.delegateType||p,pb.test(j+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),i=h;i===(e.ownerDocument||d)&&o.push(i.defaultView||i.parentWindow||a)}g=0;while((h=o[g++])&&!b.isPropagationStopped())b.type=g>1?j:n.bindType||p,m=(V.get(h,"events")||{})[b.type]&&V.get(h,"handle"),m&&m.apply(h,c),m=k&&h[k],m&&m.apply&&T(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=p,f||b.isDefaultPrevented()||n._default&&n._default.apply(o.pop(),c)!==!1||!T(e)||k&&r.isFunction(e[p])&&!r.isWindow(e)&&(i=e[k],i&&(e[k]=null),r.event.triggered=p,e[p](),r.event.triggered=void 0,i&&(e[k]=i)),b.result}},simulate:function(a,b,c){var d=r.extend(new r.Event,c,{type:a,isSimulated:!0});r.event.trigger(d,null,b)}}),r.fn.extend({trigger:function(a,b){return this.each(function(){r.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];if(c)return r.event.trigger(a,b,c,!0)}}),r.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){r.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),r.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),o.focusin="onfocusin"in a,o.focusin||r.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){r.event.simulate(b,a.target,r.event.fix(a))};r.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=V.access(d,b);e||d.addEventListener(a,c,!0),V.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=V.access(d,b)-1;e?V.access(d,b,e):(d.removeEventListener(a,c,!0),V.remove(d,b))}}});var qb=a.location,rb=r.now(),sb=/\?/;r.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||r.error("Invalid XML: "+b),c};var tb=/\[\]$/,ub=/\r?\n/g,vb=/^(?:submit|button|image|reset|file)$/i,wb=/^(?:input|select|textarea|keygen)/i;function xb(a,b,c,d){var e;if(r.isArray(b))r.each(b,function(b,e){c||tb.test(a)?d(a,e):xb(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==r.type(b))d(a,b);else for(e in b)xb(a+"["+e+"]",b[e],c,d)}r.param=function(a,b){var c,d=[],e=function(a,b){var c=r.isFunction(b)?b():b;d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(null==c?"":c)};if(r.isArray(a)||a.jquery&&!r.isPlainObject(a))r.each(a,function(){e(this.name,this.value)});else for(c in a)xb(c,a[c],b,e);return d.join("&")},r.fn.extend({serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=r.prop(this,"elements");return a?r.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!r(this).is(":disabled")&&wb.test(this.nodeName)&&!vb.test(a)&&(this.checked||!ia.test(a))}).map(function(a,b){var c=r(this).val();return null==c?null:r.isArray(c)?r.map(c,function(a){return{name:b.name,value:a.replace(ub,"\r\n")}}):{name:b.name,value:c.replace(ub,"\r\n")}}).get()}});var yb=/%20/g,zb=/#.*$/,Ab=/([?&])_=[^&]*/,Bb=/^(.*?):[ \t]*([^\r\n]*)$/gm,Cb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Db=/^(?:GET|HEAD)$/,Eb=/^\/\//,Fb={},Gb={},Hb="*/".concat("*"),Ib=d.createElement("a");Ib.href=qb.href;function Jb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(K)||[];if(r.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Kb(a,b,c,d){var e={},f=a===Gb;function g(h){var i;return e[h]=!0,r.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Lb(a,b){var c,d,e=r.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&r.extend(!0,a,d),a}function Mb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Nb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:qb.href,type:"GET",isLocal:Cb.test(qb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Hb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Lb(Lb(a,r.ajaxSettings),b):Lb(r.ajaxSettings,a)},ajaxPrefilter:Jb(Fb),ajaxTransport:Jb(Gb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m,n,o=r.ajaxSetup({},c),p=o.context||o,q=o.context&&(p.nodeType||p.jquery)?r(p):r.event,s=r.Deferred(),t=r.Callbacks("once memory"),u=o.statusCode||{},v={},w={},x="canceled",y={readyState:0,getResponseHeader:function(a){var b;if(k){if(!h){h={};while(b=Bb.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return k?g:null},setRequestHeader:function(a,b){return null==k&&(a=w[a.toLowerCase()]=w[a.toLowerCase()]||a,v[a]=b),this},overrideMimeType:function(a){return null==k&&(o.mimeType=a),this},statusCode:function(a){var b;if(a)if(k)y.always(a[y.status]);else for(b in a)u[b]=[u[b],a[b]];return this},abort:function(a){var b=a||x;return e&&e.abort(b),A(0,b),this}};if(s.promise(y),o.url=((b||o.url||qb.href)+"").replace(Eb,qb.protocol+"//"),o.type=c.method||c.type||o.method||o.type,o.dataTypes=(o.dataType||"*").toLowerCase().match(K)||[""],null==o.crossDomain){j=d.createElement("a");try{j.href=o.url,j.href=j.href,o.crossDomain=Ib.protocol+"//"+Ib.host!=j.protocol+"//"+j.host}catch(z){o.crossDomain=!0}}if(o.data&&o.processData&&"string"!=typeof o.data&&(o.data=r.param(o.data,o.traditional)),Kb(Fb,o,c,y),k)return y;l=r.event&&o.global,l&&0===r.active++&&r.event.trigger("ajaxStart"),o.type=o.type.toUpperCase(),o.hasContent=!Db.test(o.type),f=o.url.replace(zb,""),o.hasContent?o.data&&o.processData&&0===(o.contentType||"").indexOf("application/x-www-form-urlencoded")&&(o.data=o.data.replace(yb,"+")):(n=o.url.slice(f.length),o.data&&(f+=(sb.test(f)?"&":"?")+o.data,delete o.data),o.cache===!1&&(f=f.replace(Ab,"$1"),n=(sb.test(f)?"&":"?")+"_="+rb++ +n),o.url=f+n),o.ifModified&&(r.lastModified[f]&&y.setRequestHeader("If-Modified-Since",r.lastModified[f]),r.etag[f]&&y.setRequestHeader("If-None-Match",r.etag[f])),(o.data&&o.hasContent&&o.contentType!==!1||c.contentType)&&y.setRequestHeader("Content-Type",o.contentType),y.setRequestHeader("Accept",o.dataTypes[0]&&o.accepts[o.dataTypes[0]]?o.accepts[o.dataTypes[0]]+("*"!==o.dataTypes[0]?", "+Hb+"; q=0.01":""):o.accepts["*"]);for(m in o.headers)y.setRequestHeader(m,o.headers[m]);if(o.beforeSend&&(o.beforeSend.call(p,y,o)===!1||k))return y.abort();if(x="abort",t.add(o.complete),y.done(o.success),y.fail(o.error),e=Kb(Gb,o,c,y)){if(y.readyState=1,l&&q.trigger("ajaxSend",[y,o]),k)return y;o.async&&o.timeout>0&&(i=a.setTimeout(function(){y.abort("timeout")},o.timeout));try{k=!1,e.send(v,A)}catch(z){if(k)throw z;A(-1,z)}}else A(-1,"No Transport");function A(b,c,d,h){var j,m,n,v,w,x=c;k||(k=!0,i&&a.clearTimeout(i),e=void 0,g=h||"",y.readyState=b>0?4:0,j=b>=200&&b<300||304===b,d&&(v=Mb(o,y,d)),v=Nb(o,v,y,j),j?(o.ifModified&&(w=y.getResponseHeader("Last-Modified"),w&&(r.lastModified[f]=w),w=y.getResponseHeader("etag"),w&&(r.etag[f]=w)),204===b||"HEAD"===o.type?x="nocontent":304===b?x="notmodified":(x=v.state,m=v.data,n=v.error,j=!n)):(n=x,!b&&x||(x="error",b<0&&(b=0))),y.status=b,y.statusText=(c||x)+"",j?s.resolveWith(p,[m,x,y]):s.rejectWith(p,[y,x,n]),y.statusCode(u),u=void 0,l&&q.trigger(j?"ajaxSuccess":"ajaxError",[y,o,j?m:n]),t.fireWith(p,[y,x]),l&&(q.trigger("ajaxComplete",[y,o]),--r.active||r.event.trigger("ajaxStop")))}return y},getJSON:function(a,b,c){return r.get(a,b,c,"json")},getScript:function(a,b){return r.get(a,void 0,b,"script")}}),r.each(["get","post"],function(a,b){r[b]=function(a,c,d,e){return r.isFunction(c)&&(e=e||d,d=c,c=void 0),r.ajax(r.extend({url:a,type:b,dataType:e,data:c,success:d},r.isPlainObject(a)&&a))}}),r._evalUrl=function(a){return r.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},r.fn.extend({wrapAll:function(a){var b;return this[0]&&(r.isFunction(a)&&(a=a.call(this[0])),b=r(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(a){return r.isFunction(a)?this.each(function(b){r(this).wrapInner(a.call(this,b))}):this.each(function(){var b=r(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=r.isFunction(a);return this.each(function(c){r(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(a){return this.parent(a).not("body").each(function(){r(this).replaceWith(this.childNodes)}),this}}),r.expr.pseudos.hidden=function(a){return!r.expr.pseudos.visible(a)},r.expr.pseudos.visible=function(a){return!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length)},r.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Ob={0:200,1223:204},Pb=r.ajaxSettings.xhr();o.cors=!!Pb&&"withCredentials"in Pb,o.ajax=Pb=!!Pb,r.ajaxTransport(function(b){var c,d;if(o.cors||Pb&&!b.crossDomain)return{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Ob[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}}),r.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return r.globalEval(a),a}}}),r.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),r.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=r(" + + + + 0) { ?> + +
      + + + + + + + + + + UPDATE_RATES_MINUTES) + { + $from = GetCurrencyCode($row['from_currency']); + $to = GetCurrencyCode($row['to_currency']); + + exchagerix_update_rate($from, $to, $row['fee'], $row['exdirection_id']); + + $old_rate = $row['exchange_rate']; + $exchange_rate = GetDirectionRate($row['exdirection_id']); + + $updated = 1; + } + + ?> + + " style="background: $exchange_rate) echo "#e3edd7"; ?>; cursor: pointer; height: 50px" data-href="exchange.php?currency_send=¤cy_receive="> + + + + + + + + + + +
      +
      + + + + + + + + + + +
      No exchange rates at this time.
      + + + \ No newline at end of file diff --git a/signup.php b/signup.php new file mode 100644 index 0000000..bb7434e --- /dev/null +++ b/signup.php @@ -0,0 +1,311 @@ + 20 || (strlen($pwd2) > 20)) + { + $errs[] = CBE1_SIGNUP_ERR7; + } + elseif (stristr($pwd, ' ')) + { + $errs[] = CBE1_SIGNUP_ERR8; + } + } + + if (SIGNUP_CAPTCHA == 1) + { + if (!$captcha) + { + $errs[] = CBE1_SIGNUP_ERR2; + } + else + { + if (empty($_SESSION['captcha']) || strcasecmp($_SESSION['captcha'], $captcha) != 0) + { + $errs[] = CBE1_SIGNUP_ERR3; + } + } + } + + if (!(isset($tos) && $tos == 1)) + { + $errs[] = CBE1_SIGNUP_ERR9; + } + + if (count($errs) == 0) + { + $query = "SELECT username FROM exchangerix_users WHERE username='$email' OR email='$email' LIMIT 1"; + $result = smart_mysql_query($query); + + if (mysqli_num_rows($result) != 0) + { + header ("Location: signup.php?msg=exists"); + exit(); + } + + // check referral + if ($ref_id > 0) + { + $check_referral_query = "SELECT email FROM exchangerix_users WHERE user_id='$ref_id' LIMIT 1"; + $check_referral_result = smart_mysql_query($check_referral_query); + + if (mysqli_num_rows($check_referral_result) != 0) + $ref_id = $ref_id; + else + $ref_id = 0; + } + + $unsubscribe_key = GenerateKey($username); + + if (ACCOUNT_ACTIVATION == 1) + { + $activation_key = GenerateKey($username); + $insert_query = "INSERT INTO exchangerix_users SET username='$username', password='".PasswordEncryption($pwd)."', email='$email', fname='$fname', lname='$lname', country='$country', phone='$phone', reg_source='$reg_source', ref_id='$ref_id', newsletter='$newsletter', ip='$ip', status='inactive', activation_key='$activation_key', unsubscribe_key='$unsubscribe_key', created=NOW()"; + } + else + { + $insert_query = "INSERT INTO exchangerix_users SET username='$username', password='".PasswordEncryption($pwd)."', email='$email', fname='$fname', lname='$lname', country='$country', phone='$phone', reg_source='$reg_source', ref_id='$ref_id', newsletter='$newsletter', ip='$ip', status='active', activation_key='', unsubscribe_key='$unsubscribe_key', last_login=NOW(), login_count='1', last_ip='$ip', created=NOW()"; + } + + smart_mysql_query($insert_query); + $new_user_id = mysqli_insert_id($conn); + + if (ACCOUNT_ACTIVATION == 1) + { + //////////////////////////////// Send Message ////////////////////////////// + $etemplate = GetEmailTemplate('activate'); + $esubject = $etemplate['email_subject']; + $emessage = $etemplate['email_message']; + + $activate_link = SITE_URL."activate.php?key=".$activation_key; + + $emessage = str_replace("{first_name}", $fname, $emessage); + $emessage = str_replace("{username}", $email, $emessage); + $emessage = str_replace("{password}", $pwd, $emessage); + $emessage = str_replace("{activate_link}", $activate_link, $emessage); + $to_email = $fname.' '.$lname.' <'.$email.'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1); + //////////////////////////////////////////////////////////////////////////////// + + // show activation message + header("Location: activate.php?msg=1"); + exit(); + } + else + { + //////////////////////////////// Send welcome message //////////////// + $etemplate = GetEmailTemplate('signup'); + $esubject = $etemplate['email_subject']; + $emessage = $etemplate['email_message']; + + $emessage = str_replace("{first_name}", $fname, $emessage); + $emessage = str_replace("{username}", $email, $emessage); + $emessage = str_replace("{password}", $pwd, $emessage); + $emessage = str_replace("{login_url}", SITE_URL."login.php", $emessage); + $to_email = $fname.' '.$lname.' <'.$email.'>'; + + SendEmail($to_email, $esubject, $emessage, $noreply_mail = 1); + ///////////////////////////////////////////////////////////////////////// + + if (!session_id()) session_start(); + $_SESSION['userid'] = $new_user_id; + $_SESSION['FirstName'] = $fname; + + if ($_SESSION['goto']) + { + $redirect_url = $_SESSION['goto']; + unset($_SESSION['goto'], $_SESSION['goto_created']); + } + else + { + // forward new user to account dashboard + $redirect_url = "myaccount.php?msg=welcome"; + } + + header("Location: ".$redirect_url); + exit(); + } + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
      "; + } + } + + /////////////// Page config /////////////// + $PAGE_TITLE = CBE1_SIGNUP_TITLE; + + require_once ("inc/header.inc.php"); + +?> + +
      +
      + +
      + +

      + +

      + + +
      + +
      + + + +
      + + +
      + +
      + + +
      +
      + + +
      +
      + + +
      +
      + + +
      +
      + + +
      + +
      + + +
      + +
      + +
      +
      + +
      +
      + <?php echo CBE1_SIGNUP_RIMG; ?> +
      +
      + + + 0) { ?> +
      + + +
      + +
      + +
      +
      + +
      + + + + + + + +
      + +
      +
      + + \ No newline at end of file diff --git a/terms.php b/terms.php new file mode 100644 index 0000000..2572ab1 --- /dev/null +++ b/terms.php @@ -0,0 +1,27 @@ + + +

      +

      + + \ No newline at end of file diff --git a/testimonials.php b/testimonials.php new file mode 100644 index 0000000..9799774 --- /dev/null +++ b/testimonials.php @@ -0,0 +1,63 @@ + 0) { $page = (int)$_GET['page']; } else { $page = 1; } + $from = ($page-1)*$results_per_page; + + $result = smart_mysql_query("SELECT *, DATE_FORMAT(added, '".DATE_FORMAT."') AS review_date FROM exchangerix_reviews r LEFT JOIN exchangerix_exchanges t ON r.exchange_id=t.exchange_id WHERE r.status='active' ORDER BY r.added DESC LIMIT $from, $results_per_page"); + + $total_result = smart_mysql_query("SELECT * FROM exchangerix_reviews r LEFT JOIN exchangerix_exchanges t ON r.exchange_id=t.exchange_id WHERE r.status='active' ORDER BY r.added DESC"); + $total = mysqli_num_rows($total_result); + $total_on_page = mysqli_num_rows($result); + + + /////////////// Page config /////////////// + $PAGE_TITLE = "Testimonials"; //CBE1_TESTIMONIALS_TITLE + + require_once ("inc/header.inc.php"); + +?> + +

      Testimonials 0) { ?>

      + + 0) { ?> + +

      Here's what some of our clients think about us.

      +
      + +
      + +
      + +

      by

      + + ">

      +

      +

      +

      +
      + +
      + + + + +
      No testimonials at this time.
      + + + \ No newline at end of file diff --git a/track_order.php b/track_order.php new file mode 100644 index 0000000..9114fe6 --- /dev/null +++ b/track_order.php @@ -0,0 +1,570 @@ +------------------------------------"; + if ($exid != "") $umessage .= "
      Exchange ID: ".$exid; + if (isLoggedIn()) $umessage .= "
      User ID: ".(int)$_SESSION['userid']; + if ($phone != "") $umessage .= "
      Phone: ".$phone; + + $from = 'From: '.$fname.' <'.$email.'>'; + SendEmail(SITE_MAIL, $subject, $umessage, $noreply_mail = 1, $from); + + header("Location: track_order.php?id=".$reference_id."&msg=1"); + exit(); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
      \n"; + } + } + + + + if (RESERVE_MINUTES > 0) $a_sql = " DATE_ADD(created, INTERVAL ".(int)RESERVE_MINUTES." MINUTE) AS countdate, "; else $a_sql = ""; + + $query = "SELECT *, TIMESTAMPDIFF(MINUTE, created, now()) as time_ago, $a_sql DATE_FORMAT(created, '".DATE_FORMAT." %h:%i %p') AS payment_date FROM exchangerix_exchanges WHERE reference_id='$reference_id' LIMIT 1"; + $result = smart_mysql_query($query); + $total = mysqli_num_rows($result); + + // if created more than 7 days // hide other data + + + if ($total > 0) + { + $row = mysqli_fetch_array($result); + + if (RESERVE_MINUTES > 0 && $row['time_ago'] >= RESERVE_MINUTES) + { + smart_mysql_query("UPDATE exchangerix_exchanges SET status='timeout' WHERE exchange_id='$exchange_id' LIMIT 1"); + //header("Location: payment_declined.php?reason=timeout"); + //exit(); + } + + $send_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='".(int)$row['from_currency_id']."' LIMIT 1")); + $receive_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='".(int)$row['to_currency_id']."' LIMIT 1")); + $direction_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_exdirections WHERE from_currency='".(int)$row['from_currency_id']."' AND to_currency='".(int)$row['to_currency_id']."' AND from_currency IN (SELECT currency_id FROM exchangerix_currencies WHERE allow_send='1' AND (reserve>0 || reserve='') AND status='active') AND to_currency IN (SELECT currency_id FROM exchangerix_currencies WHERE allow_receive='1' AND (reserve>0 || reserve='') AND status='active') AND status='active' LIMIT 1")); + + $ptitle = "Exchange ".$send_row['currency_name']." ".$send_row['currency_code']." to ".$receive_row['currency_name']." ".$receive_row['currency_code']; + + + // cancel exchange + if (isset($_GET['action']) && $_GET['action'] == "cancel" && isLoggedIn() && $row['user_id'] == (int)$_SESSION['userid']) + { + if ($row['proof'] != "") { if (file_exists(PUBLIC_HTML_PATH."/uploads/".$row['proof'])) @unlink(PUBLIC_HTML_PATH."/uploads/".$row['proof']); } + + smart_mysql_query("UPDATE exchangerix_exchanges SET status='cancelled', updated=NOW() WHERE exchange_id='$exchange_id' LIMIT 1"); + unset($_SESSION['transaction_id']); + + header ("Location: index.php"); + exit(); + } + + //// ADD TESTIMONIAL ////////////////////////////////////////////// + if (isset($_POST['action']) && $_POST['action'] == "addreview") + { + $userid = (int)$_SESSION['userid']; + + $client = ucwords(strtolower($row['client_details'])); + $client_arr = explode(' ',trim($client)); + $author = mysqli_real_escape_string($conn, $client_arr[0]); + + $rating = (int)getPostParameter('rating'); + $review_title = mysqli_real_escape_string($conn, getPostParameter('review_title')); + $review = mysqli_real_escape_string($conn, nl2br(trim(getPostParameter('review')))); + $review = ucfirst(strtolower($review)); + + unset($errs); + $errs = array(); + + if (!($rating && $review_title && $review)) + { + $errs[] = CBE1_REVIEW_ERR; + } + else + { + $number_lines = count(explode("
      ", $review)); + + if (strlen($review) > MAX_REVIEW_LENGTH) + $errs[] = str_replace("%length%",MAX_REVIEW_LENGTH,CBE1_REVIEW_ERR2); + else if ($number_lines > 5) + $errs[] = CBE1_REVIEW_ERR3; + } + + if (count($errs) == 0) + { + $review = substr($review, 0, MAX_REVIEW_LENGTH); + $check_review = mysqli_num_rows(smart_mysql_query("SELECT * FROM exchangerix_reviews WHERE exchange_id='".(int)$row['exchange_id']."'")); + + if ($check_review == 0) + { + (REVIEWS_APPROVE == 1) ? $status = "pending" : $status = "active"; + $review_query = "INSERT INTO exchangerix_reviews SET exchange_id='".(int)$row['exchange_id']."', rating='$rating', user_id='".(int)$row['user_id']."', author='$author', review_title='$review_title', review='$review', status='$status', added=NOW()"; + $review_result = smart_mysql_query($review_query); + $review_added = 1; + } + else + { + $errormsg = CBE1_REVIEW_ERR5; + } + } + else + { + $errormsg = ""; + foreach ($errs as $errorname) + $errormsg .= $errorname."
      "; + } + } + ////////////////////////////////////////////////////////////////////////////////////////// + + + // confirm exchange + /*if (isset($_POST['action']) && $_POST['action'] == "confirm" && isLoggedIn() && $row['user_id'] == (int)$_SESSION['userid']) + { + unset($errs); + $errs = array(); + + $payment_details = mysqli_real_escape_string($conn, nl2br(getPostParameter('payment_details'))); + + if (!($payment_details)) + $errs[] = CBE1_SIGNUP_ERR; + + if (count($errs) == 0) + { + if (NEW_EXCHANGE_ALERT == 1) + { + SendEmail(SITE_ALERTS_MAIL, "New Exchange Completed - ".SITE_TITLE, "Hi,
      New currency exchange completed."); + } + + //update reserve + smart_mysql_query("UPDATE exchangerix_currencies SET reserve=reserve-'".floatval($row['receive_amount'])."' WHERE currency_id='".(int)$row['to_currency_id']."' LIMIT 1"); + //smart_mysql_query("UPDATE exchangerix_currencies SET reserve=reserve+'".floatval($row['exchange_amount'])."' WHERE currency_id='".(int)$row['from_currency_id']."' LIMIT 1"); + + header ("Location: payment_success.php?manual=1"); + exit(); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= $errorname."
      "; + } + }*/ + + } + else + { + $ptitle = "Track Exchange"; + } + + + /////////////// Page config /////////////// + $PAGE_TITLE = $ptitle; + + $bg_dark = 1; + require_once ("inc/header.inc.php"); + +?> + + 0) { + + ?> + + +
      + + + + +
      +
      + +
      + +

      + + + + + + + + + + +

      + +

      Exchange #

      + +
      +
      + + +
      +

      Manual Exchange

      + This is manual exchange. Operator will need some time to review your payment. +
      Working hours: +
      + + + +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hidden + + + 0) { ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 && $row['ref_id'] == (int)$_SESSION['userid'] && $row['status'] != "cancelled" && $row['status'] != "timeout" && $row['status'] != "declined") { ?> + + + + + + + + + + +
      From:
      To:
      Send:

      Receive:

      Exchange Rate: =
      Exchange Fee:
      To Account: + + wrong details? +
      +
      + + + hidden + +
      Payment Details: + +
      payment proof
      Discount: (%)
      Exchange Date:
      Processed On:
      Date Updated: waiting for confirmation
      Expired:
      Your Referral Earnings:$
      Status: + ".STATUS_CONFIRMED.""; break; + case "pending": echo " ".STATUS_PENDING.""; break; + case "waiting": echo "waiting"; break; + case "cancelled": echo " cancelled"; break; + case "timeout": echo " timeout"; break; + case "declined": echo "".STATUS_DECLINED.""; break; + case "failed": echo "".STATUS_FAILED.""; break; + case "paid": echo "".STATUS_PAID.""; break; + default: echo "".$row['status'].""; break; + } + + if ($row['status'] == "declined" && $row['reason'] != "") + { + echo " "; + } + ?> +
      +
      + + + +
      enctype="multipart/form-data"> + +
      + + +
      + + + + + +

      +   + +

      +
      + + + + +
      +
      + +

      Go Back

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

      Leave your feedback

      +

      Your feedback is greatly appreciated. Please let us know your opinion about our service.

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

      Go Back

      + + +

      Need help?

      + + +
      + + + +
      + + + +

      If you have any issues with your payment or exchange, please feel free to contact us.

      +

      Operator: online

      + +

      Our operators are online now, please use our contact details from the top of page.

      + +

      All our operators are currently offline

      + + +

      So if you have any problem or issues with your exchange please use form below to contact us.

      +
      +
      + + +
      + + +
      + + " required="required"> +
      +
      + + +
      +
      + + " required="required"> +
      + +
      + + +
      +
      + + +
      +
      + + +
      + + +
      + + +
      + + + +
      + + Please feel free to contact us and send message. We will reply to you shortly. + + + + + + + +
      + +
      +
      + + + +

      Exchange

      +
      Sorry, no transaction found.
      +

      + + + + + \ No newline at end of file diff --git a/unsubscribe.php b/unsubscribe.php new file mode 100644 index 0000000..b2d23f7 --- /dev/null +++ b/unsubscribe.php @@ -0,0 +1,61 @@ + 0) + { + $check_row = mysqli_fetch_array($check_result); + + if ($check_row['newsletter'] == "0") + { + header ("Location: unsubscribe.php?msg=1"); + exit(); + } + elseif ($check_row['newsletter'] == "1") + { + smart_mysql_query("UPDATE exchangerix_users SET newsletter='0' WHERE unsubscribe_key='$unsubscribe_key' LIMIT 1"); + header ("Location: unsubscribe.php?msg=1"); + exit(); + } + } + else + { + header ("Location: index.php"); + exit(); + } + } + + + /////////////// Page config /////////////// + $PAGE_TITLE = CBE1_UNSUBSCRIBE_TITLE; + + require_once ("inc/header.inc.php"); + +?> + +

      + + + + + + + + + \ No newline at end of file diff --git a/uploads/1604773550991871.jpg b/uploads/1604773550991871.jpg new file mode 100644 index 0000000..4af7ae8 Binary files /dev/null and b/uploads/1604773550991871.jpg differ diff --git a/uploads/1604840565849323.jpg b/uploads/1604840565849323.jpg new file mode 100644 index 0000000..faa476e Binary files /dev/null and b/uploads/1604840565849323.jpg differ diff --git a/uploads/1604840748364489.jpg b/uploads/1604840748364489.jpg new file mode 100644 index 0000000..f1f48d9 Binary files /dev/null and b/uploads/1604840748364489.jpg differ diff --git a/uploads/1604847909790514.jpg b/uploads/1604847909790514.jpg new file mode 100644 index 0000000..3b4a642 Binary files /dev/null and b/uploads/1604847909790514.jpg differ diff --git a/uploads/1604848018202939.jpg b/uploads/1604848018202939.jpg new file mode 100644 index 0000000..3b4a642 Binary files /dev/null and b/uploads/1604848018202939.jpg differ diff --git a/uploads/160542449158979.png b/uploads/160542449158979.png new file mode 100644 index 0000000..6a7deef Binary files /dev/null and b/uploads/160542449158979.png differ diff --git a/uploads/1605438263213784.png b/uploads/1605438263213784.png new file mode 100644 index 0000000..6a7deef Binary files /dev/null and b/uploads/1605438263213784.png differ diff --git a/uploads/1605701276207258.png b/uploads/1605701276207258.png new file mode 100644 index 0000000..53d4ecf Binary files /dev/null and b/uploads/1605701276207258.png differ diff --git a/uploads/1605791221458953.png b/uploads/1605791221458953.png new file mode 100644 index 0000000..d27f45e Binary files /dev/null and b/uploads/1605791221458953.png differ diff --git a/uploads/1605796300186642.png b/uploads/1605796300186642.png new file mode 100644 index 0000000..8f2b32a Binary files /dev/null and b/uploads/1605796300186642.png differ diff --git a/uploads/1606026796745573.png b/uploads/1606026796745573.png new file mode 100644 index 0000000..03f70ab Binary files /dev/null and b/uploads/1606026796745573.png differ diff --git a/uploads/1606752364545946.jpg b/uploads/1606752364545946.jpg new file mode 100644 index 0000000..f14685a Binary files /dev/null and b/uploads/1606752364545946.jpg differ diff --git a/uploads/1606834181310848.PNG b/uploads/1606834181310848.PNG new file mode 100644 index 0000000..4e45068 Binary files /dev/null and b/uploads/1606834181310848.PNG differ diff --git a/uploads/1606914183233407.jpg b/uploads/1606914183233407.jpg new file mode 100644 index 0000000..fb24c1c Binary files /dev/null and b/uploads/1606914183233407.jpg differ diff --git a/uploads/1606923978362780.jpg b/uploads/1606923978362780.jpg new file mode 100644 index 0000000..707013f Binary files /dev/null and b/uploads/1606923978362780.jpg differ diff --git a/uploads/1606933314852634.jpg b/uploads/1606933314852634.jpg new file mode 100644 index 0000000..831f3e6 Binary files /dev/null and b/uploads/1606933314852634.jpg differ diff --git a/uploads/1607162032376181.jpg b/uploads/1607162032376181.jpg new file mode 100644 index 0000000..ea20dea Binary files /dev/null and b/uploads/1607162032376181.jpg differ diff --git a/uploads/1607318664188609.png b/uploads/1607318664188609.png new file mode 100644 index 0000000..f592dc8 Binary files /dev/null and b/uploads/1607318664188609.png differ diff --git a/uploads/1607355731695986.PNG b/uploads/1607355731695986.PNG new file mode 100644 index 0000000..5b8df40 Binary files /dev/null and b/uploads/1607355731695986.PNG differ diff --git a/uploads/1607861647102280.PNG b/uploads/1607861647102280.PNG new file mode 100644 index 0000000..59e40fc Binary files /dev/null and b/uploads/1607861647102280.PNG differ diff --git a/uploads/1626686570438339.jpg b/uploads/1626686570438339.jpg new file mode 100644 index 0000000..35f6449 Binary files /dev/null and b/uploads/1626686570438339.jpg differ diff --git a/uploads/A1.gif b/uploads/A1.gif new file mode 100644 index 0000000..788b07d Binary files /dev/null and b/uploads/A1.gif differ diff --git a/uploads/dvx.png b/uploads/dvx.png new file mode 100644 index 0000000..aff77f9 Binary files /dev/null and b/uploads/dvx.png differ diff --git a/uploads/index.htm b/uploads/index.htm new file mode 100644 index 0000000..b88c776 --- /dev/null +++ b/uploads/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/uploads/sslbg.png b/uploads/sslbg.png new file mode 100644 index 0000000..7c64e12 Binary files /dev/null and b/uploads/sslbg.png differ diff --git a/withdraw.php b/withdraw.php new file mode 100644 index 0000000..8c0d7a0 --- /dev/null +++ b/withdraw.php @@ -0,0 +1,289 @@ + 0) + { + $row = mysqli_fetch_array($result); + } + else + { + header ("Location: logout.php"); + exit(); + } + + + $amount = DisplayMoney(MIN_PAYOUT_PER_TRANSACTION, $hide_currency = 1); + if (isset($_POST['amount']) && is_numeric($_POST['amount'])) + { + $amount = mysqli_real_escape_string($conn, getPostParameter('amount')); + } + + + // password verification + if (isset($_POST['action']) && $_POST['action'] == "check_password") + { + unset($_SESSION['password_verified']); + unset($errs); + $errs = array(); + + $pwd = mysqli_real_escape_string($conn, getPostParameter('password')); + + if (!($pwd)) + { + $errs[] = "Please enter password"; + } + else + { + if (PasswordEncryption($pwd) !== $row['password']) + { + $errs[] = "Wrong password"; + } + } + + if (count($errs) == 0) + { + // setup verification for one hour + $_SESSION['password_verified'] = time() + (1*1*60*60); + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= "› ".$errorname."
      \n"; + } + } + + + if (isset($_POST['withdraw']) && $_POST['withdraw'] != "") + { + unset($errs); + $errs = array(); + + $amount = mysqli_real_escape_string($conn, getPostParameter('amount')); + $payment_method = (int)getPostParameter('payment_method'); + $payment_details = mysqli_real_escape_string($conn, nl2br(getPostParameter('payment_details'))); + $current_balance = GetUserBalance($userid, 1); + + if (!(is_numeric($amount) && $amount > 0)) + { + $errs[] = CBE1_WITHDRAW_ERR; + $amount = ""; + } + elseif (!(isset($payment_method) && $payment_method != 0)) + { + $errs[] = CBE1_WITHDRAW_ERR2; + } + elseif (!(isset($payment_details) && $payment_details != "")) + { + $errs[] = CBE1_WITHDRAW_ERR3; + } + else + { + if ($amount < MIN_PAYOUT_PER_TRANSACTION) + { + $errs[] = CBE1_WITHDRAW_ERR4." ".DisplayMoney(MIN_PAYOUT_PER_TRANSACTION); + } + + if ($amount > $current_balance) + { + $errs[] = CBE1_WITHDRAW_ERR5; + } + + if ($current_balance < MIN_PAYOUT) + { + $errs[] = CBE1_WITHDRAW_ERR6." ".DisplayMoney(MIN_PAYOUT); + } + + $presult = smart_mysql_query("SELECT * FROM exchangerix_pmethods WHERE pmethod_id='$payment_method' AND status='active' LIMIT 1"); + if (mysqli_num_rows($presult) == 0) + { + $errs[] = CBE1_WITHDRAW_ERR7; + } + else + { + $prow = mysqli_fetch_array($presult); + $commission = $prow['commission']; + } + } + + if (count($errs) == 0) + { + if ($commission != "" && $commission != "0.00") + { + if (strstr($commission, '%')) + { + $commission_percent = str_replace('%','',$commission); + $transaction_commission = CalculatePercentage($amount, $commission_percent); + } + else + { + $transaction_commission = $commission; + } + } + + $reference_id = GenerateReferenceID(); + $rp_query = "INSERT INTO exchangerix_transactions SET reference_id='$reference_id', user_id='$userid', payment_type='Withdrawal', payment_method='$payment_method', payment_details='$payment_details', transaction_commision='$transaction_commission', amount='$amount', status='request', created=NOW()"; + + if (smart_mysql_query($rp_query)) + { + header("Location: withdraw.php?msg=sent"); + exit(); + } + } + else + { + $allerrors = ""; + foreach ($errs as $errorname) + $allerrors .= "› ".$errorname."
      \n"; + } + } + + + /////////////// Page config /////////////// + $PAGE_TITLE = CBE1_WITHDRAW_TITLE; + + require_once ("inc/header.inc.php"); + +?> + +
      + + +

      + + + +
      + +
      + + + + +
      + + + + = MIN_PAYOUT) { ?> + + time()) { ?> + + 0)) { ?> +

      +

      : . .

      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + +
      +
      : + +
      : + +
      :
      :



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

      + + +
      +
      + + + + + + +
      : + + +
      +
      +
      + + + + +
      + + + + + \ No newline at end of file diff --git a/xml_rates.php b/xml_rates.php new file mode 100644 index 0000000..40aa5fd --- /dev/null +++ b/xml_rates.php @@ -0,0 +1,70 @@ + 0) + { + echo ''; + echo ''; + + while ($row = mysqli_fetch_array($result)) + { + $from_id = $row['from_currency']; + $to_id = $row['to_currency']; + $send_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='$from_id' LIMIT 1")); + $receive_row = mysqli_fetch_array(smart_mysql_query("SELECT * FROM exchangerix_currencies WHERE currency_id='$to_id' LIMIT 1")); + + if ($send_row['xml_code'] != "") $send_code = $send_row['xml_code']; else $send_code = $send_row['currency_code']; + if ($send_row['xml_code'] != "") $receive_code = $receive_row['xml_code']; else $receive_code = $receive_row['currency_code']; + + $minamount = $row['min_amount']." ".$send_code; + $maxamount = $row['max_amount']." ".$send_code; + + if ($send_code != "" && $receive_code != "") + { + $ex_url = SITE_URL."exchange.php?currency_send=".$from_id."&currency_receive=".$to_id; + $year = substr($row['added'],0,4); + $month = substr($row['added'],5,2); + $day = substr($row['added'],8,2); + $i_date = ''.$year.'-'.$month.'-'.$day.''; + + echo + ' + + '.$send_code.' + '.$receive_code.' + '.floatval($row['from_rate']).' + '.floatval($row['to_rate']).' + '.GetCurrencyReserve($row['to_currency']).' + '; + + if ($row['min_amount'] != "") echo ''.$minamount.''; + if ($row['max_amount'] != "") echo ''.$maxamount.''; + + echo + ' + '.$ex_url.' + + '; + } + } + + echo + ''; + } + +?> \ No newline at end of file